From 64815d1f0c782a632447806e40d9c7ee71f31b92 Mon Sep 17 00:00:00 2001 From: Paul B Mahol Date: Tue, 27 Jan 2015 18:09:32 +0000 Subject: [PATCH] avformat/nut: support WavPack Signed-off-by: Paul B Mahol --- libavformat/nut.c | 1 + 1 file changed, 1 insertion(+) diff --git a/libavformat/nut.c b/libavformat/nut.c index 04f4bb00e1..c6fdb0bff8 100644 --- a/libavformat/nut.c +++ b/libavformat/nut.c @@ -183,6 +183,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 } };