diff options
author | Reimar Döffinger <Reimar.Doeffinger@gmx.de> | 2011-12-11 17:37:40 +0100 |
---|---|---|
committer | Reimar Döffinger <Reimar.Doeffinger@gmx.de> | 2011-12-13 23:07:40 +0100 |
commit | 36be045ed7942e07742c3cf3d3012b1d2a9ec344 (patch) | |
tree | 29dc61663ced6672a5fc0181a08ed1f03582cc45 /libavformat/nsvdec.c | |
parent | 16b771b1f47daa9fec84477040984d83a92ba4a6 (diff) | |
download | ffmpeg-36be045ed7942e07742c3cf3d3012b1d2a9ec344.tar.gz |
Support "VLB " audio in NSV files.
See samples/nsv/vlb_audio.
Signed-off-by: Reimar Döffinger <Reimar.Doeffinger@gmx.de>
Diffstat (limited to 'libavformat/nsvdec.c')
-rw-r--r-- | libavformat/nsvdec.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavformat/nsvdec.c b/libavformat/nsvdec.c index 9da036eb2b..72d626af73 100644 --- a/libavformat/nsvdec.c +++ b/libavformat/nsvdec.c @@ -206,6 +206,7 @@ static const AVCodecTag nsv_codec_audio_tags[] = { { CODEC_ID_MP3, MKTAG('M', 'P', '3', ' ') }, { CODEC_ID_AAC, MKTAG('A', 'A', 'C', ' ') }, { CODEC_ID_AAC, MKTAG('A', 'A', 'C', 'P') }, + { CODEC_ID_AAC, MKTAG('V', 'L', 'B', ' ') }, { CODEC_ID_SPEEX, MKTAG('S', 'P', 'X', ' ') }, { CODEC_ID_PCM_U16LE, MKTAG('P', 'C', 'M', ' ') }, { CODEC_ID_NONE, 0 }, |