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 EBB9E4B6FA for ; Tue, 11 Jun 2024 21:59:26 +0000 (UTC) Received: from [127.0.1.1] (localhost [127.0.0.1]) by ffbox0-bg.mplayerhq.hu (Postfix) with ESMTP id 23ACD68D8DC; Wed, 12 Jun 2024 00:59:17 +0300 (EEST) Received: from relay7-d.mail.gandi.net (relay7-d.mail.gandi.net [217.70.183.200]) by ffbox0-bg.mplayerhq.hu (Postfix) with ESMTPS id F295E68D876 for ; Wed, 12 Jun 2024 00:59:10 +0300 (EEST) Received: by mail.gandi.net (Postfix) with ESMTPSA id 6215C20003 for ; Tue, 11 Jun 2024 21:59:10 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=niedermayer.cc; s=gm1; t=1718143150; 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=RTaZI6nf7MsqgqxrnqSnx3hW+kpW+I3aAS81BzSWCaw=; b=pUGjMEezEcu+gR5ZM0N+qfAc629KDtWg/wjWaYh2fs0le+btNoReGxWckt5k6HB8WZ6/dk pLVtfg41VHR6dkhC4RZbFNqDztnZVvTStEnE3eogGkml6HVl0Md/H4nabEgNwSOTue65FS gRDqMQmvrWH7sS/vPD/s8xVHHZIDvFsDvfd8Qhz2naVnkMQSq2MMHXHN0trQHnMtZkJgP1 E6CdsQObM3FvoLZrGEhvY3+ECT6kzzjQVN18op2/CxvL4mbB1mH6KzmzO04I0gVV/W7awJ TycyEk67tDUCCOolTnQ1x3RbVxx7dXiOIYUh/kK51GiBWuWSER+WyN0fk9smjw== From: Michael Niedermayer To: FFmpeg development discussions and patches Date: Tue, 11 Jun 2024 23:59:04 +0200 Message-ID: <20240611215906.1106071-2-michael@niedermayer.cc> X-Mailer: git-send-email 2.45.2 In-Reply-To: <20240611215906.1106071-1-michael@niedermayer.cc> References: <20240611215906.1106071-1-michael@niedermayer.cc> MIME-Version: 1.0 X-GND-Sasl: michael@niedermayer.cc Subject: [FFmpeg-devel] [PATCH 2/4] avfilter/drawutils: Fix depthb computation 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: Fixes: CID1496940 Logically dead code Sponsored-by: Sovereign Tech Fund Signed-off-by: Michael Niedermayer --- libavfilter/drawutils.c | 1 + 1 file changed, 1 insertion(+) diff --git a/libavfilter/drawutils.c b/libavfilter/drawutils.c index 1081938d867..95525d38b40 100644 --- a/libavfilter/drawutils.c +++ b/libavfilter/drawutils.c @@ -61,6 +61,7 @@ int ff_fill_rgba_map(uint8_t *rgba_map, enum AVPixelFormat pix_fmt) had0 |= pos == 0; rgba_map[i] = pos; + depthb = db; } if (desc->nb_components == 3) -- 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".