diff options
author | Anton Khirnov <anton@khirnov.net> | 2011-07-27 20:56:59 +0200 |
---|---|---|
committer | Anton Khirnov <anton@khirnov.net> | 2011-08-12 13:27:30 +0200 |
commit | 6291d7e41605c0b1e9debfae8a2b1d4cf7b0e0b3 (patch) | |
tree | ce39de2c1a0f9a48da739fc10a192cca0345efff /tests/fate-run.sh | |
parent | 791a86c37a03b94207bc2d0ad4cbe7f39d7e495a (diff) | |
download | ffmpeg-6291d7e41605c0b1e9debfae8a2b1d4cf7b0e0b3.tar.gz |
Make a copy of ffmpeg under a new name -- avconv.
It will be further developed with a few incompatible changes.
ffmpeg.c will stay as is for some time, so any scripts using it won't be
broken.
Diffstat (limited to 'tests/fate-run.sh')
-rwxr-xr-x | tests/fate-run.sh | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/tests/fate-run.sh b/tests/fate-run.sh index 4121035853..f623eecae6 100755 --- a/tests/fate-run.sh +++ b/tests/fate-run.sh @@ -49,28 +49,28 @@ run(){ $target_exec $target_path/"$@" } -ffmpeg(){ - run ffmpeg -v 0 -threads $threads -thread_type $thread_type "$@" +avconv(){ + run avconv -v 0 -threads $threads -thread_type $thread_type "$@" } framecrc(){ - ffmpeg "$@" -f framecrc - + avconv "$@" -f framecrc - } framemd5(){ - ffmpeg "$@" -f framemd5 - + avconv "$@" -f framemd5 - } crc(){ - ffmpeg "$@" -f crc - + avconv "$@" -f crc - } md5(){ - ffmpeg "$@" md5: + avconv "$@" md5: } pcm(){ - ffmpeg "$@" -vn -f s16le - + avconv "$@" -vn -f s16le - } regtest(){ |