Commit 3cc89383 authored by Michael Niedermayer's avatar Michael Niedermayer

const

Originally committed as revision 11772 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent 96c5ba15
...@@ -49,7 +49,7 @@ static void colmult(float *tgt, float *m1, const float *m2, int n); ...@@ -49,7 +49,7 @@ static void colmult(float *tgt, float *m1, const float *m2, int n);
/* initial decode */ /* initial decode */
static void unpack(unsigned short *tgt, unsigned char *src, unsigned int len) static void unpack(unsigned short *tgt, const unsigned char *src, unsigned int len)
{ {
int x,y,z; int x,y,z;
int n,temp; int n,temp;
...@@ -208,7 +208,7 @@ static void prodsum(float *tgt, float *src, int len, int n) ...@@ -208,7 +208,7 @@ static void prodsum(float *tgt, float *src, int len, int n)
} }
} }
static void * decode_block(AVCodecContext * avctx, unsigned char *in, signed short int *out,unsigned len) static void * decode_block(AVCodecContext * avctx, const unsigned char *in, signed short int *out,unsigned len)
{ {
int x,y; int x,y;
Real288_internal *glob=avctx->priv_data; Real288_internal *glob=avctx->priv_data;
...@@ -228,7 +228,7 @@ static void * decode_block(AVCodecContext * avctx, unsigned char *in, signed sho ...@@ -228,7 +228,7 @@ static void * decode_block(AVCodecContext * avctx, unsigned char *in, signed sho
/* Decode a block (celp) */ /* Decode a block (celp) */
static int ra288_decode_frame(AVCodecContext * avctx, static int ra288_decode_frame(AVCodecContext * avctx,
void *data, int *data_size, void *data, int *data_size,
uint8_t * buf, int buf_size) const uint8_t * buf, int buf_size)
{ {
void *datao; void *datao;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment