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 709CB43DB9 for ; Wed, 8 Feb 2023 06:26:43 +0000 (UTC) Received: from [127.0.1.1] (localhost [127.0.0.1]) by ffbox0-bg.mplayerhq.hu (Postfix) with ESMTP id 46F3468BDDD; Wed, 8 Feb 2023 08:26:40 +0200 (EET) Received: from mga04.intel.com (mga04.intel.com [192.55.52.120]) by ffbox0-bg.mplayerhq.hu (Postfix) with ESMTPS id 9417468BD35 for ; Wed, 8 Feb 2023 08:26:33 +0200 (EET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1675837598; x=1707373598; h=from:to:cc:subject:date:message-id; bh=7WTlFeg71rVSL9xpoqEIR68lEkOC43SJ00ZEJICKh9M=; b=k6rzlVBN28uhkEZyHhCdLGkvvX+x8C5cFDiqivS5ZWdryZkHl7ElZB2f 1PqXPnqn491Ya8ELi0itCI2nkZZg6iCcUMjxl30J2ghCKj5zLdum91yNO SBJOpuuiRh9uOVFhrp8NFeEjIb+2pyf4M7WV9ZkCBIyjMxC9vUIxu9FTX Js08BQBYH2zDRNVFen9Z2/8ZNF0CeGAvCWkhM+Y0dh+CBqL3u0DQl5BnA IwOvxOfEBmYESvR0HymAaJx38wsMVey3BliIwagmaERfwXKPRO7ly6mKg jmJBID5JRdycKxpO5PZ+1qRGD+3Le3lBjun35Irr1IzVB0308+0fU7+Lr w==; X-IronPort-AV: E=McAfee;i="6500,9779,10614"; a="328378420" X-IronPort-AV: E=Sophos;i="5.97,280,1669104000"; d="scan'208";a="328378420" Received: from fmsmga003.fm.intel.com ([10.253.24.29]) by fmsmga104.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 07 Feb 2023 22:26:30 -0800 X-IronPort-AV: E=McAfee;i="6500,9779,10614"; a="755924660" X-IronPort-AV: E=Sophos;i="5.97,280,1669104000"; d="scan'208";a="755924660" Received: from xhh-dg164.sh.intel.com ([10.238.5.169]) by fmsmga003-auth.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 07 Feb 2023 22:26:29 -0800 From: "Xiang, Haihao" To: ffmpeg-devel@ffmpeg.org Date: Wed, 8 Feb 2023 14:26:18 +0800 Message-Id: <20230208062619.19496-1-haihao.xiang@intel.com> X-Mailer: git-send-email 2.17.1 Subject: [FFmpeg-devel] [PATCH 1/2] lavc/qsvenc: enlarge the maximum number of mfxPayload on mfxEncodeCtrl 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: Haihao Xiang MIME-Version: 1.0 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: Haihao Xiang The next commit and other commits in future may support more mfxPayload for encoding Signed-off-by: Haihao Xiang --- libavcodec/qsv_internal.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavcodec/qsv_internal.h b/libavcodec/qsv_internal.h index 5119ef4dff..3cc8a1bc95 100644 --- a/libavcodec/qsv_internal.h +++ b/libavcodec/qsv_internal.h @@ -50,7 +50,7 @@ #define ASYNC_DEPTH_DEFAULT 4 // internal parallelism -#define QSV_MAX_ENC_PAYLOAD 2 // # of mfxEncodeCtrl payloads supported +#define QSV_MAX_ENC_PAYLOAD 8 // # of mfxEncodeCtrl payloads supported #define QSV_MAX_ENC_EXTPARAM 8 // # of mfxEncodeCtrl extparam supported #define QSV_MAX_ROI_NUM 256 -- 2.17.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".