mirror of
https://gitee.com/openharmony/third_party_ffmpeg
synced 2024-11-24 11:49:48 +00:00
print enabled things in columns
Originally committed as revision 12251 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
3cde40aaa4
commit
f65c9da140
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 &&
|
||||||
|
Loading…
Reference in New Issue
Block a user