858 |
858 |
udp_protocol_deps="network"
|
859 |
859 |
|
860 |
860 |
# filters
|
861 |
|
vsrc_movie_deps="avfilter_lavf"
|
|
861 |
movie_filter_deps="avfilter_lavf"
|
862 |
862 |
|
863 |
863 |
# programs
|
864 |
864 |
ffplay_deps="sdl"
|
... | ... | |
962 |
962 |
thing=$1
|
963 |
963 |
pattern=$2
|
964 |
964 |
file=$source_path/$3
|
965 |
|
sed -n "s/^[^#]*$pattern.*(.*, *\\(.*\\)).*/\\1_$thing/p" "$file"
|
|
965 |
sed -n "s/^[^#]*$pattern.*([^,]*, *\\([^,]*\\)\(,.*\)*).*/\\1_$thing/p" "$file"
|
966 |
966 |
}
|
967 |
967 |
|
968 |
968 |
ENCODER_LIST=$(find_things encoder ENC libavcodec/allcodecs.c)
|
... | ... | |
974 |
974 |
OUTDEV_LIST=$(find_things muxer _MUX libavdevice/alldevices.c)
|
975 |
975 |
INDEV_LIST=$(find_things demuxer DEMUX libavdevice/alldevices.c)
|
976 |
976 |
PROTOCOL_LIST=$(find_things protocol PROTOCOL libavformat/allformats.c)
|
977 |
|
VIDEO_FILTER_LIST=$(find_things vf_ VF_ libavfilter/allfilters.c)
|
978 |
|
SRC_FILTER_LIST=$(find_things vsrc_ VSRC_ libavfilter/allfilters.c)
|
979 |
|
FILTER_LIST="$SRC_FILTER_LIST $VIDEO_FILTER_LIST"
|
|
977 |
FILTER_LIST=$(find_things filter FILTER libavfilter/allfilters.c)
|
980 |
978 |
|
981 |
979 |
enable $ARCH_EXT_LIST \
|
982 |
980 |
$DECODER_LIST \
|
... | ... | |
1071 |
1069 |
--enable-*=*|--disable-*=*)
|
1072 |
1070 |
eval `echo "$opt" | sed 's/=/-/;s/--/action=/;s/-/ thing=/;s/-/ name=/'`
|
1073 |
1071 |
case "$thing" in
|
1074 |
|
encoder|decoder|muxer|demuxer|parser|bsf|protocol) $action ${optval}_${thing} ;;
|
1075 |
|
filter) $action ${optval} ;;
|
|
1072 |
encoder|decoder|muxer|demuxer|parser|bsf|protocol|filter) $action ${optval}_${thing} ;;
|
1076 |
1073 |
*) die_unknown "$opt" ;;
|
1077 |
1074 |
esac
|
1078 |
1075 |
;;
|
... | ... | |
1920 |
1917 |
echo "postprocessing support ${pp-no}"
|
1921 |
1918 |
echo "software scaler enabled ${swscaler-no}"
|
1922 |
1919 |
echo "new filter support ${avfilter-no}"
|
1923 |
|
echo "filters using lavformat ${avfilter-lavf-no}"
|
|
1920 |
echo "filters using lavformat ${avfilter_lavf-no}"
|
1924 |
1921 |
echo "video hooking ${vhook-no}"
|
1925 |
1922 |
if enabled vhook; then
|
1926 |
1923 |
echo "Imlib2 support ${imlib2-no}"
|