diff options
author | Paul B Mahol <onemda@gmail.com> | 2015-01-27 18:09:32 +0000 |
---|---|---|
committer | Andreas Cadhalpun <Andreas.Cadhalpun@googlemail.com> | 2015-07-30 18:53:05 +0200 |
commit | ff68bf7a1bf32bd497f758c231fd7d816f07d86c (patch) | |
tree | 937f1bd2d87227717983cf6437cb9edcee3940c4 | |
parent | ef905b1b27d5785930d130ad786fd99514d207a7 (diff) | |
download | ffmpeg-ff68bf7a1bf32bd497f758c231fd7d816f07d86c.tar.gz |
avformat/nut: support WavPack
Signed-off-by: Paul B Mahol <onemda@gmail.com>
(cherry picked from commit 64815d1f0c782a632447806e40d9c7ee71f31b92)
Signed-off-by: Andreas Cadhalpun <Andreas.Cadhalpun@googlemail.com>
-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 86a03015af..6cd34458ac 100644 --- a/libavformat/nut.c +++ b/libavformat/nut.c @@ -182,6 +182,7 @@ const AVCodecTag ff_nut_audio_extra_tags[] = { { 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', ' ') }, + { AV_CODEC_ID_WAVPACK, MKTAG('w', 'v', 'p', 'k') }, { AV_CODEC_ID_NONE, 0 } }; |