From fa7ad81dab3e5cc60d69513ebc184a39ea7d53a2 Mon Sep 17 00:00:00 2001 From: Zane van Iperen Date: Sun, 2 Aug 2020 09:20:15 +1000 Subject: [PATCH] avcodec/adpcm_argo: fix incorrect documentation Flag bit was in the wrong place. Signed-off-by: Zane van Iperen --- libavcodec/adpcm.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavcodec/adpcm.c b/libavcodec/adpcm.c index 4de4a232897..b77f4b8ef65 100644 --- a/libavcodec/adpcm.c +++ b/libavcodec/adpcm.c @@ -1987,7 +1987,7 @@ static int adpcm_decode_frame(AVCodecContext *avctx, void *data, * uint4_t right_samples[nb_samples]; * * Format of the control byte: - * MSB [SSSSDRRR] LSB + * MSB [SSSSRDRR] LSB * S = (Shift Amount - 2) * D = Decoder flag. * R = Reserved -- 2.39.2