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

Git pushed a commit to branch master
in repository ffmpeg.

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

    vulkan_video: map the plain H264 baseline profile to a Vulkan profile
    
    The encoder maps the SPS profile_idc, which has the constraint set
    flags stripped, giving session parameters an invalid profile enum for
    constrained baseline.
---
 libavcodec/vulkan_video.c | 1 +
 1 file changed, 1 insertion(+)

diff --git a/libavcodec/vulkan_video.c b/libavcodec/vulkan_video.c
index 674a0fdc3b..f85cb3d4e9 100644
--- a/libavcodec/vulkan_video.c
+++ b/libavcodec/vulkan_video.c
@@ -260,6 +260,7 @@ StdVideoAV1Level ff_vk_av1_level_to_vk(int level)
 StdVideoH264ProfileIdc ff_vk_h264_profile_to_vk(int profile)
 {
     switch (profile) {
+    case AV_PROFILE_H264_BASELINE:
     case AV_PROFILE_H264_CONSTRAINED_BASELINE: return 
STD_VIDEO_H264_PROFILE_IDC_BASELINE;
     case AV_PROFILE_H264_MAIN: return STD_VIDEO_H264_PROFILE_IDC_MAIN;
     case AV_PROFILE_H264_HIGH: return STD_VIDEO_H264_PROFILE_IDC_HIGH;

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

Reply via email to