Commit 0462df15 authored by conrad's avatar conrad

Add mka muxer


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@10344 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent c20d2c62
......@@ -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},
};
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment