[FFmpeg-cvslog] lavf/swfdec: Allow decoding Nellymoser in swf.
Carl Eugen Hoyos
git at videolan.org
Sat Mar 20 19:54:14 EET 2021
ffmpeg | branch: master | Carl Eugen Hoyos <ceffmpeg at gmail.com> | Tue Mar 16 21:11:45 2021 +0100| [9f8c81efc51755a8ff02c1cf02a7585d998e1380] | committer: Carl Eugen Hoyos
lavf/swfdec: Allow decoding Nellymoser in swf.
Such files exist in the wild, see ticket #9153.
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=9f8c81efc51755a8ff02c1cf02a7585d998e1380
---
libavformat/swfdec.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
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 },
};
More information about the ffmpeg-cvslog
mailing list