From 799d7b7d0e931e7b0f478821ee31a0c6442bb510 Mon Sep 17 00:00:00 2001 From: Gwenole Beauchesne Date: Fri, 13 Jun 2014 11:36:56 +0200 Subject: [PATCH] decoder: h264: cope with new gst_h264_quant_matrix_*() interfaces. New gst_h264_quant_matrix_*_get_raster_from_zigzag() were renamed from gst_h264_video_quant_matrix_*_get_raster_from_zigzag(). --- gst-libs/gst/vaapi/gstvaapidecoder_h264.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gst-libs/gst/vaapi/gstvaapidecoder_h264.c b/gst-libs/gst/vaapi/gstvaapidecoder_h264.c index d8219e8..82b8d15 100644 --- a/gst-libs/gst/vaapi/gstvaapidecoder_h264.c +++ b/gst-libs/gst/vaapi/gstvaapidecoder_h264.c @@ -1380,7 +1380,7 @@ fill_iq_matrix_4x4(VAIQMatrixBufferH264 *iq_matrix, const GstH264PPS *pps, g_assert(G_N_ELEMENTS(iq_matrix->ScalingList4x4[0]) == 16); for (i = 0; i < G_N_ELEMENTS(iq_matrix->ScalingList4x4); i++) - gst_h264_video_quant_matrix_4x4_get_raster_from_zigzag( + gst_h264_quant_matrix_4x4_get_raster_from_zigzag( iq_matrix->ScalingList4x4[i], pps->scaling_lists_4x4[i]); } @@ -1399,7 +1399,7 @@ fill_iq_matrix_8x8(VAIQMatrixBufferH264 *iq_matrix, const GstH264PPS *pps, n = (sps->chroma_format_idc != 3) ? 2 : 6; for (i = 0; i < n; i++) { - gst_h264_video_quant_matrix_8x8_get_raster_from_zigzag( + gst_h264_quant_matrix_8x8_get_raster_from_zigzag( iq_matrix->ScalingList8x8[i], pps->scaling_lists_8x8[i]); } } -- 2.7.4