From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from ffbox0-bg.mplayerhq.hu (ffbox0-bg.ffmpeg.org [79.124.17.100]) by master.gitmailbox.com (Postfix) with ESMTP id 5FF9349A3D for ; Fri, 26 Jul 2024 21:09:02 +0000 (UTC) Received: from [127.0.1.1] (localhost [127.0.0.1]) by ffbox0-bg.mplayerhq.hu (Postfix) with ESMTP id 1472568D6F9; Sat, 27 Jul 2024 00:08:43 +0300 (EEST) Received: from relay1-d.mail.gandi.net (relay1-d.mail.gandi.net [217.70.183.193]) by ffbox0-bg.mplayerhq.hu (Postfix) with ESMTPS id 74F1468D634 for ; Sat, 27 Jul 2024 00:08:35 +0300 (EEST) Received: by mail.gandi.net (Postfix) with ESMTPSA id BA0D2240003 for ; Fri, 26 Jul 2024 21:08:34 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=niedermayer.cc; s=gm1; t=1722028114; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:mime-version:mime-version: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=6kzmdOTG9/pQpbO39rSjVKvydAByDK7yIEwshVNKCCs=; b=dEWrE/6Do7ZX2PjefbDIZ3+9sckIX8mQQJOZdbOyGmUytzOHI8QzxZS4ydgcIPHU2KnvZq X9RwwT+8SAUSFC6CiEd8IronB082eLle2HaHEisjEZOkWLcfai5oDOdy0kCLVzq/cBBiuk uRGCKSMGuMKEA7EFm77hkY/xiVZ1s/QZbAdfy68TqubXbCrHrkOexco9z08FK6Woclm1dm 1RIaNO1Cowm7Ghrj9edFoi08IJVMzMnk3LWuha/+WeY7Lvuwdo1UNv74JbWrS4S9KYIgu/ 4ztcfdx401/OUq/aLKIVn0pc0S1kITL1YD4Nbfqw/xsgcnfl9NsZykk5NGa5rA== From: Michael Niedermayer To: FFmpeg development discussions and patches Date: Fri, 26 Jul 2024 23:08:32 +0200 Message-ID: <20240726210832.288597-3-michael@niedermayer.cc> X-Mailer: git-send-email 2.45.2 In-Reply-To: <20240726210832.288597-1-michael@niedermayer.cc> References: <20240726210832.288597-1-michael@niedermayer.cc> MIME-Version: 1.0 X-GND-Sasl: michael@niedermayer.cc Subject: [FFmpeg-devel] [PATCH 3/3] avcodec/adpcm: Remove setting min_channel to value it is already set to X-BeenThere: ffmpeg-devel@ffmpeg.org X-Mailman-Version: 2.1.29 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 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Errors-To: ffmpeg-devel-bounces@ffmpeg.org Sender: "ffmpeg-devel" Archived-At: List-Archive: List-Post: Signed-off-by: Michael Niedermayer --- libavcodec/adpcm.c | 4 ---- 1 file changed, 4 deletions(-) diff --git a/libavcodec/adpcm.c b/libavcodec/adpcm.c index 8f9a8a8c8e2..6c53d0bcf39 100644 --- a/libavcodec/adpcm.c +++ b/libavcodec/adpcm.c @@ -260,10 +260,6 @@ static av_cold int adpcm_decode_init(AVCodecContext * avctx) case AV_CODEC_ID_ADPCM_IMA_AMV: max_channels = 1; break; - case AV_CODEC_ID_ADPCM_DTK: - case AV_CODEC_ID_ADPCM_EA: - min_channels = 1; - break; case AV_CODEC_ID_ADPCM_AFC: case AV_CODEC_ID_ADPCM_EA_R1: case AV_CODEC_ID_ADPCM_EA_R2: -- 2.45.2 _______________________________________________ ffmpeg-devel mailing list ffmpeg-devel@ffmpeg.org https://ffmpeg.org/mailman/listinfo/ffmpeg-devel To unsubscribe, visit link above, or email ffmpeg-devel-request@ffmpeg.org with subject "unsubscribe".