diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2008-02-01 15:10:01 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2008-02-01 15:10:01 +0000 |
commit | 2cc7c6555a5a7f595caa9aa08c39eaa6bfdab77c (patch) | |
tree | c2eb790dbebe50d76e9ff9eb200f1aa1d6945a45 | |
parent | 095f08d5992491c6790061db6a3f083da8a97a1a (diff) | |
download | ffmpeg-2cc7c6555a5a7f595caa9aa08c39eaa6bfdab77c.tar.gz |
const
Originally committed as revision 11759 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r-- | libavcodec/dxa.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/dxa.c b/libavcodec/dxa.c index eaff1ee11a..46b01cd816 100644 --- a/libavcodec/dxa.c +++ b/libavcodec/dxa.c @@ -187,7 +187,7 @@ static int decode_13(AVCodecContext *avctx, DxaDecContext *c, uint8_t* dst, uint return 0; } -static int decode_frame(AVCodecContext *avctx, void *data, int *data_size, uint8_t *buf, int buf_size) +static int decode_frame(AVCodecContext *avctx, void *data, int *data_size, const uint8_t *buf, int buf_size) { DxaDecContext * const c = avctx->priv_data; uint8_t *outptr, *srcptr, *tmpptr; |