diff mbox series

[FFmpeg-devel,01/11] avcodec/adpcm: add comment to has_status field

Message ID 20210323141305.19229-1-zane@zanevaniperen.com
State Accepted
Commit 55a50885b94f10f2076deaf40957d8573e008dcd
Headers show
Series [FFmpeg-devel,01/11] avcodec/adpcm: add comment to has_status field | expand

Checks

Context Check Description
andriy/x86_make success Make finished
andriy/x86_make_fate success Make fate finished
andriy/PPC64_make success Make finished
andriy/PPC64_make_fate success Make fate finished

Commit Message

Zane van Iperen March 23, 2021, 2:12 p.m. UTC
Signed-off-by: Zane van Iperen <zane@zanevaniperen.com>
---
 libavcodec/adpcm.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Comments

Zane van Iperen March 24, 2021, noon UTC | #1
On 24/3/21 12:12 am, Zane van Iperen wrote:
> Signed-off-by: Zane van Iperen <zane@zanevaniperen.com>
> ---
>   libavcodec/adpcm.c | 2 +-
>   1 file changed, 1 insertion(+), 1 deletion(-)
> 

As these are trivial patches, I will apply them tomorrow and backport to 4.4.
diff mbox series

Patch

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)