diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2014-05-01 02:13:31 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2014-05-01 02:13:31 +0200 |
commit | 82ccefb904b0712047ddd8f0fc2f5e11c7fb1745 (patch) | |
tree | bd15da3ca7f8c36ee7ba676a4d904fdb92ab4602 /libavformat/nut.c | |
parent | 617e866e25b72fa5d9f9d6bbcbd7e4bd69e63a54 (diff) | |
download | ffmpeg-82ccefb904b0712047ddd8f0fc2f5e11c7fb1745.tar.gz |
avformat/nut: support storing RFC 3389 comfort noise
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavformat/nut.c')
-rw-r--r-- | libavformat/nut.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavformat/nut.c b/libavformat/nut.c index 6983af0523..9224a96373 100644 --- a/libavformat/nut.c +++ b/libavformat/nut.c @@ -177,6 +177,7 @@ const AVCodecTag ff_nut_video_tags[] = { }; const AVCodecTag ff_nut_audio_extra_tags[] = { + { AV_CODEC_ID_COMFORT_NOISE, MKTAG('3', '3', '8', '9') }, { AV_CODEC_ID_PCM_ALAW, MKTAG('A', 'L', 'A', 'W') }, { AV_CODEC_ID_PCM_MULAW, MKTAG('U', 'L', 'A', 'W') }, { AV_CODEC_ID_MP3, MKTAG('M', 'P', '3', ' ') }, |