diff options
author | Timothy Gu <timothygu99@gmail.com> | 2015-11-27 14:33:03 -0800 |
---|---|---|
committer | Michael Niedermayer <michael@niedermayer.cc> | 2015-12-06 14:37:40 +0100 |
commit | b0669e7ccfef5ecaa83a0b5837c343ae198f03fe (patch) | |
tree | 906d475982e82a71e36752d2df3c4fa7ac01dbe2 /tests/fate-run.sh | |
parent | 9670165cc2273597cfac0365da6598743e4c6ea2 (diff) | |
download | ffmpeg-b0669e7ccfef5ecaa83a0b5837c343ae198f03fe.tar.gz |
fate/concatdec: Use -bitexact
Fixes FATE failures on --enable-small builds.
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
Diffstat (limited to 'tests/fate-run.sh')
-rwxr-xr-x | tests/fate-run.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/fate-run.sh b/tests/fate-run.sh index 03fa898b1b..16087cb74e 100755 --- a/tests/fate-run.sh +++ b/tests/fate-run.sh @@ -262,10 +262,10 @@ concat(){ awk "{gsub(/%SRCFILE%/, \"$sample\"); print}" $template > $concatfile if [ "$mode" = "md5" ]; then - run ffprobe${PROGSUF} -show_streams -show_packets -v 0 -fflags keepside -safe 0 $extra_args $concatfile | tr -d '\r' > $packetfile + run ffprobe${PROGSUF} -bitexact -show_streams -show_packets -v 0 -fflags keepside -safe 0 $extra_args $concatfile | tr -d '\r' > $packetfile do_md5sum $packetfile else - run ffprobe${PROGSUF} -show_streams -show_packets -v 0 -of compact=p=0:nk=1 -fflags keepside -safe 0 $extra_args $concatfile + run ffprobe${PROGSUF} -bitexact -show_streams -show_packets -v 0 -of compact=p=0:nk=1 -fflags keepside -safe 0 $extra_args $concatfile fi } |