Mercurial > libavcodec.hg
comparison 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 |
comparison
equal
deleted
inserted
replaced
| 6297:1b91ce6c758c | 6298:c8ec0c985df8 |
|---|---|
| 33 uint32_t cquant[64]; | 33 uint32_t cquant[64]; |
| 34 } RTJpegContext; | 34 } RTJpegContext; |
| 35 | 35 |
| 36 void rtjpeg_decode_init(RTJpegContext *c, DSPContext *dsp, | 36 void rtjpeg_decode_init(RTJpegContext *c, DSPContext *dsp, |
| 37 int width, int height, | 37 int width, int height, |
| 38 uint32_t *lquant, uint32_t *cquant); | 38 const uint32_t *lquant, const uint32_t *cquant); |
| 39 | 39 |
| 40 int rtjpeg_decode_frame_yuv420(RTJpegContext *c, AVFrame *f, | 40 int rtjpeg_decode_frame_yuv420(RTJpegContext *c, AVFrame *f, |
| 41 uint8_t *buf, int buf_size); | 41 const uint8_t *buf, int buf_size); |
| 42 #endif /* FFMPEG_RTJPEG_H */ | 42 #endif /* FFMPEG_RTJPEG_H */ |
