diff options
author | Max Krasnyansky <maxk@qualcomm.com> | 2003-01-22 22:40:52 +0000 |
---|---|---|
committer | Fabrice Bellard <fabrice@bellard.org> | 2003-01-22 22:40:52 +0000 |
commit | 8aa3ee32c257541a91bab1e47364f4f655e9e69d (patch) | |
tree | 2f3593864ea116c97fd180f40e5ac3244d8e3b13 /libavformat/allformats.c | |
parent | 4b8b2edb6260d0f0b9e5f2f10a28c3ab19143f2f (diff) | |
download | ffmpeg-8aa3ee32c257541a91bab1e47364f4f655e9e69d.tar.gz |
dv patch by Max Krasnyansky (maxk at qualcomm dot com)
Originally committed as revision 1493 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/allformats.c')
-rw-r--r-- | libavformat/allformats.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/libavformat/allformats.c b/libavformat/allformats.c index 98702e4795..8e8c9f059f 100644 --- a/libavformat/allformats.c +++ b/libavformat/allformats.c @@ -21,6 +21,8 @@ /* If you do not call this function, then you can select exactly which formats you want to support */ +char *video_device = "none"; + /** * Initialize libavcodec and register all the codecs and formats. */ @@ -62,6 +64,10 @@ void av_register_all(void) audio_init(); #endif +#ifdef CONFIG_DV1394 + dv1394_init(); +#endif + /* image formats */ av_register_image_format(&pnm_image_format); av_register_image_format(&pbm_image_format); |