Mercurial > libavformat.hg
diff allformats.c @ 27:fcdea3df94fe libavformat
dv patch by Max Krasnyansky (maxk at qualcomm dot com)
| author | bellard |
|---|---|
| date | Wed, 22 Jan 2003 22:40:52 +0000 |
| parents | 3d52de18ecc3 |
| children | 86a085c19c7f |
line wrap: on
line diff
--- a/allformats.c Wed Jan 22 09:53:25 2003 +0000 +++ b/allformats.c Wed Jan 22 22:40:52 2003 +0000 @@ -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 @@ 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);
