From 1c7b19df7abe2106471d07bf6c2b041a076a4051 Mon Sep 17 00:00:00 2001
From: Andrew Randrianasulu <randrianasulu@gmail.com>
Date: Mon, 1 Jan 2024 21:20:39 +0300
Subject: [PATCH] Fix libvorbis option

---
 cinelerra-5.1/cinelerra/file.C | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/cinelerra-5.1/cinelerra/file.C b/cinelerra-5.1/cinelerra/file.C
index f0b39302..90ad489f 100644
--- a/cinelerra-5.1/cinelerra/file.C
+++ b/cinelerra-5.1/cinelerra/file.C
@@ -255,6 +255,10 @@ int File::get_options(FormatTools *format,
 		FileOGG::get_parameters(parent_window, asset, format_window,
 			audio_options, video_options, edl);
 		break;
+	case FILE_VORBIS:
+		FileVorbis::get_parameters(parent_window, asset, format_window,
+			audio_options, video_options, edl);
+		break;
 #endif
 	default:
 		break;
-- 
2.43.0

