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 93BD2492AE for ; Fri, 8 Mar 2024 00:55:06 +0000 (UTC) Received: from [127.0.1.1] (localhost [127.0.0.1]) by ffbox0-bg.mplayerhq.hu (Postfix) with ESMTP id 79B0A68CDA0; Fri, 8 Mar 2024 02:54:12 +0200 (EET) Received: from mgamail.intel.com (mgamail.intel.com [192.198.163.18]) by ffbox0-bg.mplayerhq.hu (Postfix) with ESMTPS id 6D20A68CCAA for ; Fri, 8 Mar 2024 02:54:04 +0200 (EET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1709859250; x=1741395250; h=from:to:cc:subject:date:message-id:in-reply-to: references:mime-version:content-transfer-encoding; bh=14pHLai0YYA7WNxUaoo8PpxOSHDmx7V3xKIAnihpQy4=; b=EohCInERuNN35HQaiFYYeY/vmhIO0bwIzFmJmhOqYBbIT5Nc91htxd7x h2TWXzpdrcAQ1L16nMhQCyVxpO8H7WlZBfk7Jllekwk1cWWLNu1q1sg0d xoIFsqVBop9SpbHWoCOGVV9fAdT4m20PeJO77qnB0BS4f19pQqMt/jqG9 VyUzPz3f/elBhdSnSU5vJ5NduQ1/OZTcsVkQhFLedi60wa+cJswL+59d+ HoQBpcESoB1A+subya7JJpvIAyjuF60TIi97JWp77BOWGo32UK4L9hJZs exErtQ8uHIi+rsRWU2KMs6INcox86XU+LnU9HAhSG3/LZ86lKGkvwWYLF g==; X-IronPort-AV: E=McAfee;i="6600,9927,11006"; a="4409166" X-IronPort-AV: E=Sophos;i="6.07,107,1708416000"; d="scan'208";a="4409166" Received: from orviesa010.jf.intel.com ([10.64.159.150]) by fmvoesa112.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 07 Mar 2024 16:53:56 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="6.07,108,1708416000"; d="scan'208";a="10275615" Received: from t-dg2.sh.intel.com ([10.239.159.57]) by orviesa010.jf.intel.com with ESMTP; 07 Mar 2024 16:53:56 -0800 From: fei.w.wang-at-intel.com@ffmpeg.org To: ffmpeg-devel@ffmpeg.org Date: Fri, 8 Mar 2024 08:55:31 +0800 Message-Id: <20240308005531.1757078-2-fei.w.wang@intel.com> X-Mailer: git-send-email 2.25.1 In-Reply-To: <20240308005531.1757078-1-fei.w.wang@intel.com> References: <20240308005531.1757078-1-fei.w.wang@intel.com> MIME-Version: 1.0 Subject: [FFmpeg-devel] [PATCH v1 2/2] lavc/vvc_ps: Correct NoOutputBeforeRecoveryFlag of IDR 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 Cc: fei.w.wang@intel.com 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: From: Fei Wang Signed-off-by: Fei Wang --- libavcodec/vvc/vvc_ps.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavcodec/vvc/vvc_ps.c b/libavcodec/vvc/vvc_ps.c index e6e46d2039..7972803da6 100644 --- a/libavcodec/vvc/vvc_ps.c +++ b/libavcodec/vvc/vvc_ps.c @@ -742,7 +742,7 @@ static int decode_frame_ps(VVCFrameParamSets *fps, const VVCParamSets *ps, static void decode_recovery_flag(VVCContext *s) { if (IS_IDR(s)) - s->no_output_before_recovery_flag = 0; + s->no_output_before_recovery_flag = 1; else if (IS_CRA(s) || IS_GDR(s)) s->no_output_before_recovery_flag = s->last_eos; } -- 2.25.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".