This is an automated email from the git hooks/post-receive script.

Git pushed a commit to branch master
in repository ffmpeg.

commit e2c335ab5c81bad21a641979feaaafae8c894d16
Author:     Lynne <[email protected]>
AuthorDate: Mon Aug 10 14:46:31 2026 +0900
Commit:     Lynne <[email protected]>
CommitDate: Sat Aug 15 18:02:17 2026 +0900

    vulkan_encode_h264: fix the high444p profile value
    
    It was set to High 10, which no Vulkan profile enum maps to, breaking
    both the option and >8bpc profile probing.
---
 libavcodec/vulkan_encode_h264.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/libavcodec/vulkan_encode_h264.c b/libavcodec/vulkan_encode_h264.c
index a35fd6cf07..cdc1bd8aa8 100644
--- a/libavcodec/vulkan_encode_h264.c
+++ b/libavcodec/vulkan_encode_h264.c
@@ -702,7 +702,7 @@ static int init_profile(AVCodecContext *avctx,
         AV_PROFILE_H264_CONSTRAINED_BASELINE,
         AV_PROFILE_H264_MAIN,
         AV_PROFILE_H264_HIGH,
-        AV_PROFILE_H264_HIGH_10,
+        AV_PROFILE_H264_HIGH_444_PREDICTIVE,
     };
     int nb_profiles = FF_ARRAY_ELEMS(known_profiles);
 
@@ -1599,7 +1599,7 @@ static const AVOption vulkan_encode_h264_options[] = {
     { PROFILE("constrained_baseline", AV_PROFILE_H264_CONSTRAINED_BASELINE) },
     { PROFILE("main",                 AV_PROFILE_H264_MAIN) },
     { PROFILE("high",                 AV_PROFILE_H264_HIGH) },
-    { PROFILE("high444p",             AV_PROFILE_H264_HIGH_10) },
+    { PROFILE("high444p",             AV_PROFILE_H264_HIGH_444_PREDICTIVE) },
 #undef PROFILE
 
     { "level", "Set level (level_idc)",

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

Reply via email to