From 1e36478b0f298e37e1c86bf9ce585b20ace69b03 Mon Sep 17 00:00:00 2001 From: Jan Schmidt Date: Sat, 29 Jun 2019 00:08:40 +1000 Subject: [PATCH] h264: Update for parse_vui_params parameter removal. Update calls to the h264 parser lib for removal of the parse_vui_params parameter. --- gst-libs/gst/vaapi/gstvaapidecoder_h264.c | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/gst-libs/gst/vaapi/gstvaapidecoder_h264.c b/gst-libs/gst/vaapi/gstvaapidecoder_h264.c index fb4c549..f784969 100644 --- a/gst-libs/gst/vaapi/gstvaapidecoder_h264.c +++ b/gst-libs/gst/vaapi/gstvaapidecoder_h264.c @@ -1766,7 +1766,7 @@ parse_sps (GstVaapiDecoderH264 * decoder, GstVaapiDecoderUnit * unit) standard but that should get a default value anyway */ sps->log2_max_pic_order_cnt_lsb_minus4 = 0; - result = gst_h264_parser_parse_sps (priv->parser, &pi->nalu, sps, TRUE); + result = gst_h264_parser_parse_sps (priv->parser, &pi->nalu, sps); if (result != GST_H264_PARSER_OK) return get_status (result); @@ -1788,8 +1788,7 @@ parse_subset_sps (GstVaapiDecoderH264 * decoder, GstVaapiDecoderUnit * unit) standard but that should get a default value anyway */ sps->log2_max_pic_order_cnt_lsb_minus4 = 0; - result = gst_h264_parser_parse_subset_sps (priv->parser, &pi->nalu, sps, - TRUE); + result = gst_h264_parser_parse_subset_sps (priv->parser, &pi->nalu, sps); if (result != GST_H264_PARSER_OK) return get_status (result); -- 2.7.4