]> git.sesse.net Git - ffmpeg/blobdiff - libavformat/raw.c
remove silly video check, theres nothing video specific in there
[ffmpeg] / libavformat / raw.c
index 56f47ad04764f44daf9de2e2637954288a356bec..0f60d6a35a54dd87a128fbd05e13e97c76c79574 100644 (file)
@@ -716,6 +716,18 @@ AVOutputFormat mjpeg_muxer = {
 };
 #endif //CONFIG_MUXERS
 
+AVInputFormat vc1_demuxer = {
+    "vc1",
+    "raw vc1",
+    0,
+    NULL /* vc1_probe */,
+    video_read_header,
+    raw_read_partial_packet,
+    raw_read_close,
+    .extensions = "vc1",
+    .value = CODEC_ID_VC1,
+};
+
 /* pcm formats */
 
 #define PCMINPUTDEF(name, long_name, ext, codec) \