diff options
author | Panagiotis Issaris <takis.issaris@uhasselt.be> | 2003-10-24 20:09:30 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2003-10-24 20:09:30 +0000 |
commit | 1b245cc21c99d009df73fc9bbb1263a05c159558 (patch) | |
tree | c92aef9ba339f3905fa8ce30afa6e75390409bd1 /libavcodec/adx.c | |
parent | 07bd15c3e9eb5e98e2ad46461c40ae1e67c6bb2e (diff) | |
download | ffmpeg-1b245cc21c99d009df73fc9bbb1263a05c159558.tar.gz |
Fixes GCC 3.3.2 warnings patch by (Panagiotis Issaris <takis at lumumba dot luc dot ac dot be>)
Originally committed as revision 2427 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/adx.c')
-rw-r--r-- | libavcodec/adx.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/adx.c b/libavcodec/adx.c index 4fdca49e83..f13b8a271a 100644 --- a/libavcodec/adx.c +++ b/libavcodec/adx.c @@ -213,7 +213,7 @@ static int adx_encode_close(AVCodecContext *avctx) } static int adx_encode_frame(AVCodecContext *avctx, - unsigned char *frame, int buf_size, const void *data) + uint8_t *frame, int buf_size, void *data) { ADXContext *c = avctx->priv_data; const short *samples = data; @@ -326,7 +326,7 @@ static void dump(unsigned char *buf,size_t len) } static int adx_decode_frame(AVCodecContext *avctx, void *data, int *data_size, - const uint8_t *buf0, int buf_size) + uint8_t *buf0, int buf_size) { ADXContext *c = avctx->priv_data; short *samples = data; |