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 ESMTPS id 5A60240054 for ; Sat, 18 Jan 2025 05:00:25 +0000 (UTC) Received: from [127.0.1.1] (localhost [127.0.0.1]) by ffbox0-bg.mplayerhq.hu (Postfix) with ESMTP id 781A168B7D2; Sat, 18 Jan 2025 07:00:10 +0200 (EET) 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 3BCE668B74D for ; Sat, 18 Jan 2025 07:00:03 +0200 (EET) Received: by mail.gandi.net (Postfix) with ESMTPSA id 955B660005 for ; Sat, 18 Jan 2025 05:00:02 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=niedermayer.cc; s=gm1; t=1737176402; 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=i4s78t1lxSN00lJG7C13bUzzzX2UizmX+GtosnzJ1aU=; b=BT6eF/9gwSOcTDbMEzDMpQhWUUfbQWksEc9cnxakUEFGFP3ON6GX0N7OpcthvJ3ebVOftR TY1ePN/mqz4z4owKdGddOqlOgFOV8mkh+drqFmr9mzZmChvw2JfZTA27OUxOGekJUsaqXp jcYHc2OlnIeQiXIZoTB8sEHUtoslWIQZYjMG0cQ6dHr+Dt139jRl3Q6W3x+EQ1mlbRISYk HwdmIRJKXP622bnXtekN3VZChp//90IsiTYt3j5v8Dk36QK7lk+N/HjywHMQLPJN6deW3s qTYgTTnZJuaBsjO45qXEZZJ9qpZiHrtxjeHkOnqDngF2f6WL8NTnZ/FQULK+fg== From: Michael Niedermayer To: FFmpeg development discussions and patches Date: Sat, 18 Jan 2025 05:59:58 +0100 Message-ID: <20250118050001.1809058-2-michael@niedermayer.cc> X-Mailer: git-send-email 2.48.1 In-Reply-To: <20250118050001.1809058-1-michael@niedermayer.cc> References: <20250118050001.1809058-1-michael@niedermayer.cc> MIME-Version: 1.0 X-GND-Sasl: michael@niedermayer.cc Subject: [FFmpeg-devel] [PATCH 2/4] avcodec/ffv1enc: dont reset version 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: resetting the version causes any previously set values to be disregarded Signed-off-by: Michael Niedermayer --- libavcodec/ffv1enc.c | 1 - 1 file changed, 1 deletion(-) diff --git a/libavcodec/ffv1enc.c b/libavcodec/ffv1enc.c index c6f450ae6c0..c952065e443 100644 --- a/libavcodec/ffv1enc.c +++ b/libavcodec/ffv1enc.c @@ -914,7 +914,6 @@ static int encode_init_internal(AVCodecContext *avctx) } } - s->version = 0; ret = ff_ffv1_encode_init(avctx); if (ret < 0) -- 2.48.1 _______________________________________________ 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".