Browse Source

avcodec/adpcm: add comment to has_status field

Signed-off-by: Zane van Iperen <zane@zanevaniperen.com>
(cherry picked from commit 55a50885b9)
tags/n4.4
Zane van Iperen 4 years ago
parent
commit
ebe065c177
No known key found for this signature in database GPG Key ID: 68616B2D8AC4DCC5
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      libavcodec/adpcm.c

+ 1
- 1
libavcodec/adpcm.c View File

@@ -100,7 +100,7 @@ static const int8_t mtf_index_table[16] = {
typedef struct ADPCMDecodeContext { typedef struct ADPCMDecodeContext {
ADPCMChannelStatus status[14]; ADPCMChannelStatus status[14];
int vqa_version; /**< VQA version. Used for ADPCM_IMA_WS */ 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; } ADPCMDecodeContext;


static av_cold int adpcm_decode_init(AVCodecContext * avctx) static av_cold int adpcm_decode_init(AVCodecContext * avctx)


Loading…
Cancel
Save