Raw VC-1 demuxer

Originally committed as revision 7896 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
Kostya Shishkov
2007-02-09 12:10:15 +00:00
parent 928e00948a
commit 7bb5c2a6ea
3 changed files with 14 additions and 0 deletions

View 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) \