]> git.sesse.net Git - ffmpeg/blobdiff - libavformat/dv1394.c
attempt to demux clip wrapped content
[ffmpeg] / libavformat / dv1394.c
index 9d229fc957020e140226051b150430d3e496ffde..b3ab06a38537a6dd700941f6c6490835ec840ee6 100644 (file)
@@ -227,7 +227,7 @@ static int dv1394_close(AVFormatContext * context)
     return 0;
 }
 
-static AVInputFormat dv1394_demuxer = {
+AVInputFormat dv1394_demuxer = {
     .name           = "dv1394",
     .long_name      = "dv1394 A/V grab",
     .priv_data_size = sizeof(struct dv1394_data),
@@ -236,9 +236,3 @@ static AVInputFormat dv1394_demuxer = {
     .read_close     = dv1394_close,
     .flags          = AVFMT_NOFILE
 };
-
-int dv1394_init(void)
-{
-    av_register_input_format(&dv1394_demuxer);
-    return 0;
-}