diff rtjpeg.h @ 6298:c8ec0c985df8 libavcodec

Add some const keywords in rtjpeg decoder
author reimar
date Fri, 01 Feb 2008 16:20:27 +0000
parents 1d83e9c34641
children 6491d3284f89
line wrap: on
line diff
--- a/rtjpeg.h	Fri Feb 01 16:16:40 2008 +0000
+++ b/rtjpeg.h	Fri Feb 01 16:20:27 2008 +0000
@@ -35,8 +35,8 @@
 
 void rtjpeg_decode_init(RTJpegContext *c, DSPContext *dsp,
                         int width, int height,
-                        uint32_t *lquant, uint32_t *cquant);
+                        const uint32_t *lquant, const uint32_t *cquant);
 
 int rtjpeg_decode_frame_yuv420(RTJpegContext *c, AVFrame *f,
-                               uint8_t *buf, int buf_size);
+                               const uint8_t *buf, int buf_size);
 #endif /* FFMPEG_RTJPEG_H */