mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2025-01-31 11:53:24 +00:00
h264: Add missing ff_ prefix to internally visible h264_init_dequant_tables()
This commit is contained in:
parent
69a638019f
commit
061dc20351
@ -313,7 +313,7 @@ int ff_h264_alloc_tables(H264Context *h)
|
||||
}
|
||||
|
||||
if (!h->dequant4_coeff[0])
|
||||
h264_init_dequant_tables(h);
|
||||
ff_h264_init_dequant_tables(h);
|
||||
|
||||
return 0;
|
||||
|
||||
|
@ -829,7 +829,7 @@ int ff_h264_decode_mb_cabac(const H264Context *h, H264SliceContext *sl);
|
||||
|
||||
void ff_h264_init_cabac_states(const H264Context *h, H264SliceContext *sl);
|
||||
|
||||
void h264_init_dequant_tables(H264Context *h);
|
||||
void ff_h264_init_dequant_tables(H264Context *h);
|
||||
|
||||
void ff_h264_direct_dist_scale_factor(const H264Context *const h, H264SliceContext *sl);
|
||||
void ff_h264_direct_ref_list_init(const H264Context *const h, H264SliceContext *sl);
|
||||
|
@ -335,7 +335,7 @@ static void init_dequant4_coeff_table(H264Context *h)
|
||||
}
|
||||
}
|
||||
|
||||
void h264_init_dequant_tables(H264Context *h)
|
||||
void ff_h264_init_dequant_tables(H264Context *h)
|
||||
{
|
||||
int i, x;
|
||||
init_dequant4_coeff_table(h);
|
||||
@ -1194,7 +1194,7 @@ int ff_h264_decode_slice_header(H264Context *h, H264SliceContext *sl)
|
||||
|
||||
if (sl == h->slice_ctx && h->dequant_coeff_pps != pps_id) {
|
||||
h->dequant_coeff_pps = pps_id;
|
||||
h264_init_dequant_tables(h);
|
||||
ff_h264_init_dequant_tables(h);
|
||||
}
|
||||
|
||||
frame_num = get_bits(&sl->gb, h->sps.log2_max_frame_num);
|
||||
|
Loading…
Reference in New Issue
Block a user