diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2005-06-01 21:19:00 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2005-06-01 21:19:00 +0000 |
commit | c26ae41db21d6a7d5092b3cb51ce2e4866b076ae (patch) | |
tree | 8bc945d47b0053aa8255f4a3226c48cc1c194057 /libavcodec/truemotion1.c | |
parent | 435b0720a89b5aa1dd9e92f13336d5a35964a6e6 (diff) | |
download | ffmpeg-c26ae41db21d6a7d5092b3cb51ce2e4866b076ae.tar.gz |
adding a few const
Originally committed as revision 4337 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/truemotion1.c')
-rw-r--r-- | libavcodec/truemotion1.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/libavcodec/truemotion1.c b/libavcodec/truemotion1.c index 0c3bb09cf1..b382e2cfa5 100644 --- a/libavcodec/truemotion1.c +++ b/libavcodec/truemotion1.c @@ -248,7 +248,7 @@ static int make_cdt24_entry(int p1, int p2, int16_t *cdt) return ((b+r) << 1); } -static void gen_vector_table15(TrueMotion1Context *s, uint8_t *sel_vector_table) +static void gen_vector_table15(TrueMotion1Context *s, const uint8_t *sel_vector_table) { int len, i, j; unsigned char delta_pair; @@ -269,7 +269,7 @@ static void gen_vector_table15(TrueMotion1Context *s, uint8_t *sel_vector_table) } } -static void gen_vector_table16(TrueMotion1Context *s, uint8_t *sel_vector_table) +static void gen_vector_table16(TrueMotion1Context *s, const uint8_t *sel_vector_table) { int len, i, j; unsigned char delta_pair; @@ -290,7 +290,7 @@ static void gen_vector_table16(TrueMotion1Context *s, uint8_t *sel_vector_table) } } -static void gen_vector_table24(TrueMotion1Context *s, uint8_t *sel_vector_table) +static void gen_vector_table24(TrueMotion1Context *s, const uint8_t *sel_vector_table) { int len, i, j; unsigned char delta_pair; @@ -324,7 +324,7 @@ static int truemotion1_decode_header(TrueMotion1Context *s) int i; struct frame_header header; uint8_t header_buffer[128]; /* logical maximum size of the header */ - uint8_t *sel_vector_table; + const uint8_t *sel_vector_table; /* There is 1 change bit per 4 pixels, so each change byte represents * 32 pixels; divide width by 4 to obtain the number of change bits and |