diff options
author | Diego Biurrun <diego@biurrun.de> | 2018-08-14 11:07:10 +0200 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2019-02-16 18:15:38 +0100 |
commit | 896fe15dbb7b78de495c4a7dd75e7faec66778da (patch) | |
tree | 5c28dc3de13faeb034a503cb4bebf12824159ae4 /tests/lavf-regression.sh | |
parent | a957e9379d11f2982d615f92c30580a57ea8bb40 (diff) | |
download | ffmpeg-896fe15dbb7b78de495c4a7dd75e7faec66778da.tar.gz |
tests: Convert lavf pixfmt conversion tests to non-legacy test scripts
Also split monolithic lavf-pixfmt test into individual tests.
Diffstat (limited to 'tests/lavf-regression.sh')
-rwxr-xr-x | tests/lavf-regression.sh | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/tests/lavf-regression.sh b/tests/lavf-regression.sh index 493083bf63..47c158076b 100755 --- a/tests/lavf-regression.sh +++ b/tests/lavf-regression.sh @@ -95,19 +95,3 @@ file=${outfile}lavf.y4m do_avconv $file $DEC_OPTS -f image2 -c:v pgmyuv -i $raw_src $ENC_OPTS -t 1 -qscale 10 do_avconv_crc $file -i $target_path/$file fi - -# pix_fmt conversions - -if [ -n "$do_pixfmt" ] ; then -outfile="$datadir/pixfmt/" -conversions="yuv420p yuv422p yuv444p yuyv422 yuv410p yuv411p yuvj420p \ - yuvj422p yuvj444p rgb24 bgr24 rgb32 rgb565 rgb555 gray monow \ - monob yuv440p yuvj440p" -for pix_fmt in $conversions ; do - file=${outfile}${pix_fmt}.yuv - run_avconv $DEC_OPTS -r 1 -f image2 -c:v pgmyuv -i $raw_src \ - $ENC_OPTS -f rawvideo -t 1 -s 352x288 -pix_fmt $pix_fmt $target_path/$raw_dst - do_avconv $file $DEC_OPTS -f rawvideo -s 352x288 -pix_fmt $pix_fmt -i $target_path/$raw_dst \ - $ENC_OPTS -f rawvideo -s 352x288 -pix_fmt yuv444p -done -fi |