changeset 6298:c8ec0c985df8 libavcodec

Add some const keywords in rtjpeg decoder
author reimar
date Fri, 01 Feb 2008 16:20:27 +0000
parents 1b91ce6c758c
children 64394c86a053
files rtjpeg.c rtjpeg.h
diffstat 2 files changed, 6 insertions(+), 6 deletions(-) [+]
line wrap: on
line diff
--- a/rtjpeg.c	Fri Feb 01 16:16:40 2008 +0000
+++ b/rtjpeg.c	Fri Feb 01 16:20:27 2008 +0000
@@ -43,8 +43,8 @@
  * aligned this could be done faster in a different way, e.g. as it is done
  * in MPlayer libmpcodecs/native/RTjpegN.c
  */
-static inline int get_block(GetBitContext *gb, DCTELEM *block, uint8_t *scan,
-                            uint32_t *quant) {
+static inline int get_block(GetBitContext *gb, DCTELEM *block, const uint8_t *scan,
+                            const uint32_t *quant) {
     int coeff, i, n;
     int8_t ac;
     uint8_t dc = get_bits(gb, 8);
@@ -97,7 +97,7 @@
  * \return number of bytes consumed from the input buffer
  */
 int rtjpeg_decode_frame_yuv420(RTJpegContext *c, AVFrame *f,
-                               uint8_t *buf, int buf_size) {
+                               const uint8_t *buf, int buf_size) {
     DECLARE_ALIGNED_16(DCTELEM, block[64]);
     GetBitContext gb;
     int w = c->w / 16, h = c->h / 16;
@@ -147,7 +147,7 @@
  */
 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 i;
     c->dsp = dsp;
     for (i = 0; i < 64; i++) {
--- 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 */