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 EF2404A668 for ; Sat, 4 May 2024 23:52:21 +0000 (UTC) Received: from [127.0.1.1] (localhost [127.0.0.1]) by ffbox0-bg.mplayerhq.hu (Postfix) with ESMTP id 6A3DE68D57E; Sun, 5 May 2024 02:52:10 +0300 (EEST) Received: from relay3-d.mail.gandi.net (relay3-d.mail.gandi.net [217.70.183.195]) by ffbox0-bg.mplayerhq.hu (Postfix) with ESMTPS id 1FFCB68D56E for ; Sun, 5 May 2024 02:52:03 +0300 (EEST) Received: by mail.gandi.net (Postfix) with ESMTPSA id 4B28360006 for ; Sat, 4 May 2024 23:52:02 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=niedermayer.cc; s=gm1; t=1714866722; 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=G2y3ZM0w+rpWnZAIuS9aEjvexg4D1fxH+NOHB8xv0Qs=; b=lsxhchuJIDP1a1EXFQ6aZnu+IddSlfqlwUh7Sk+RAKD7P7hyKGb+6cvGAc2fy2S1LStEKB 0HxtZNLPxhuwJ2BblJS2DM43S8zCYd0t/3OjOTm60xZ0QXbHoRaTLKC9jlfmm72TF6juqH h3ZBYlJvvj9eFZSbwgDEsP2CeMOp4SobNlQI4WRqB0/sCMDTwbK/dq6nqIOy3lYFRncfL8 KdKwpxMLKPOObw21naj/aqD3GiiC+bCZdlRaFElziRL9EaxVksMof6e85bRAnxuZS5JNdZ sMAMWWQhuJZ+2d7Xqjb3FB311e8fUzh6FnvSeNZEh7O7RuAnAHOy5OUIcBy7KQ== From: Michael Niedermayer To: FFmpeg development discussions and patches Date: Sun, 5 May 2024 01:52:00 +0200 Message-ID: <20240504235200.2875183-2-michael@niedermayer.cc> X-Mailer: git-send-email 2.43.2 In-Reply-To: <20240504235200.2875183-1-michael@niedermayer.cc> References: <20240504235200.2875183-1-michael@niedermayer.cc> MIME-Version: 1.0 X-GND-Sasl: michael@niedermayer.cc Subject: [FFmpeg-devel] [PATCH 2/2] avcodec/fmvc: remove dead assignment 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: CID1529220 Unused value Sponsored-by: Sovereign Tech Fund Signed-off-by: Michael Niedermayer --- libavcodec/fmvc.c | 1 - 1 file changed, 1 deletion(-) diff --git a/libavcodec/fmvc.c b/libavcodec/fmvc.c index 30f7aaf6bc3..b51b18a9eec 100644 --- a/libavcodec/fmvc.c +++ b/libavcodec/fmvc.c @@ -101,7 +101,6 @@ static int decode_type2(GetByteContext *gb, PutByteContext *pb) continue; } } - repeat = 0; } repeat = 1; } -- 2.43.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".