diff options
author | Carl Eugen Hoyos <ceffmpeg@gmail.com> | 2021-03-16 21:11:45 +0100 |
---|---|---|
committer | Carl Eugen Hoyos <ceffmpeg@gmail.com> | 2021-03-20 18:52:55 +0100 |
commit | 9f8c81efc51755a8ff02c1cf02a7585d998e1380 (patch) | |
tree | 56d4e0f991304f7c542b2c57a549f43bf7834ec8 | |
parent | 8a73313412eeafcfa5afa45f39f65f2581ba3bbc (diff) | |
download | ffmpeg-9f8c81efc51755a8ff02c1cf02a7585d998e1380.tar.gz |
lavf/swfdec: Allow decoding Nellymoser in swf.
Such files exist in the wild, see ticket #9153.
-rw-r--r-- | libavformat/swfdec.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/swfdec.c b/libavformat/swfdec.c index f9a164b33f..48c5af9a0b 100644 --- a/libavformat/swfdec.c +++ b/libavformat/swfdec.c @@ -52,7 +52,7 @@ static const AVCodecTag swf_audio_codec_tags[] = { { AV_CODEC_ID_ADPCM_SWF, 0x01 }, { AV_CODEC_ID_MP3, 0x02 }, { AV_CODEC_ID_PCM_S16LE, 0x03 }, -// { AV_CODEC_ID_NELLYMOSER, 0x06 }, + { AV_CODEC_ID_NELLYMOSER, 0x06 }, { AV_CODEC_ID_NONE, 0 }, }; |