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 /libavformat/allformats.c | |
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 'libavformat/allformats.c')
-rw-r--r-- | libavformat/allformats.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/libavformat/allformats.c b/libavformat/allformats.c index aae3eb5a89..d1fc72a949 100644 --- a/libavformat/allformats.c +++ b/libavformat/allformats.c @@ -102,6 +102,10 @@ void av_register_all(void) dv1394_init(); #endif +#ifdef CONFIG_DC1394 + dc1394_init(); +#endif + nut_init(); matroska_init(); sol_init(); |