diff options
author | Timothy Gu <timothygu99@gmail.com> | 2015-11-25 21:03:14 -0800 |
---|---|---|
committer | Timothy Gu <timothygu99@gmail.com> | 2015-11-25 21:03:14 -0800 |
commit | 04deaef29330e672b6d6600fedf4066c4f30d0e6 (patch) | |
tree | ba27af966f0c74d4c05f827a29eec6eca9122a9d | |
parent | 362c17e6563808ef48655e5ddf59a35b6497b8b2 (diff) | |
download | ffmpeg-04deaef29330e672b6d6600fedf4066c4f30d0e6.tar.gz |
fate-run: Fix indentation
-rwxr-xr-x | tests/fate-run.sh | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/fate-run.sh b/tests/fate-run.sh index bba6f424b3..03fa898b1b 100755 --- a/tests/fate-run.sh +++ b/tests/fate-run.sh @@ -262,10 +262,10 @@ concat(){ awk "{gsub(/%SRCFILE%/, \"$sample\"); print}" $template > $concatfile if [ "$mode" = "md5" ]; then - run ffprobe${PROGSUF} -show_streams -show_packets -v 0 -fflags keepside -safe 0 $extra_args $concatfile | tr -d '\r' > $packetfile - do_md5sum $packetfile + run ffprobe${PROGSUF} -show_streams -show_packets -v 0 -fflags keepside -safe 0 $extra_args $concatfile | tr -d '\r' > $packetfile + do_md5sum $packetfile else - run ffprobe${PROGSUF} -show_streams -show_packets -v 0 -of compact=p=0:nk=1 -fflags keepside -safe 0 $extra_args $concatfile + run ffprobe${PROGSUF} -show_streams -show_packets -v 0 -of compact=p=0:nk=1 -fflags keepside -safe 0 $extra_args $concatfile fi } |