This is an automated email from the git hooks/post-receive script.
Git pushed a commit to branch master
in repository ffmpeg.
The following commit(s) were added to refs/heads/master by this push:
new 6b3e0f903e vulkan_encode: Fix description for quality option
6b3e0f903e is described below
commit 6b3e0f903e0888d5485d9da68dbb91e0fb0217ea
Author: David Rosca <[email protected]>
AuthorDate: Thu Apr 2 18:17:35 2026 +0200
Commit: michaelni <[email protected]>
CommitDate: Tue May 12 09:14:34 2026 +0000
vulkan_encode: Fix description for quality option
From spec:
Generally, using higher video encode quality levels may produce
higher quality video streams at the cost of additional processing time.
---
libavcodec/vulkan_encode.h | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/libavcodec/vulkan_encode.h b/libavcodec/vulkan_encode.h
index cf5f255628..23c35898c1 100644
--- a/libavcodec/vulkan_encode.h
+++ b/libavcodec/vulkan_encode.h
@@ -203,7 +203,7 @@ typedef struct FFVulkanEncodeContext {
#define VULKAN_ENCODE_COMMON_OPTIONS \
{ "qp", "Use an explicit constant quantizer for the whole stream",
OFFSET(common.opts.qp), AV_OPT_TYPE_INT, { .i64 = -1 }, -1, 255, FLAGS }, \
- { "quality", "Set encode quality (trades off against speed, higher is
faster)", OFFSET(common.opts.quality), AV_OPT_TYPE_INT, { .i64 = 0 }, 0,
INT_MAX, FLAGS }, \
+ { "quality", "Set encode quality (trades off against speed, higher is
slower)", OFFSET(common.opts.quality), AV_OPT_TYPE_INT, { .i64 = 0 }, 0,
INT_MAX, FLAGS }, \
{ "rc_mode", "Select rate control type", OFFSET(common.opts.rc_mode),
AV_OPT_TYPE_INT, { .i64 = FF_VK_RC_MODE_AUTO }, 0, FF_VK_RC_MODE_AUTO, FLAGS,
"rc_mode" }, \
{ "auto", "Choose mode automatically based on parameters", 0,
AV_OPT_TYPE_CONST, { .i64 = FF_VK_RC_MODE_AUTO }, INT_MIN, INT_MAX, FLAGS,
"rc_mode" }, \
{ "driver", "Driver-specific rate control", 0, AV_OPT_TYPE_CONST, {
.i64 = VK_VIDEO_ENCODE_RATE_CONTROL_MODE_DEFAULT_KHR }, INT_MIN, INT_MAX,
FLAGS, "rc_mode" }, \
_______________________________________________
ffmpeg-cvslog mailing list -- [email protected]
To unsubscribe send an email to [email protected]