summaryrefslogtreecommitdiff
path: root/tests/lavfi-regression.sh
diff options
context:
space:
mode:
authorStefano Sabatini <stefano.sabatini-lala@poste.it>2010-06-06 18:50:27 +0000
committerStefano Sabatini <stefano.sabatini-lala@poste.it>2010-06-06 18:50:27 +0000
commite59cfd785041ea9cbc04fa1a2d23b2c1a053f153 (patch)
tree4ae28813e59492eb86215bc7cd55729af2d11121 /tests/lavfi-regression.sh
parentc32b7017498bc5ab87f8b362d09112f8ade2b085 (diff)
Do not exclude anymore the pixel formats rgb444, bgr444, rgb4_byte,
and bgr4_byte from the lavfi-pix_fmts test. The formats are now supported by NUT. Originally committed as revision 23510 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'tests/lavfi-regression.sh')
-rwxr-xr-xtests/lavfi-regression.sh5
1 files changed, 2 insertions, 3 deletions
diff --git a/tests/lavfi-regression.sh b/tests/lavfi-regression.sh
index 37aaca7a4a..ebbc0f3f67 100755
--- a/tests/lavfi-regression.sh
+++ b/tests/lavfi-regression.sh
@@ -68,9 +68,8 @@ vflip
"
if [ -n "$do_lavfi_pix_fmts" ]; then
- # exclude pixel formats currently not supported by NUT and which are not supported as input
- excluded_pix_fmts="rgb4_byte bgr4_byte rgb444le rgb444be bgr444le bgr444be"
- excluded_pix_fmts="$excluded_pix_fmts $(ffmpeg -pix_fmts list 2>/dev/null | sed -ne '9,$p' | grep '^\..\.' | cut -d' ' -f2)"
+ # exclude pixel formats which are not supported as input
+ excluded_pix_fmts="$(ffmpeg -pix_fmts list 2>/dev/null | sed -ne '9,$p' | grep '^\..\.' | cut -d' ' -f2)"
scale_out_pix_fmts=$(tools/lavfi-showfiltfmts scale | grep "^OUTPUT" | cut -d: -f2)
scale_out_pix_fmts=$(get_exclusive_elements "$scale_out_pix_fmts" "$excluded_pix_fmts")