matroskaenc: make SSA default subtitle codec.
authorAnton Khirnov <anton@khirnov.net>
Fri, 24 Jun 2011 19:34:42 +0000 (21:34 +0200)
committerAnton Khirnov <anton@khirnov.net>
Tue, 12 Jul 2011 13:25:53 +0000 (15:25 +0200)
It's a better format and we have an encoder for it, so it doesn't fail
like CODEC_ID_TEXT.

libavformat/matroskaenc.c

index 169e8e4..d0e3c17 100644 (file)
@@ -1205,7 +1205,7 @@ AVOutputFormat ff_matroska_muxer = {
     mkv_write_trailer,
     .flags = AVFMT_GLOBALHEADER | AVFMT_VARIABLE_FPS,
     .codec_tag = (const AVCodecTag* const []){ff_codec_bmp_tags, ff_codec_wav_tags, 0},
-    .subtitle_codec = CODEC_ID_TEXT,
+    .subtitle_codec = CODEC_ID_SSA,
 };
 #endif