Browse Source

Never use MP3 as default audio codec for asf.

Some Windows versions do not ship an appropriate MP3 decoder.
tags/n0.9
ami_stuff Carl Eugen Hoyos 14 years ago
parent
commit
ef4f403159
1 changed files with 0 additions and 8 deletions
  1. +0
    -8
      libavformat/asfenc.c

+ 0
- 8
libavformat/asfenc.c View File

@@ -883,11 +883,7 @@ AVOutputFormat ff_asf_muxer = {
.mime_type = "video/x-ms-asf",
.extensions = "asf,wmv,wma",
.priv_data_size = sizeof(ASFContext),
#if CONFIG_LIBMP3LAME
.audio_codec = CODEC_ID_MP3,
#else
.audio_codec = CODEC_ID_WMAV2,
#endif
.video_codec = CODEC_ID_MSMPEG4V3,
.write_header = asf_write_header,
.write_packet = asf_write_packet,
@@ -904,11 +900,7 @@ AVOutputFormat ff_asf_stream_muxer = {
.mime_type = "video/x-ms-asf",
.extensions = "asf,wmv,wma",
.priv_data_size = sizeof(ASFContext),
#if CONFIG_LIBMP3LAME
.audio_codec = CODEC_ID_MP3,
#else
.audio_codec = CODEC_ID_WMAV2,
#endif
.video_codec = CODEC_ID_MSMPEG4V3,
.write_header = asf_write_stream_header,
.write_packet = asf_write_packet,


Loading…
Cancel
Save