aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorZane van Iperen <zane@zanevaniperen.com>2021-03-23 21:01:16 +1000
committerZane van Iperen <zane@zanevaniperen.com>2021-03-25 16:34:39 +1000
commitebe065c177bc91359d2acd97db28b8f88ae9d152 (patch)
treeb373245edc24cf2c7cdd2cb4ea88c2b4ec8801be
parent5f2018c4901a1ff86ebfd021a4ab38a3f4a6d0cb (diff)
downloadffmpeg-ebe065c177bc91359d2acd97db28b8f88ae9d152.tar.gz
avcodec/adpcm: add comment to has_status field
Signed-off-by: Zane van Iperen <zane@zanevaniperen.com> (cherry picked from commit 55a50885b94f10f2076deaf40957d8573e008dcd)
-rw-r--r--libavcodec/adpcm.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/adpcm.c b/libavcodec/adpcm.c
index 5b6d1040af..5c28b745b9 100644
--- a/libavcodec/adpcm.c
+++ b/libavcodec/adpcm.c
@@ -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)