raw mlp demuxer

Based on patch by Jeff Muizelaar <jrmuizel <at> gmail.org>
http://article.gmane.org/gmane.comp.video.ffmpeg.devel/57797

Originally committed as revision 13558 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
Ramiro Polla
2008-05-30 16:05:56 +00:00
parent dd0f776c98
commit 16e861e3ee
3 changed files with 15 additions and 0 deletions

View File

@@ -442,6 +442,19 @@ AVInputFormat shorten_demuxer = {
.value = CODEC_ID_SHORTEN,
};
AVInputFormat mlp_demuxer = {
"mlp",
"raw mlp",
0,
NULL,
audio_read_header,
raw_read_partial_packet,
raw_read_close,
.flags= AVFMT_GENERIC_INDEX,
.extensions = "mlp",
.value = CODEC_ID_MLP,
};
AVInputFormat flac_demuxer = {
"flac",
"raw flac",