diff options
author | Ramiro Polla <ramiro.polla@gmail.com> | 2009-04-21 23:23:15 +0000 |
---|---|---|
committer | Ramiro Polla <ramiro.polla@gmail.com> | 2009-04-21 23:23:15 +0000 |
commit | 9145021d681346b6a1fcf8081e7241cec5635d9f (patch) | |
tree | 45e7ff8f1c0ea5dc240d597b5061fb12c403a321 /libavformat/raw.c | |
parent | 420df9303775f40fd5e591c4da05527efce6752b (diff) | |
download | ffmpeg-9145021d681346b6a1fcf8081e7241cec5635d9f.tar.gz |
Add raw MLP muxer.
Originally committed as revision 18652 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/raw.c')
-rw-r--r-- | libavformat/raw.c | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/libavformat/raw.c b/libavformat/raw.c index a7267a04e2..40ac4440d6 100644 --- a/libavformat/raw.c +++ b/libavformat/raw.c @@ -973,6 +973,21 @@ AVInputFormat mlp_demuxer = { }; #endif +#ifdef CONFIG_MLP_MUXER +AVOutputFormat mlp_muxer = { + "mlp", + NULL_IF_CONFIG_SMALL("raw MLP"), + NULL, + "mlp", + 0, + CODEC_ID_MLP, + CODEC_ID_NONE, + NULL, + raw_write_packet, + .flags= AVFMT_NOTIMESTAMPS, +}; +#endif + #if CONFIG_TRUEHD_DEMUXER AVInputFormat truehd_demuxer = { "truehd", |