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 ACA844A785 for ; Mon, 6 May 2024 17:19:58 +0000 (UTC) Received: from [127.0.1.1] (localhost [127.0.0.1]) by ffbox0-bg.mplayerhq.hu (Postfix) with ESMTP id B23D168D693; Mon, 6 May 2024 20:19:56 +0300 (EEST) Received: from btbn.de (btbn.de [144.76.60.213]) by ffbox0-bg.mplayerhq.hu (Postfix) with ESMTPS id 90F0A68D673 for ; Mon, 6 May 2024 20:19:50 +0300 (EEST) Received: from [authenticated] by btbn.de (Postfix) with ESMTPSA id BA26127FFD67D for ; Mon, 6 May 2024 19:19:49 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=rothenpieler.org; s=mail; t=1715015989; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:mime-version:mime-version:content-type:content-type: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=d4W5eH14llNuD9IuibRqT7c3AZftIuB0+a6bzDuF5R8=; b=Y6r+NmqXp6Fx9OmTPdos8wFiv/HfdYrNi8eYtTzmT/gPT2E8n9Sq9g4GZryj2vxUWybq7E 2DrdlMM06r7xJrXc7sq8WcEdr0DsKVAI4bEi1PQGuCwJmt9caMV13qfPKtRyFeToDUl2oy cAxTLnUDjyPTAxxED9tBFbsvvouEW7PULtMBA7/mf8F1GlxxYrBKVl60zQnYiMG+JlWqzm 31PxRQCH0wyMCfPcUVdCf3cSujoGrUr3ebWXDRiLDkEKvEQLQ666rYMWD/YfHildjY6Rgy iYUJqEF6W6Z1Zbjr2TXp95HFADWNo6XpFM0d5j6GvdmwXlVTp6SKsgMiQTe9ig== Message-ID: Date: Mon, 6 May 2024 19:19:49 +0200 MIME-Version: 1.0 User-Agent: Mozilla Thunderbird To: ffmpeg-devel@ffmpeg.org References: <20240427153034.990042-1-sw@jkqxz.net> <20240427153034.990042-4-sw@jkqxz.net> Content-Language: en-US From: Timo Rothenpieler In-Reply-To: <20240427153034.990042-4-sw@jkqxz.net> Subject: Re: [FFmpeg-devel] [PATCH 4/6] nvdec_av1: Use av1dec force_integer_mv value 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-Transfer-Encoding: 7bit Content-Type: text/plain; charset="us-ascii"; Format="flowed" Errors-To: ffmpeg-devel-bounces@ffmpeg.org Sender: "ffmpeg-devel" Archived-At: List-Archive: List-Post: On 27.04.2024 17:30, Mark Thompson wrote: > --- > libavcodec/nvdec_av1.c | 4 +--- > 1 file changed, 1 insertion(+), 3 deletions(-) > > diff --git a/libavcodec/nvdec_av1.c b/libavcodec/nvdec_av1.c > index 4efa420e66..8a46db1ed5 100644 > --- a/libavcodec/nvdec_av1.c > +++ b/libavcodec/nvdec_av1.c > @@ -106,9 +106,7 @@ static int nvdec_av1_start_frame(AVCodecContext *avctx, const uint8_t *buffer, u > .show_frame = frame_header->show_frame, > .disable_cdf_update = frame_header->disable_cdf_update, > .allow_screen_content_tools = frame_header->allow_screen_content_tools, > - .force_integer_mv = frame_header->force_integer_mv || > - frame_header->frame_type == AV1_FRAME_INTRA_ONLY || > - frame_header->frame_type == AV1_FRAME_KEY, > + .force_integer_mv = s->cur_frame.force_integer_mv; that ";" should be a "," Works fine with that fixed. > .coded_denom = frame_header->coded_denom, > .allow_intrabc = frame_header->allow_intrabc, > .allow_high_precision_mv = frame_header->allow_high_precision_mv, _______________________________________________ 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".