diff options
author | Panagiotis Issaris <takis.issaris@uhasselt.be> | 2006-09-15 11:15:55 +0000 |
---|---|---|
committer | Panagiotis Issaris <takis.issaris@uhasselt.be> | 2006-09-15 11:15:55 +0000 |
commit | 3c0ba8703cc8b3a6972aa2e6136e0ed391c4d194 (patch) | |
tree | 73f985f669b6020daae05f492880423441b0b541 /tests/regression.sh | |
parent | 7df00a4e0607f26612d12f3dfbca4089b785244f (diff) | |
download | ffmpeg-3c0ba8703cc8b3a6972aa2e6136e0ed391c4d194.tar.gz |
Remove the "b" OptionDef option from the ffmpeg.c file. From now on the unit of
-b of ffmpeg is bits/sec not kbits/sec, as already was the case for the
AVOption. "k" and "M" suffixes are available though.
Originally committed as revision 6258 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'tests/regression.sh')
-rwxr-xr-x | tests/regression.sh | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/regression.sh b/tests/regression.sh index 3f9f0bb112..9ded777423 100755 --- a/tests/regression.sh +++ b/tests/regression.sh @@ -320,7 +320,7 @@ fi if [ -n "$do_rc" ] ; then # mpeg4 rate control file=${outfile}mpeg4-rc.avi -do_ffmpeg $file -y -b 400 -bf 2 -f pgmyuv -i $raw_src -an -vcodec mpeg4 $file +do_ffmpeg $file -y -b 400k -bf 2 -f pgmyuv -i $raw_src -an -vcodec mpeg4 $file # mpeg4 rate control decoding do_ffmpeg $raw_dst -y -i $file -f rawvideo $raw_dst @@ -340,7 +340,7 @@ fi if [ -n "$do_mpeg4thread" ] ; then # mpeg4 file=${outfile}mpeg4-thread.avi -do_ffmpeg $file -y -b 500 -flags +mv4+part+aic+trell -mbd bits -ps 200 -bf 2 -f pgmyuv -i $raw_src -an -vcodec mpeg4 -threads 2 $file +do_ffmpeg $file -y -b 500k -flags +mv4+part+aic+trell -mbd bits -ps 200 -bf 2 -f pgmyuv -i $raw_src -an -vcodec mpeg4 -threads 2 $file # mpeg4 decoding do_ffmpeg $raw_dst -y -i $file -f rawvideo $raw_dst @@ -360,7 +360,7 @@ fi if [ -n "$do_mp4psp" ] ; then # mp4 PSP style file=${outfile}mpeg4-PSP.mp4 -do_ffmpeg $file -y -b 768 -s 320x240 -f psp -ar 24000 -ab 32 -i $raw_src $file +do_ffmpeg $file -y -b 768k -s 320x240 -f psp -ar 24000 -ab 32 -i $raw_src $file fi ################################### |