# HG changeset patch # User michael # Date 1201881458 0 # Node ID 20a72aa8179bca2fdac49f6c8d0a21ed996f4174 # Parent 2134a0fc46f3e5a790bb8795ab182d1df9f4a6e8 more const diff -r 2134a0fc46f3 -r 20a72aa8179b truemotion1.c --- a/truemotion1.c Fri Feb 01 15:56:51 2008 +0000 +++ b/truemotion1.c Fri Feb 01 15:57:38 2008 +0000 @@ -48,7 +48,7 @@ const uint8_t *mb_change_bits; int mb_change_bits_row_size; - uint8_t *index_stream; + const uint8_t *index_stream; int index_stream_size; int flags; @@ -603,7 +603,7 @@ int keyframe = s->flags & FLAG_KEYFRAME; /* these variables are for managing the stream of macroblock change bits */ - unsigned char *mb_change_bits = s->mb_change_bits; + const unsigned char *mb_change_bits = s->mb_change_bits; unsigned char mb_change_byte; unsigned char mb_change_byte_mask; int mb_change_index; @@ -729,7 +729,7 @@ int keyframe = s->flags & FLAG_KEYFRAME; /* these variables are for managing the stream of macroblock change bits */ - unsigned char *mb_change_bits = s->mb_change_bits; + const unsigned char *mb_change_bits = s->mb_change_bits; unsigned char mb_change_byte; unsigned char mb_change_byte_mask; int mb_change_index;