summaryrefslogtreecommitdiff
path: root/libavformat/riffdec.c
diff options
context:
space:
mode:
authorPaul B Mahol <onemda@gmail.com>2020-02-14 20:37:42 +0100
committerPaul B Mahol <onemda@gmail.com>2020-02-16 12:54:57 +0100
commitdfb0b9370d3621ab1f603e7bb8e142b1f6996562 (patch)
treec67df7eb8327419f95d485647b353318b666f4f3 /libavformat/riffdec.c
parent7b7b418277fc36a864f7b8b449feacb39f2dbced (diff)
avcodec: fix pcm zork decoder
Fixes #1939
Diffstat (limited to 'libavformat/riffdec.c')
-rw-r--r--libavformat/riffdec.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/riffdec.c b/libavformat/riffdec.c
index 070c42eee3..533bb5a15d 100644
--- a/libavformat/riffdec.c
+++ b/libavformat/riffdec.c
@@ -202,7 +202,7 @@ enum AVCodecID ff_wav_codec_get_id(unsigned int tag, int bps)
id = ff_get_pcm_codec_id(bps, 1, 0, 0);
if (id == AV_CODEC_ID_ADPCM_IMA_WAV && bps == 8)
- id = AV_CODEC_ID_PCM_ZORK;
+ id = AV_CODEC_ID_ADPCM_ZORK;
return id;
}