diff options
author | Panagiotis Issaris <takis.issaris@uhasselt.be> | 2007-01-30 10:31:34 +0000 |
---|---|---|
committer | Panagiotis Issaris <takis.issaris@uhasselt.be> | 2007-01-30 10:31:34 +0000 |
commit | 9dd6c804537d98f795986867755e285d1091d072 (patch) | |
tree | 0e436e65211f76cfadb593d457ba6c1a46b8a3c7 /libavcodec/dsputil.h | |
parent | 204ce38f539dd26915700613a56e65b6bbd89d45 (diff) | |
download | ffmpeg-9dd6c804537d98f795986867755e285d1091d072.tar.gz |
Add the const specifier as needed to reduce the number of warnings.
Originally committed as revision 7764 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/dsputil.h')
-rw-r--r-- | libavcodec/dsputil.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/dsputil.h b/libavcodec/dsputil.h index 78109f7b98..157426748c 100644 --- a/libavcodec/dsputil.h +++ b/libavcodec/dsputil.h @@ -388,7 +388,7 @@ typedef struct DSPContext { /* snow wavelet */ void (*vertical_compose97i)(DWTELEM *b0, DWTELEM *b1, DWTELEM *b2, DWTELEM *b3, DWTELEM *b4, DWTELEM *b5, int width); void (*horizontal_compose97i)(DWTELEM *b, int width); - void (*inner_add_yblock)(uint8_t *obmc, const int obmc_stride, uint8_t * * block, int b_w, int b_h, int src_x, int src_y, int src_stride, slice_buffer * sb, int add, uint8_t * dst8); + void (*inner_add_yblock)(const uint8_t *obmc, const int obmc_stride, uint8_t * * block, int b_w, int b_h, int src_x, int src_y, int src_stride, slice_buffer * sb, int add, uint8_t * dst8); void (*prefetch)(void *mem, int stride, int h); |