Commit fd4c47be authored by michael's avatar michael

const


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@11718 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 0292a8a5
...@@ -225,14 +225,14 @@ static void IMLT(float *pInput, float *pOutput, int odd_band, float* mdct_tmp) ...@@ -225,14 +225,14 @@ static void IMLT(float *pInput, float *pOutput, int odd_band, float* mdct_tmp)
* @param out pointer to 8 bit array of outdata * @param out pointer to 8 bit array of outdata
*/ */
static int decode_bytes(uint8_t* inbuffer, uint8_t* out, int bytes){ static int decode_bytes(const uint8_t* inbuffer, uint8_t* out, int bytes){
int i, off; int i, off;
uint32_t c; uint32_t c;
uint32_t* buf; const uint32_t* buf;
uint32_t* obuf = (uint32_t*) out; uint32_t* obuf = (uint32_t*) out;
off = (int)((long)inbuffer & 3); off = (int)((long)inbuffer & 3);
buf = (uint32_t*) (inbuffer - off); buf = (const uint32_t*) (inbuffer - off);
c = be2me_32((0x537F6103 >> (off*8)) | (0x537F6103 << (32-(off*8)))); c = be2me_32((0x537F6103 >> (off*8)) | (0x537F6103 << (32-(off*8))));
bytes += 3 + off; bytes += 3 + off;
for (i = 0; i < bytes/4; i++) for (i = 0; i < bytes/4; i++)
...@@ -868,7 +868,7 @@ static int decodeFrame(ATRAC3Context *q, uint8_t* databuf) ...@@ -868,7 +868,7 @@ static int decodeFrame(ATRAC3Context *q, uint8_t* databuf)
static int atrac3_decode_frame(AVCodecContext *avctx, static int atrac3_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) {
ATRAC3Context *q = avctx->priv_data; ATRAC3Context *q = avctx->priv_data;
int result = 0, i; int result = 0, i;
uint8_t* databuf; uint8_t* databuf;
...@@ -919,7 +919,7 @@ static int atrac3_decode_frame(AVCodecContext *avctx, ...@@ -919,7 +919,7 @@ static int atrac3_decode_frame(AVCodecContext *avctx,
static int atrac3_decode_init(AVCodecContext *avctx) static int atrac3_decode_init(AVCodecContext *avctx)
{ {
int i; int i;
uint8_t *edata_ptr = avctx->extradata; const uint8_t *edata_ptr = avctx->extradata;
ATRAC3Context *q = avctx->priv_data; ATRAC3Context *q = avctx->priv_data;
/* Take data from the AVCodecContext (RM container). */ /* Take data from the AVCodecContext (RM container). */
......
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