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:15 +0100 |
commit | 6490a0c0fbe0e55f765ea2aa2e8495181ea1f719 (patch) | |
tree | 707fd334fb99c5a24a14858673d9113ebfd367f2 /libavcodec/h264.h | |
parent | 51822879e7732ee8175dad98dde1a135f6e5c1a4 (diff) | |
download | ffmpeg-6490a0c0fbe0e55f765ea2aa2e8495181ea1f719.tar.gz |
h264_mb: 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 | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/h264.h b/libavcodec/h264.h index 42bab1b4b2..57d21328f4 100644 --- a/libavcodec/h264.h +++ b/libavcodec/h264.h @@ -804,7 +804,7 @@ int ff_h264_check_intra4x4_pred_mode(H264Context *h, H264SliceContext *sl); int ff_h264_check_intra_pred_mode(H264Context *h, H264SliceContext *sl, int mode, int is_chroma); -void ff_h264_hl_decode_mb(H264Context *h, H264SliceContext *sl); +void ff_h264_hl_decode_mb(const H264Context *h, H264SliceContext *sl); int ff_h264_decode_extradata(H264Context *h); int ff_h264_decode_init(AVCodecContext *avctx); void ff_h264_decode_init_vlc(void); |