diff options
author | Anton Khirnov <anton@khirnov.net> | 2015-01-27 16:05:31 +0100 |
---|---|---|
committer | Anton Khirnov <anton@khirnov.net> | 2015-03-21 11:27:15 +0100 |
commit | 51822879e7732ee8175dad98dde1a135f6e5c1a4 (patch) | |
tree | b44be1237ce703e9f1c12b851ce0f1f5f1b81fc2 /libavcodec/h264_mb.c | |
parent | 3bea6409a1868354a1d29b34de424c3636c222b7 (diff) | |
download | ffmpeg-51822879e7732ee8175dad98dde1a135f6e5c1a4.tar.gz |
h264_mb: constify block_offset
It is read-only in this code.
Diffstat (limited to 'libavcodec/h264_mb.c')
-rw-r--r-- | libavcodec/h264_mb.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/h264_mb.c b/libavcodec/h264_mb.c index a9ea97c73a..cfe975e4dc 100644 --- a/libavcodec/h264_mb.c +++ b/libavcodec/h264_mb.c @@ -616,7 +616,7 @@ static av_always_inline void hl_decode_mb_predict_luma(H264Context *h, int simple, int transform_bypass, int pixel_shift, - int *block_offset, + const int *block_offset, int linesize, uint8_t *dest_y, int p) { @@ -732,7 +732,7 @@ static av_always_inline void hl_decode_mb_idct_luma(H264Context *h, H264SliceCon int is_h264, int simple, int transform_bypass, int pixel_shift, - int *block_offset, + const int *block_offset, int linesize, uint8_t *dest_y, int p) { |