Commit ed335955 authored by michael's avatar michael

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


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@2642 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 0c8f67cb
......@@ -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;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment