|
|
|
@ -88,6 +88,7 @@ show_help(){ |
|
|
|
|
echo " --enable-amr_if2 enable amr_wb IF2 audio codec" |
|
|
|
|
echo " --enable-sunmlib use Sun medialib [default=no]" |
|
|
|
|
echo " --enable-pthreads use pthreads [default=no]" |
|
|
|
|
echo " --enable-x11grab enable X11 grabbing [default=no]" |
|
|
|
|
echo " --enable-dc1394 enable IIDC-1394 grabbing using libdc1394" |
|
|
|
|
echo " and libraw1394 [default=no]" |
|
|
|
|
echo " --enable-swscaler software scaler support [default=no]" |
|
|
|
@ -442,6 +443,7 @@ CONFIG_LIST=' |
|
|
|
|
video4linux |
|
|
|
|
video4linux2 |
|
|
|
|
wince |
|
|
|
|
x11grab |
|
|
|
|
x264 |
|
|
|
|
xvid |
|
|
|
|
zlib |
|
|
|
@ -574,6 +576,7 @@ video4linux2="yes" |
|
|
|
|
bktr="no" |
|
|
|
|
audio_oss="yes" |
|
|
|
|
audio_beos="no" |
|
|
|
|
x11grab="no" |
|
|
|
|
dv1394="yes" |
|
|
|
|
dc1394="no" |
|
|
|
|
network="yes" |
|
|
|
@ -955,6 +958,8 @@ for opt do |
|
|
|
|
;; |
|
|
|
|
--enable-avisynth) avisynth="yes"; |
|
|
|
|
;; |
|
|
|
|
--enable-x11grab) x11grab="yes"; |
|
|
|
|
;; |
|
|
|
|
--enable-dc1394) dc1394="yes" |
|
|
|
|
pkg_requires="$pkg_requires libraw1394" |
|
|
|
|
;; |
|
|
|
@ -1163,6 +1168,11 @@ EOF |
|
|
|
|
echo "FAAD test failed." |
|
|
|
|
fi |
|
|
|
|
fi |
|
|
|
|
|
|
|
|
|
if test "$x11grab" != "no"; then |
|
|
|
|
echo "The X11 grabber is under GPL and --enable-gpl is not specified." |
|
|
|
|
fail="yes" |
|
|
|
|
fi |
|
|
|
|
fi |
|
|
|
|
|
|
|
|
|
if test "$fail" = "yes"; then |
|
|
|
@ -1661,6 +1671,7 @@ struct v4l2_buffer dummy1; |
|
|
|
|
EOF |
|
|
|
|
|
|
|
|
|
# Deal with the x11 frame grabber |
|
|
|
|
enabled x11grab && |
|
|
|
|
enabled gpl && |
|
|
|
|
enabled x11_grab_device_demuxer && |
|
|
|
|
check_header X11/Xlib.h && |
|
|
|
|