[FFmpeg-cvslog] r10344 - trunk/libavformat/matroskaenc.c
conrad
subversion
Wed Sep 5 02:24:20 CEST 2007
Author: conrad
Date: Wed Sep 5 02:24:19 2007
New Revision: 10344
Log:
Add mka muxer
Modified:
trunk/libavformat/matroskaenc.c
Modified: trunk/libavformat/matroskaenc.c
==============================================================================
--- trunk/libavformat/matroskaenc.c (original)
+++ trunk/libavformat/matroskaenc.c Wed Sep 5 02:24:19 2007
@@ -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},
+};
More information about the ffmpeg-cvslog
mailing list