The branch, master has been updated
       via  0a4bd6cc239e2990746f194f50ef47e132deb888 (commit)
      from  909d71322a0694b1158a046d531f2d60c680af4d (commit)


- Log -----------------------------------------------------------------
commit 0a4bd6cc239e2990746f194f50ef47e132deb888
Author:     xin.guo <[email protected]>
AuthorDate: Tue Oct 28 11:43:58 2025 +0800
Commit:     Lynne <[email protected]>
CommitDate: Tue Oct 28 06:12:36 2025 +0000

    avcodec/h264_vulkan: Fix param error in set_sps
    
    Signed-off-by: xin.guo <[email protected]>

diff --git a/libavcodec/vulkan_h264.c b/libavcodec/vulkan_h264.c
index ebe305e7b5..bcc5c99b4b 100644
--- a/libavcodec/vulkan_h264.c
+++ b/libavcodec/vulkan_h264.c
@@ -195,7 +195,7 @@ static void set_sps(const SPS *sps,
             .video_signal_type_present_flag = 
sps->vui.video_signal_type_present_flag,
             .video_full_range_flag = sps->vui.video_full_range_flag,
             .color_description_present_flag = 
sps->vui.colour_description_present_flag,
-            .chroma_loc_info_present_flag = sps->vui.chroma_location,
+            .chroma_loc_info_present_flag = 
sps->vui.chroma_loc_info_present_flag,
             .timing_info_present_flag = sps->timing_info_present_flag,
             .fixed_frame_rate_flag = sps->fixed_frame_rate_flag,
             .bitstream_restriction_flag = sps->bitstream_restriction_flag,

-----------------------------------------------------------------------

Summary of changes:
 libavcodec/vulkan_h264.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)


hooks/post-receive
-- 

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

Reply via email to