comparison dsputil.h @ 4436:d3e389536b0a libavcodec

Add the const specifier as needed to reduce the number of warnings.
author takis
date Tue, 30 Jan 2007 10:31:34 +0000
parents f9325f2bc762
children 7011f597e473
comparison
equal deleted inserted replaced
4435:04b5141fa890 4436:d3e389536b0a
386 void (*h264_dct)(DCTELEM block[4][4]); 386 void (*h264_dct)(DCTELEM block[4][4]);
387 387
388 /* snow wavelet */ 388 /* snow wavelet */
389 void (*vertical_compose97i)(DWTELEM *b0, DWTELEM *b1, DWTELEM *b2, DWTELEM *b3, DWTELEM *b4, DWTELEM *b5, int width); 389 void (*vertical_compose97i)(DWTELEM *b0, DWTELEM *b1, DWTELEM *b2, DWTELEM *b3, DWTELEM *b4, DWTELEM *b5, int width);
390 void (*horizontal_compose97i)(DWTELEM *b, int width); 390 void (*horizontal_compose97i)(DWTELEM *b, int width);
391 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); 391 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);
392 392
393 void (*prefetch)(void *mem, int stride, int h); 393 void (*prefetch)(void *mem, int stride, int h);
394 394
395 void (*shrink[4])(uint8_t *dst, int dst_wrap, const uint8_t *src, int src_wrap, int width, int height); 395 void (*shrink[4])(uint8_t *dst, int dst_wrap, const uint8_t *src, int src_wrap, int width, int height);
396 396