diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2010-06-06 00:05:12 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2010-06-06 00:05:12 +0000 |
commit | 59b847d3a9ba77df9806dcd0770232e4006537d1 (patch) | |
tree | 82856d8c03544a2ab7a6d366f160c588a4ba20b2 /tests/codec-regression.sh | |
parent | 7686ab07acd10595664cc90455c254efb9fb63b7 (diff) | |
download | ffmpeg-59b847d3a9ba77df9806dcd0770232e4006537d1.tar.gz |
Add simple rgb/yuv in avi regression test.
Originally committed as revision 23501 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'tests/codec-regression.sh')
-rwxr-xr-x | tests/codec-regression.sh | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/tests/codec-regression.sh b/tests/codec-regression.sh index ce958ce78e..faa066bffd 100755 --- a/tests/codec-regression.sh +++ b/tests/codec-regression.sh @@ -248,6 +248,16 @@ do_video_encoding roqav.roq "" "-vframes 5" do_video_decoding "" "-pix_fmt yuv420p" fi +if [ -n "$do_rgb" ] ; then +do_video_encoding rgb.avi "" "-an -vcodec rawvideo -pix_fmt bgr24" +do_video_decoding "" "-pix_fmt yuv420p" +fi + +if [ -n "$do_yuv" ] ; then +do_video_encoding yuv.avi "" "-an -vcodec rawvideo -pix_fmt yuv420p" +do_video_decoding "" "-pix_fmt yuv420p" +fi + if [ -n "$do_mp2" ] ; then do_audio_encoding mp2.mp2 "-ar 44100" do_audio_decoding |