1
mirror of https://git.videolan.org/git/ffmpeg.git synced 2024-09-29 16:23:10 +02:00

minrate=0 for SVCD & DVD, this matches mpeg2enc and the mpeg1/2 vissual standard

Originally committed as revision 2642 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
Michael Niedermayer 2004-01-01 15:05:19 +00:00
parent 0368c72d83
commit 55bbad6f14

View File

@ -2900,7 +2900,7 @@ static void opt_target(const char *arg)
video_bit_rate = 2040000;
video_rc_max_rate = 2516000;
video_rc_min_rate = 1145000;
video_rc_min_rate = 0; //1145000;
video_rc_buffer_size = 224*1024*8;
audio_bit_rate = 224000;
@ -2917,7 +2917,7 @@ static void opt_target(const char *arg)
video_bit_rate = 6000000;
video_rc_max_rate = 9000000;
video_rc_min_rate = 1500000;
video_rc_min_rate = 0; //1500000;
video_rc_buffer_size = 224*1024*8;
audio_bit_rate = 448000;