diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2010-01-07 15:46:45 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2010-01-07 15:46:45 +0000 |
commit | 46244c640cad7f4f58c99ca1bd5fd791189e6f30 (patch) | |
tree | 58d5818a15fc126f5b207bbf85e315f034fb658c | |
parent | 616251c924d9ea9bb0fcc4a5cf6ad241873500c6 (diff) | |
download | ffmpeg-46244c640cad7f4f58c99ca1bd5fd791189e6f30.tar.gz |
Add some const qualifiers.
Originally committed as revision 21064 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r-- | libavcodec/h263.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/h263.c b/libavcodec/h263.c index 198b34682e..9040e3d43a 100644 --- a/libavcodec/h263.c +++ b/libavcodec/h263.c @@ -377,7 +377,7 @@ static inline int get_block_rate(MpegEncContext * s, DCTELEM block[64], int bloc * @param[out] st scantable for each 8x8 block * @param[in] zigzag_last_index index refering to the last non zero coefficient in zigzag order */ -static inline void restore_ac_coeffs(MpegEncContext * s, DCTELEM block[6][64], int dir[6], uint8_t *st[6], int zigzag_last_index[6]) +static inline void restore_ac_coeffs(MpegEncContext * s, DCTELEM block[6][64], const int dir[6], uint8_t *st[6], const int zigzag_last_index[6]) { int i, n; memcpy(s->block_last_index, zigzag_last_index, sizeof(int)*6); @@ -408,7 +408,7 @@ static inline void restore_ac_coeffs(MpegEncContext * s, DCTELEM block[6][64], i * @param[out] st scantable for each 8x8 block * @param[out] zigzag_last_index index refering to the last non zero coefficient in zigzag order */ -static inline int decide_ac_pred(MpegEncContext * s, DCTELEM block[6][64], int dir[6], uint8_t *st[6], int zigzag_last_index[6]) +static inline int decide_ac_pred(MpegEncContext * s, DCTELEM block[6][64], const int dir[6], uint8_t *st[6], int zigzag_last_index[6]) { int score= 0; int i, n; |