mirror of https://github.com/FFmpeg/FFmpeg.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
43 lines
914 B
43 lines
914 B
13 years ago
|
#!/bin/sh
|
||
|
|
||
|
set -e
|
||
|
|
||
13 years ago
|
if test "bisect-create" = "`basename $0`" ; then
|
||
|
echo tools/ffbisect created
|
||
|
git show master:tools/bisect-create > tools/ffbisect
|
||
13 years ago
|
chmod u+x tools/ffbisect
|
||
|
exit 1
|
||
|
fi
|
||
|
|
||
13 years ago
|
if ! git show master:tools/bisect-create | diff - tools/ffbisect > /dev/null ; then
|
||
13 years ago
|
echo updating tools/ffbisect script to HEAD.
|
||
13 years ago
|
git show master:tools/bisect-create > tools/ffbisect
|
||
13 years ago
|
chmod u+x tools/ffbisect
|
||
|
tools/ffbisect $*
|
||
|
exit 0
|
||
|
fi
|
||
|
|
||
13 years ago
|
case "$1" in
|
||
|
need)
|
||
|
case $2 in
|
||
|
ffmpeg|ffplay|ffprobe|ffserver)
|
||
13 years ago
|
echo $2.c >> tools/bisect.need
|
||
13 years ago
|
;;
|
||
|
esac
|
||
|
;;
|
||
|
start|reset)
|
||
13 years ago
|
echo . > tools/bisect.need
|
||
13 years ago
|
git bisect $*
|
||
|
;;
|
||
|
skip)
|
||
|
git bisect $*
|
||
|
;;
|
||
|
good|bad)
|
||
|
git bisect $*
|
||
|
|
||
13 years ago
|
until ls `cat tools/bisect.need` > /dev/null 2> /dev/null; do
|
||
13 years ago
|
git bisect skip || break
|
||
|
done
|
||
|
;;
|
||
|
esac
|