From patchwork Tue Mar 23 14:12:55 2021 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Zane van Iperen X-Patchwork-Id: 26563 Return-Path: X-Original-To: patchwork@ffaux-bg.ffmpeg.org Delivered-To: patchwork@ffaux-bg.ffmpeg.org Received: from ffbox0-bg.mplayerhq.hu (ffbox0-bg.ffmpeg.org [79.124.17.100]) by ffaux.localdomain (Postfix) with ESMTP id 9A25B44BC28 for ; Tue, 23 Mar 2021 16:13:46 +0200 (EET) Received: from [127.0.1.1] (localhost [127.0.0.1]) by ffbox0-bg.mplayerhq.hu (Postfix) with ESMTP id 7549968AB55; Tue, 23 Mar 2021 16:13:46 +0200 (EET) X-Original-To: ffmpeg-devel@ffmpeg.org Delivered-To: ffmpeg-devel@ffmpeg.org Received: from out2.migadu.com (unknown [188.165.223.204]) by ffbox0-bg.mplayerhq.hu (Postfix) with ESMTPS id A556D689E84 for ; Tue, 23 Mar 2021 16:13:38 +0200 (EET) X-Report-Abuse: Please report any abuse attempt to abuse@migadu.com and include these headers. DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=zanevaniperen.com; s=key1; t=1616508808; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version: content-transfer-encoding:content-transfer-encoding; bh=1gmrWLoc5drHVG8hcPRvDEN/wRtCijnOJMikNEW4w2E=; b=b8hBeRx+G04qE2oTpdCb2tt0ShCVWd26YE1jRNEbFG37rnSbV67dwJAStvS9exmxa6M/KK p1UPoBfJ75k3Y6D+MK0TqrqfLTWf037WBQwgWRfYA67hkYg7wu+qtYng4cdaxJZn5vA1bK EnMS/7zph4IPl8hWvtxGLUn5WGrXUPqFRiW2NE0HGlT6FrQAlasEBDcBKEZm1dQxS+cXaq lZG2gbuXFhImimlAQQ1PPC2aXrrsOdGRNRsn07zCh8HXKzVNZknlAKH04cWmg4A/6Q5bmn damq4wHr6rY6wtYNB9/3oNw+v55UHeHPTLZcxVH19kG08Mix+NbCdks3G6H1cg== From: Zane van Iperen To: ffmpeg-devel@ffmpeg.org Date: Wed, 24 Mar 2021 00:12:55 +1000 Message-Id: <20210323141305.19229-1-zane@zanevaniperen.com> MIME-Version: 1.0 X-Migadu-Flow: FLOW_OUT X-Migadu-Auth-User: git-morningstar@zanevaniperen.com Subject: [FFmpeg-devel] [PATCH 01/11] avcodec/adpcm: add comment to has_status field X-BeenThere: ffmpeg-devel@ffmpeg.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: FFmpeg development discussions and patches List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Reply-To: FFmpeg development discussions and patches Cc: Zane van Iperen Errors-To: ffmpeg-devel-bounces@ffmpeg.org Sender: "ffmpeg-devel" Signed-off-by: Zane van Iperen --- libavcodec/adpcm.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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)