mirror of
https://github.com/nyanmisaka/ffmpeg-rockchip.git
synced 2025-10-09 02:30:45 +08:00
h264_direct: constify all uses of H264Context
All the variables modified by this code are either per-MB arrays or have been moved to the per-slice context
This commit is contained in:
@@ -825,9 +825,9 @@ void ff_h264_init_cabac_states(H264Context *h, H264SliceContext *sl);
|
||||
|
||||
void h264_init_dequant_tables(H264Context *h);
|
||||
|
||||
void ff_h264_direct_dist_scale_factor(H264Context *const h, H264SliceContext *sl);
|
||||
void ff_h264_direct_ref_list_init(H264Context *const h, H264SliceContext *sl);
|
||||
void ff_h264_pred_direct_motion(H264Context *const h, H264SliceContext *sl,
|
||||
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);
|
||||
void ff_h264_pred_direct_motion(const H264Context *const h, H264SliceContext *sl,
|
||||
int *mb_type);
|
||||
|
||||
void ff_h264_filter_mb_fast(H264Context *h, H264SliceContext *sl, int mb_x, int mb_y,
|
||||
|
Reference in New Issue
Block a user