const
authorMichael Niedermayer <michaelni@gmx.at>
Fri, 1 Feb 2008 14:16:08 +0000 (14:16 +0000)
committerMichael Niedermayer <michaelni@gmx.at>
Fri, 1 Feb 2008 14:16:08 +0000 (14:16 +0000)
Originally committed as revision 11745 to svn://svn.ffmpeg.org/ffmpeg/trunk

libavcodec/sunrast.c

index cdd678201a44112c7c1cc634c8957e77430a9797..7e71f21ef0c33b467942011438a5cb5e226e2bc8 100644 (file)
@@ -42,12 +42,13 @@ static int sunrast_init(AVCodecContext *avctx) {
 }
 
 static int sunrast_decode_frame(AVCodecContext *avctx, void *data,
-                                int *data_size, uint8_t *buf, int buf_size) {
+                                int *data_size, const uint8_t *buf, int buf_size) {
     SUNRASTContext * const s = avctx->priv_data;
     AVFrame *picture = data;
     AVFrame * const p = &s->picture;
     unsigned int w, h, depth, type, maptype, maplength, stride, x, y, len, alen;
-    uint8_t *ptr, *bufstart = buf;
+    uint8_t *ptr;
+    const uint8_t *bufstart = buf;
 
     if (AV_RB32(buf) != 0x59a66a95) {
         av_log(avctx, AV_LOG_ERROR, "this is not sunras encoded data\n");