diff options
author | Anton Khirnov <anton@khirnov.net> | 2011-08-20 16:02:22 +0200 |
---|---|---|
committer | Anton Khirnov <anton@khirnov.net> | 2011-08-22 07:16:55 +0200 |
commit | 3436c4a368aca1bdcbf28bdfc996903460263de0 (patch) | |
tree | af6ca138eaa5d662399b742e941f684be4d1bf2b | |
parent | b6d28eff8454dd37c2f461fa7c55e35be7b05e9c (diff) | |
download | ffmpeg-3436c4a368aca1bdcbf28bdfc996903460263de0.tar.gz |
matroskaenc: saner default codecs.
libvorbis/libx264 for video if available, otherwise ac3/mpeg4.
-rw-r--r-- | libavformat/matroskaenc.c | 16 | ||||
-rwxr-xr-x | tests/lavf-regression.sh | 2 |
2 files changed, 15 insertions, 3 deletions
diff --git a/libavformat/matroskaenc.c b/libavformat/matroskaenc.c index aa767f3535..ce1a7d1d3f 100644 --- a/libavformat/matroskaenc.c +++ b/libavformat/matroskaenc.c @@ -1214,8 +1214,16 @@ AVOutputFormat ff_matroska_muxer = { .mime_type = "video/x-matroska", .extensions = "mkv", .priv_data_size = sizeof(MatroskaMuxContext), - .audio_codec = CODEC_ID_MP2, +#if CONFIG_LIBVORBIS_ENCODER + .audio_codec = CODEC_ID_VORBIS, +#else + .audio_codec = CODEC_ID_AC3, +#endif +#if CONFIG_LIBX264_ENCODER + .video_codec = CODEC_ID_H264, +#else .video_codec = CODEC_ID_MPEG4, +#endif .write_header = mkv_write_header, .write_packet = mkv_write_packet, .write_trailer = mkv_write_trailer, @@ -1249,7 +1257,11 @@ AVOutputFormat ff_matroska_audio_muxer = { .mime_type = "audio/x-matroska", .extensions = "mka", .priv_data_size = sizeof(MatroskaMuxContext), - .audio_codec = CODEC_ID_MP2, +#if CONFIG_LIBVORBIS_ENCODER + .audio_codec = CODEC_ID_VORBIS, +#else + .audio_codec = CODEC_ID_AC3, +#endif .video_codec = CODEC_ID_NONE, .write_header = mkv_write_header, .write_packet = mkv_write_packet, diff --git a/tests/lavf-regression.sh b/tests/lavf-regression.sh index 859ccb946e..a3a0b86b96 100755 --- a/tests/lavf-regression.sh +++ b/tests/lavf-regression.sh @@ -103,7 +103,7 @@ do_lavf nut "-acodec mp2" fi if [ -n "$do_mkv" ] ; then -do_lavf mkv +do_lavf mkv "-c:a mp2 -c:v mpeg4" fi |