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 9DD41434CA for ; Thu, 13 Oct 2022 08:30:18 +0000 (UTC) Received: from [127.0.1.1] (localhost [127.0.0.1]) by ffbox0-bg.mplayerhq.hu (Postfix) with ESMTP id 29FC268BD41; Thu, 13 Oct 2022 11:30:12 +0300 (EEST) Received: from mga04.intel.com (mga04.intel.com [192.55.52.120]) by ffbox0-bg.mplayerhq.hu (Postfix) with ESMTPS id 3846368BC41 for ; Thu, 13 Oct 2022 11:30:05 +0300 (EEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1665649810; x=1697185810; h=from:to:subject:date:message-id:in-reply-to:references: mime-version:content-transfer-encoding; bh=5W8UthI1NBkAzeWqcOH2zSd4DEWyP1+q5q3yHmTBTa8=; b=SOKWogsHk1QyJ9IEjEQnIq9+RSygGlSgnUe3FPPVX8ie9dpg4+rvdLqA zFwgxgsVSehV37N0s77FF76WLlvYS3AVNyS0Ytapjw7pXr0lZE26fDztq mDM5orDP/JKcc60lPK9V0NiGjNyxYV1DeIFe+aOOP34vkksOZqIbLLyMP BUiWZ/O6GOraWg2+p8mwv3EcwrJwENAzS8ag5sKTS9DjrZCFRxj3W4Q32 tFkUrRHuIK9TEtC5Xgzrgo/7jUVolBghFlhMfaPUlC5PA4tlTf2Hl0SMR TtrD0xGOypdNwJV0lN6aYRnuIv6r2/QSP0tvkoc6wa0ONoWO8A7u8++Zx A==; X-IronPort-AV: E=McAfee;i="6500,9779,10498"; a="303760630" X-IronPort-AV: E=Sophos;i="5.95,180,1661842800"; d="scan'208";a="303760630" Received: from orsmga008.jf.intel.com ([10.7.209.65]) by fmsmga104.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 13 Oct 2022 01:29:58 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=McAfee;i="6500,9779,10498"; a="658095404" X-IronPort-AV: E=Sophos;i="5.95,180,1661842800"; d="scan'208";a="658095404" Received: from wenbin-z390-aorus-ultra.sh.intel.com ([10.239.35.4]) by orsmga008.jf.intel.com with ESMTP; 13 Oct 2022 01:29:57 -0700 From: wenbin.chen-at-intel.com@ffmpeg.org To: ffmpeg-devel@ffmpeg.org Date: Thu, 13 Oct 2022 16:25:24 +0800 Message-Id: <20221013082524.47409-2-wenbin.chen@intel.com> X-Mailer: git-send-email 2.34.1 In-Reply-To: <20221013082524.47409-1-wenbin.chen@intel.com> References: <20221013082524.47409-1-wenbin.chen@intel.com> MIME-Version: 1.0 Subject: [FFmpeg-devel] [PATCH 2/2] doc/encoders: Add doc for av1_qsv 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: From: Wenbin Chen Add doc for av1_qsv. Signed-off-by: Wenbin Chen --- doc/encoders.texi | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) diff --git a/doc/encoders.texi b/doc/encoders.texi index 1a5216f8eb..53dd02fd28 100644 --- a/doc/encoders.texi +++ b/doc/encoders.texi @@ -3775,6 +3775,38 @@ Number of columns for tiled encoding (requires libmfx >= 1.29). Number of rows for tiled encoding (requires libmfx >= 1.29). @end table +@subsection AV1 Options +These options are used by av1_qsv (requires libvpl). +@table @option +@item @var{profile} +@table @samp +@item unknown +@item main +@end table + +@item @var{tile_cols} +Number of columns for tiled encoding. + +@item @var{tile_rows} +Number of rows for tiled encoding. + +@item @var{adaptive_i} +This flag controls insertion of I frames by the QSV encoder. Turn ON this flag +to allow changing of frame type from P and B to I. + +@item @var{adaptive_b} +This flag controls changing of frame type from B to P. + +@item @var{b_strategy} +This option controls usage of B frames as reference. + +@item @var{extbrc} +Extended bitrate control. + +@item @var{look_ahead_depth} +Depth of look ahead in number frames, available when extbrc option is enabled. +@end table + @section snow @subsection Options -- 2.34.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".