summaryrefslogtreecommitdiff
path: root/libavformat/wtvenc.c
diff options
context:
space:
mode:
authorCarl Eugen Hoyos <cehoyos@ag.or.at>2011-11-12 00:15:03 +0100
committerCarl Eugen Hoyos <cehoyos@ag.or.at>2011-11-12 00:15:03 +0100
commit5f36065ca66e6a13bfc66ad2dfd04303f288edf4 (patch)
tree9d45c3c06d9d3027019a9ca830dbc40d9f251872 /libavformat/wtvenc.c
parentddeb194b14029b8e4c3138ea92fd1c539f4ea26a (diff)
downloadffmpeg-5f36065ca66e6a13bfc66ad2dfd04303f288edf4.tar.gz
Use AC-3 as default codec for wtv.
Diffstat (limited to 'libavformat/wtvenc.c')
-rw-r--r--libavformat/wtvenc.c2
1 files changed, 1 insertions, 1 deletions
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,