Commit f683ea1c authored by Benoit Fouet's avatar Benoit Fouet

Add const qualifiers to decode functions.

Originally committed as revision 16165 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent 7d2cc552
...@@ -245,10 +245,10 @@ static int amr_nb_decode_close(AVCodecContext * avctx) ...@@ -245,10 +245,10 @@ static int amr_nb_decode_close(AVCodecContext * avctx)
static int amr_nb_decode_frame(AVCodecContext * avctx, static int amr_nb_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)
{ {
AMRContext *s = avctx->priv_data; AMRContext *s = avctx->priv_data;
uint8_t*amrData=buf; const uint8_t*amrData=buf;
int offset=0; int offset=0;
UWord8 toc, q, ft; UWord8 toc, q, ft;
Word16 serial[SERIAL_FRAMESIZE]; /* coded bits */ Word16 serial[SERIAL_FRAMESIZE]; /* coded bits */
...@@ -441,10 +441,10 @@ static int amr_nb_encode_close(AVCodecContext * avctx) ...@@ -441,10 +441,10 @@ static int amr_nb_encode_close(AVCodecContext * avctx)
static int amr_nb_decode_frame(AVCodecContext * avctx, static int amr_nb_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)
{ {
AMRContext *s = avctx->priv_data; AMRContext *s = avctx->priv_data;
uint8_t*amrData=buf; const uint8_t*amrData=buf;
static const uint8_t block_size[16]={ 12, 13, 15, 17, 19, 20, 26, 31, 5, 0, 0, 0, 0, 0, 0, 0 }; static const uint8_t block_size[16]={ 12, 13, 15, 17, 19, 20, 26, 31, 5, 0, 0, 0, 0, 0, 0, 0 };
enum Mode dec_mode; enum Mode dec_mode;
int packet_size; int packet_size;
...@@ -654,10 +654,10 @@ static int amr_wb_decode_init(AVCodecContext * avctx) ...@@ -654,10 +654,10 @@ static int amr_wb_decode_init(AVCodecContext * avctx)
static int amr_wb_decode_frame(AVCodecContext * avctx, static int amr_wb_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)
{ {
AMRWBContext *s = avctx->priv_data; AMRWBContext *s = avctx->priv_data;
uint8_t*amrData=buf; const uint8_t*amrData=buf;
int mode; int mode;
int packet_size; int packet_size;
static const uint8_t block_size[16] = {18, 23, 33, 37, 41, 47, 51, 59, 61, 6, 6, 0, 0, 0, 1, 1}; static const uint8_t block_size[16] = {18, 23, 33, 37, 41, 47, 51, 59, 61, 6, 6, 0, 0, 0, 1, 1};
......
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