diff options
author | Roman Shaposhnik <roman@shaposhnik.org> | 2004-10-22 02:04:30 +0000 |
---|---|---|
committer | Roman Shaposhnik <roman@shaposhnik.org> | 2004-10-22 02:04:30 +0000 |
commit | f02be79d61022f399bb08573fd42d068cdf75b7b (patch) | |
tree | eda5af9278e46245d3b56d96d89513466502ddc8 /configure | |
parent | 5ba7c3d7c9c53afad5e13203011619cff579b7ba (diff) | |
download | ffmpeg-f02be79d61022f399bb08573fd42d068cdf75b7b.tar.gz |
* Introducing IIDC1394 grabbing interface.
Use it with -grab dc1394
* Introducing yet another packed pix_fmt in order to support some of
the IIDC1394 modes: uyvy411 (Cb Y0 Y1 Cr Y2 Y3).
Originally committed as revision 3621 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 10 |
1 files changed, 10 insertions, 0 deletions
@@ -32,6 +32,7 @@ echo " --enable-amr_nb-fixed use fixed point for amr-nb codec" echo " --enable-amr_wb enable amr_wb float audio codec" echo " --enable-sunmlib use Sun medialib [default=no]" echo " --enable-pthreads use pthreads [default=no]" +echo " --enable-dc1394 enable IIDC-1394 grabbing using libdc1394 and libraw1394 [default=no]" echo " --enable-gpl allow use of gpl code, the resulting libav* and ffmpeg will be under gpl [default=no]" echo "" echo "Advanced options (experts only):" @@ -145,6 +146,7 @@ v4l="yes" audio_oss="yes" audio_beos="no" dv1394="yes" +dc1394="no" network="yes" zlib="yes" mp3lame="no" @@ -418,6 +420,8 @@ for opt do ;; --enable-xvid) xvid="yes" ;; + --enable-dc1394) dc1394="yes" + ;; --disable-vhook) vhook="no" ;; --disable-simple_idct) simpleidct="no" @@ -686,6 +690,7 @@ if test "$mingw32" = "yes" ; then v4l="no" audio_oss="no" dv1394="no" + dc1394="no" ffserver="no" network="no" LIBPREF="" @@ -1261,6 +1266,11 @@ if test "$dv1394" = "yes" ; then echo "CONFIG_DV1394=yes" >> config.mak fi +if test "$dc1394" = "yes" ; then + echo "#define CONFIG_DC1394 1" >> $TMPH + echo "CONFIG_DC1394=yes" >> config.mak +fi + if test "$dlopen" = "yes" ; then echo "#define CONFIG_HAVE_DLOPEN 1" >> $TMPH fi |