From 5f36065ca66e6a13bfc66ad2dfd04303f288edf4 Mon Sep 17 00:00:00 2001 From: Carl Eugen Hoyos Date: Sat, 12 Nov 2011 00:15:03 +0100 Subject: [PATCH] Use AC-3 as default codec for wtv. --- libavformat/wtvenc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavformat/wtvenc.c b/libavformat/wtvenc.c index d1c446ccb0..71ff2081bc 100644 --- a/libavformat/wtvenc.c +++ b/libavformat/wtvenc.c @@ -713,7 +713,7 @@ AVOutputFormat ff_wtv_muxer = { .long_name = NULL_IF_CONFIG_SMALL("Windows Television (WTV)"), .extensions = "wtv", .priv_data_size = sizeof(WtvContext), - .audio_codec = CODEC_ID_MP2, + .audio_codec = CODEC_ID_AC3, .video_codec = CODEC_ID_MPEG2VIDEO, .write_header = write_header, .write_packet = write_packet,