mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-06-28 11:27:30 +08:00
print enabled things in columns
Originally committed as revision 12251 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
11
configure
vendored
11
configure
vendored
@ -1951,14 +1951,11 @@ echo "zlib enabled ${zlib-no}"
|
|||||||
|
|
||||||
for type in decoder encoder parser demuxer muxer protocol filter bsf indev outdev; do
|
for type in decoder encoder parser demuxer muxer protocol filter bsf indev outdev; do
|
||||||
echo "Enabled ${type}s:"
|
echo "Enabled ${type}s:"
|
||||||
ucname="\$`toupper $type`_LIST"
|
eval list=\$$(toupper $type)_LIST
|
||||||
list="`eval echo $ucname`"
|
|
||||||
partlist=""
|
|
||||||
for part in $list; do
|
for part in $list; do
|
||||||
enabled $part && partlist="$partlist $part"
|
enabled $part && echo ${part%_*}
|
||||||
done
|
done | sort | pr -3 -t
|
||||||
partlist=`echo $partlist | sed s/_$type//g | tr ' ' '\n' | sort`
|
echo
|
||||||
echo $partlist
|
|
||||||
done
|
done
|
||||||
|
|
||||||
enabled nonfree &&
|
enabled nonfree &&
|
||||||
|
Reference in New Issue
Block a user