mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-19 16:21:17 +00:00
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().
This commit is contained in:
parent
7fd8aa3ed0
commit
799d7b7d0e
1 changed files with 2 additions and 2 deletions
|
@ -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]);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue