summaryrefslogtreecommitdiff
path: root/ffmpeg.c
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2004-01-01 15:05:19 +0000
committerMichael Niedermayer <michaelni@gmx.at>2004-01-01 15:05:19 +0000
commit55bbad6f1456b781afe47c7db7bf885fed9afa32 (patch)
tree5108d5b8f3795646706fff309066c411984ef0fa /ffmpeg.c
parent0368c72d833f2a3040f052d76d383e2bfe4e637e (diff)
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
Diffstat (limited to 'ffmpeg.c')
-rw-r--r--ffmpeg.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/ffmpeg.c b/ffmpeg.c
index 8476a0b03d..a5b54cb978 100644
--- a/ffmpeg.c
+++ b/ffmpeg.c
@@ -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;