diff options
author | Reimar Döffinger <Reimar.Doeffinger@gmx.de> | 2008-02-01 16:20:27 +0000 |
---|---|---|
committer | Reimar Döffinger <Reimar.Doeffinger@gmx.de> | 2008-02-01 16:20:27 +0000 |
commit | b034f72b17ab9266d1c006dec1d60abeceefb5c6 (patch) | |
tree | f55c4b4c30c7bb80910d4d726ba932c1ac62e365 /libavcodec/rtjpeg.h | |
parent | 7e5cdb5b1bcdc7ac71a426850de7ed40df420d39 (diff) | |
download | ffmpeg-b034f72b17ab9266d1c006dec1d60abeceefb5c6.tar.gz |
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.h | 4 |
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 */ |