summaryrefslogtreecommitdiff
path: root/libavcodec/rtjpeg.h
diff options
context:
space:
mode:
authorReimar Döffinger <Reimar.Doeffinger@gmx.de>2008-02-01 16:20:27 +0000
committerReimar Döffinger <Reimar.Doeffinger@gmx.de>2008-02-01 16:20:27 +0000
commitb034f72b17ab9266d1c006dec1d60abeceefb5c6 (patch)
treef55c4b4c30c7bb80910d4d726ba932c1ac62e365 /libavcodec/rtjpeg.h
parent7e5cdb5b1bcdc7ac71a426850de7ed40df420d39 (diff)
Add some const keywords in rtjpeg decoder
Originally committed as revision 11792 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/rtjpeg.h')
-rw-r--r--libavcodec/rtjpeg.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/rtjpeg.h b/libavcodec/rtjpeg.h
index f707a76661..0c23eced58 100644
--- a/libavcodec/rtjpeg.h
+++ b/libavcodec/rtjpeg.h
@@ -35,8 +35,8 @@ typedef struct {
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 */