diff options
author | Diego Biurrun <diego@biurrun.de> | 2011-04-18 23:12:40 +0200 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2011-04-18 23:55:11 +0200 |
commit | d11818eff42681eec9b8106e317a95766506821a (patch) | |
tree | 0138db861b04f7ec7d26df3be18661388ccbc350 /tests | |
parent | facc48f157a282e9d99a9bf65f5985bace4606b9 (diff) | |
download | ffmpeg-d11818eff42681eec9b8106e317a95766506821a.tar.gz |
Remove now obsolete references to _g-suffixed binaries.
Automatic stripping of binaries was removed in commit e0be794
and the _g binaries disappeared along with it.
Diffstat (limited to 'tests')
-rwxr-xr-x | tests/copycooker.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/copycooker.sh b/tests/copycooker.sh index 4b5811dcf6..3118e3f842 100755 --- a/tests/copycooker.sh +++ b/tests/copycooker.sh @@ -13,8 +13,8 @@ rm -f $logfile for i in $list ; do echo ---------------- >> $logfile echo $i >> $logfile - ./ffmpeg_g -flags +bitexact -i $i -acodec copy -vcodec copy -y first.nut - ./ffmpeg_g -flags +bitexact -i first.nut -acodec copy -vcodec copy -y second.nut + ./ffmpeg -flags +bitexact -i $i -acodec copy -vcodec copy -y first.nut + ./ffmpeg -flags +bitexact -i first.nut -acodec copy -vcodec copy -y second.nut cmp first.nut second.nut >> $logfile md5sum first.nut >> $logfile done |