Browse Source

Add mka muxer

Originally committed as revision 10344 to svn://svn.ffmpeg.org/ffmpeg/trunk
tags/v0.5
David Conrad 18 years ago
parent
commit
55c151efb3
1 changed files with 14 additions and 0 deletions
  1. +14
    -0
      libavformat/matroskaenc.c

+ 14
- 0
libavformat/matroskaenc.c View File

@@ -689,3 +689,17 @@ AVOutputFormat matroska_muxer = {
mkv_write_trailer,
.codec_tag = (const AVCodecTag*[]){codec_bmp_tags, codec_wav_tags, 0},
};

AVOutputFormat matroska_audio_muxer = {
"matroska",
"Matroska File Format",
"audio/x-matroska",
"mka",
sizeof(MatroskaMuxContext),
CODEC_ID_MP2,
CODEC_ID_NONE,
mkv_write_header,
mkv_write_packet,
mkv_write_trailer,
.codec_tag = (const AVCodecTag*[]){codec_wav_tags, 0},
};

Loading…
Cancel
Save