summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJan Kratochvil <kratochvil@users.sourceforge.net>2005-07-10 00:38:46 +0000
committerMichael Niedermayer <michaelni@gmx.at>2005-07-10 00:38:46 +0000
commit11bec294416e75e09219ca89635e268c437bcc9d (patch)
treec09b0e26ef294b8c2f685460a2504ab53174472c
parent337afd1420edc8a952c9b21317600efff011eb4c (diff)
AMR-WB for 3GPP patch by (Jan Kratochvil - kratochvil) / bugreport #1187101
Originally committed as revision 4427 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r--libavformat/movenc.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/libavformat/movenc.c b/libavformat/movenc.c
index 6d8ac364a3..8b41232a63 100644
--- a/libavformat/movenc.c
+++ b/libavformat/movenc.c
@@ -267,6 +267,7 @@ static const CodecTag codec_movaudio_tags[] = {
{ CODEC_ID_MACE6, MKTAG('M', 'A', 'C', '6') },
{ CODEC_ID_AAC, MKTAG('m', 'p', '4', 'a') },
{ CODEC_ID_AMR_NB, MKTAG('s', 'a', 'm', 'r') },
+ { CODEC_ID_AMR_WB, MKTAG('s', 'a', 'w', 'b') },
{ CODEC_ID_PCM_S16BE, MKTAG('t', 'w', 'o', 's') },
{ CODEC_ID_PCM_S16LE, MKTAG('s', 'o', 'w', 't') },
{ CODEC_ID_MP3, MKTAG('.', 'm', 'p', '3') },