diff options
author | Zane van Iperen | 2020-08-02 09:20:15 +1000 |
---|---|---|
committer | Zane van Iperen | 2020-08-04 18:01:00 +1000 |
commit | fa7ad81dab3e5cc60d69513ebc184a39ea7d53a2 (patch) | |
tree | 9eab599af7549f13ab4a34b95c7c879a06267221 /libavcodec/adpcm.c | |
parent | 6ce43389431fac004d529015ccec40208f0d8493 (diff) |
avcodec/adpcm_argo: fix incorrect documentation
Flag bit was in the wrong place.
Signed-off-by: Zane van Iperen <zane@zanevaniperen.com>
Diffstat (limited to 'libavcodec/adpcm.c')
-rw-r--r-- | libavcodec/adpcm.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/adpcm.c b/libavcodec/adpcm.c index 4de4a23289..b77f4b8ef6 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 |