Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(442)

Side by Side Diff: source/patched-ffmpeg-mt/mt-work/test.sh

Issue 4533003: patched ffmpeg nov 2 (Closed) Base URL: svn://chrome-svn/chrome/trunk/deps/third_party/ffmpeg/
Patch Set: '' Created 10 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 #!/bin/bash 1 #!/bin/bash
2 2
3 fn=`basename "$1"` 3 fn=`basename "$1"`
4 for th in 1 2 3 4; do 4 for th in 1 2 3 4; do
5 time ./ffmpeg_g -threads $th -vsync 0 -y -t 30 -i "$1" -an -f framecrc "crc/ $fn-$th.txt" >/dev/null 2>&1 5 time ./ffmpeg_g -threads $th -flags2 +fast -vsync 0 -y -t 30 -i "$1" -an -f framecrc "crc/$fn-$th.txt" >/dev/null 2>&1
6 done 6 done
7 7
8 md5 "crc/$fn"* 8 ./ffmpeg_g -threads 1 -y -t 10 -i "$1" -an -f framecrc "crc/$fn-1-vsync.txt" >/d ev/null 2>&1
9 ./ffmpeg_g -threads 3 -y -t 10 -i "$1" -an -f framecrc "crc/$fn-3-vsync.txt" >/d ev/null 2>&1
10
11 md5 "crc/$fn"*
12
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698