diff options
author | Anton Khirnov <anton@khirnov.net> | 2015-01-27 15:53:33 +0100 |
---|---|---|
committer | Anton Khirnov <anton@khirnov.net> | 2015-03-21 11:27:14 +0100 |
commit | d27b8248a6ee7e64c68c46c23e00d703b9caa50c (patch) | |
tree | 73fa3ea8c1654667a7dd9026c40aa84afa2e70ff /libavcodec/h264.h | |
parent | f42485dbce614b3f63182845da43db690b427b7c (diff) | |
download | ffmpeg-d27b8248a6ee7e64c68c46c23e00d703b9caa50c.tar.gz |
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
Diffstat (limited to 'libavcodec/h264.h')
-rw-r--r-- | libavcodec/h264.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libavcodec/h264.h b/libavcodec/h264.h index 8483c1597f..adb378802a 100644 --- a/libavcodec/h264.h +++ b/libavcodec/h264.h @@ -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, |