I've never submitted a patch before and I'm not sure if this is the right
spot. This patch removes the -hq setting from the default yuv4mpeg ffmpeg
settings in  cinelerra/fileyuv.C I don't think the -hq switch is supported
by current versions of ffmpeg, so I think it makes sesnse to remove the
setting.
--- fileyuv.C.original	2007-03-10 17:53:56.000000000 -0600
+++ fileyuv.C	2007-03-10 17:54:31.000000000 -0600
@@ -415,8 +415,8 @@ int YUVConfigVideo::create_objects()
 
 	x += 180;
 	add_subwindow(ffmpeg = new PipePreset(x, y, "ffmpeg", pipe_textbox, pipe_checkbox));
-	ffmpeg->add_item(new BC_MenuItem("(DVD) | ffmpeg -f yuv4mpegpipe -i - -y -target dvd -ilme -ildct -hq -f mpeg2video %"));
-	ffmpeg->add_item(new BC_MenuItem("(VCD) | ffmpeg -f yuv4mpegpipe -i - -y -target vcd -hq -f mpeg2video %"));
+	ffmpeg->add_item(new BC_MenuItem("(DVD) | ffmpeg -f yuv4mpegpipe -i - -y -target dvd -ilme -ildct -f mpeg2video %"));
+	ffmpeg->add_item(new BC_MenuItem("(VCD) | ffmpeg -f yuv4mpegpipe -i - -y -target vcd -f mpeg2video %"));
 
 	add_subwindow(new BC_OKButton(this));
 	add_subwindow(new BC_CancelButton(this));

Reply via email to