]> git.sesse.net Git - ffmpeg/commitdiff
avcodec/adpcm: add comment to has_status field
authorZane van Iperen <zane@zanevaniperen.com>
Tue, 23 Mar 2021 11:01:16 +0000 (21:01 +1000)
committerZane van Iperen <zane@zanevaniperen.com>
Thu, 25 Mar 2021 02:51:01 +0000 (12:51 +1000)
Signed-off-by: Zane van Iperen <zane@zanevaniperen.com>
libavcodec/adpcm.c

index 5b6d1040af0572c29829dca980f6129a2481cf97..5c28b745b90ff2c7c11f50fe3ee887c6f87afdab 100644 (file)
@@ -100,7 +100,7 @@ static const int8_t mtf_index_table[16] = {
 typedef struct ADPCMDecodeContext {
     ADPCMChannelStatus status[14];
     int vqa_version;                /**< VQA version. Used for ADPCM_IMA_WS */
-    int has_status;
+    int has_status;                 /**< Status flag. Reset to 0 after a flush. */
 } ADPCMDecodeContext;
 
 static av_cold int adpcm_decode_init(AVCodecContext * avctx)