Commit 04307697 authored by Stefano Sabatini's avatar Stefano Sabatini

Reindent.

Originally committed as revision 24655 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent 73177b6c
...@@ -46,13 +46,13 @@ do_lavfi_pixfmts(){ ...@@ -46,13 +46,13 @@ do_lavfi_pixfmts(){
$ffmpeg -pix_fmts list 2>/dev/null | sed -ne '9,$p' | grep '^\..\.' | cut -d' ' -f2 | sort >$exclude_fmts $ffmpeg -pix_fmts list 2>/dev/null | sed -ne '9,$p' | grep '^\..\.' | cut -d' ' -f2 | sort >$exclude_fmts
$showfiltfmts scale | awk '/^OUTPUT/{ print $3 }' | sort | comm -23 - $exclude_fmts >$out_fmts $showfiltfmts scale | awk '/^OUTPUT/{ print $3 }' | sort | comm -23 - $exclude_fmts >$out_fmts
pix_fmts=$($showfiltfmts $filter | awk '/^INPUT/{ print $3 }' | sort | comm -12 - $out_fmts) pix_fmts=$($showfiltfmts $filter | awk '/^INPUT/{ print $3 }' | sort | comm -12 - $out_fmts)
for pix_fmt in $pix_fmts; do for pix_fmt in $pix_fmts; do
output=${test}-${pix_fmt}.nut output=${test}-${pix_fmt}.nut
do_video_encoding $output "" \ do_video_encoding $output "" \
"-vf slicify=random,format=$pix_fmt,$filter=$filter_args -vcodec rawvideo -pix_fmt $pix_fmt" "-vf slicify=random,format=$pix_fmt,$filter=$filter_args -vcodec rawvideo -pix_fmt $pix_fmt"
rm ${outfile}${output} rm ${outfile}${output}
done done
rm $exclude_fmts $out_fmts rm $exclude_fmts $out_fmts
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment