diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2012-06-10 02:57:25 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2012-06-10 02:57:25 +0200 |
commit | fd8da83d55f6a12350c47d3560cf39bf83a0a81e (patch) | |
tree | 27b0b5ec461bc5f52e01a8343ad638d8af4f44ea /tests/fate-run.sh | |
parent | 8f1b139c103587d1f6c7b455632b2d8b8b2766dc (diff) | |
download | ffmpeg-fd8da83d55f6a12350c47d3560cf39bf83a0a81e.tar.gz |
enc_dec_pcm: add bitexact flag
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'tests/fate-run.sh')
-rwxr-xr-x | tests/fate-run.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/fate-run.sh b/tests/fate-run.sh index 26ccaea3f5..39981c1332 100755 --- a/tests/fate-run.sh +++ b/tests/fate-run.sh @@ -108,7 +108,7 @@ enc_dec_pcm(){ cleanfiles=$encfile encfile=$(target_path ${encfile}) ffmpeg -i $src_file "$@" -f $out_fmt -y ${encfile} || return - ffmpeg -i ${encfile} -c:a pcm_${pcm_fmt} -f ${dec_fmt} - + ffmpeg -flags +bitexact -i ${encfile} -c:a pcm_${pcm_fmt} -f ${dec_fmt} - } FLAGS="-flags +bitexact -sws_flags +accurate_rnd+bitexact" |