summaryrefslogtreecommitdiff
path: root/libavcodec
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2008-02-01 13:42:08 +0000
committerMichael Niedermayer <michaelni@gmx.at>2008-02-01 13:42:08 +0000
commit2ec38612383389fbd73267297002ff927af60f2a (patch)
tree00a21af4087872dd82694cc8328d8324dc6417c7 /libavcodec
parent972c99c112977d9228845fae66eb104a730b58a8 (diff)
const
Originally committed as revision 11731 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec')
-rw-r--r--libavcodec/indeo3.c14
1 files changed, 7 insertions, 7 deletions
diff --git a/libavcodec/indeo3.c b/libavcodec/indeo3.c
index 7e814094e5..9237b5ec20 100644
--- a/libavcodec/indeo3.c
+++ b/libavcodec/indeo3.c
@@ -93,9 +93,9 @@ static void build_modpred(Indeo3DecodeContext *s)
}
static void iv_Decode_Chunk(Indeo3DecodeContext *s, unsigned char *cur,
- unsigned char *ref, int width, int height, unsigned char *buf1,
- long fflags2, unsigned char *hdr,
- unsigned char *buf2, int min_width_160);
+ unsigned char *ref, int width, int height, const unsigned char *buf1,
+ long fflags2, const unsigned char *hdr,
+ const unsigned char *buf2, int min_width_160);
/* ---------------------------------------------------------------------- */
static void iv_alloc_frames(Indeo3DecodeContext *s)
@@ -299,13 +299,13 @@ typedef struct {
static void iv_Decode_Chunk(Indeo3DecodeContext *s,
unsigned char *cur, unsigned char *ref, int width, int height,
- unsigned char *buf1, long fflags2, unsigned char *hdr,
- unsigned char *buf2, int min_width_160)
+ const unsigned char *buf1, long fflags2, const unsigned char *hdr,
+ const unsigned char *buf2, int min_width_160)
{
unsigned char bit_buf;
unsigned long bit_pos, lv, lv1, lv2;
long *width_tbl, width_tbl_arr[10];
- signed char *ref_vectors;
+ const signed char *ref_vectors;
unsigned char *cur_frm_pos, *ref_frm_pos, *cp, *cp2;
uint32_t *cur_lp, *ref_lp;
const uint32_t *correction_lp[2], *correctionloworder_lp[2], *correctionhighorder_lp[2];
@@ -370,7 +370,7 @@ static void iv_Decode_Chunk(Indeo3DecodeContext *s,
} else if(cmd == 3) {
if(strip->usl7 == 0) {
strip->usl7 = 1;
- ref_vectors = (signed char*)buf2 + (*buf1 * 2);
+ ref_vectors = (const signed char*)buf2 + (*buf1 * 2);
buf1++;
continue;
}