summaryrefslogtreecommitdiff
path: root/libavformat/raw.c
diff options
context:
space:
mode:
Diffstat (limited to 'libavformat/raw.c')
-rw-r--r--libavformat/raw.c12
1 files changed, 12 insertions, 0 deletions
diff --git a/libavformat/raw.c b/libavformat/raw.c
index 56f47ad047..0f60d6a35a 100644
--- a/libavformat/raw.c
+++ b/libavformat/raw.c
@@ -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) \