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 8f9700bff0 avcodec/d3d12va_encode_h264: simplify deblock option to 
bool type
8f9700bff0 is described below

commit 8f9700bff04ad7456846cc519d9be1f8bc63440a
Author:     Zhao Zhili <[email protected]>
AuthorDate: Fri Jan 16 17:27:13 2026 +0800
Commit:     Zhao Zhili <[email protected]>
CommitDate: Mon Jan 19 09:14:06 2026 +0000

    avcodec/d3d12va_encode_h264: simplify deblock option to bool type
    
    Signed-off-by: Zhao Zhili <[email protected]>
---
 libavcodec/d3d12va_encode_h264.c | 5 +----
 1 file changed, 1 insertion(+), 4 deletions(-)

diff --git a/libavcodec/d3d12va_encode_h264.c b/libavcodec/d3d12va_encode_h264.c
index 6c9444e9dd..a40db145fc 100644
--- a/libavcodec/d3d12va_encode_h264.c
+++ b/libavcodec/d3d12va_encode_h264.c
@@ -629,10 +629,7 @@ static const AVOption d3d12va_encode_h264_options[] = {
 #undef LEVEL
 
     { "deblock", "Deblocking filter mode",
-      OFFSET(deblock), AV_OPT_TYPE_INT, { .i64 = -1 }, -1, 1, FLAGS, "deblock" 
},
-        { "auto",    "Default (enabled)",         0, AV_OPT_TYPE_CONST, { .i64 
= -1 }, 0, 0, FLAGS, "deblock" },
-        { "disable", "Disable deblocking filter", 0, AV_OPT_TYPE_CONST, { .i64 
= 0 },  0, 0, FLAGS, "deblock" },
-        { "enable",  "Enable deblocking filter",  0, AV_OPT_TYPE_CONST, { .i64 
= 1 },  0, 0, FLAGS, "deblock" },
+      OFFSET(deblock), AV_OPT_TYPE_BOOL, { .i64 = -1 }, -1, 1, FLAGS },
 
     { NULL },
 };

_______________________________________________
ffmpeg-cvslog mailing list -- [email protected]
To unsubscribe send an email to [email protected]

Reply via email to