comparison dsputil.h @ 10420:442ab0c41eae libavcodec

Huffyuv: Add missing const to src pointers in dsputil functions.
author astrange
date Fri, 16 Oct 2009 23:04:41 +0000
parents 8fd8f6c1cdcc
children 94595d0e617c
comparison
equal deleted inserted replaced
10419:71760101783e 10420:442ab0c41eae
345 void (*diff_bytes)(uint8_t *dst/*align 16*/, uint8_t *src1/*align 16*/, uint8_t *src2/*align 1*/,int w); 345 void (*diff_bytes)(uint8_t *dst/*align 16*/, uint8_t *src1/*align 16*/, uint8_t *src2/*align 1*/,int w);
346 /** 346 /**
347 * subtract huffyuv's variant of median prediction 347 * subtract huffyuv's variant of median prediction
348 * note, this might read from src1[-1], src2[-1] 348 * note, this might read from src1[-1], src2[-1]
349 */ 349 */
350 void (*sub_hfyu_median_prediction)(uint8_t *dst, uint8_t *src1, uint8_t *src2, int w, int *left, int *left_top); 350 void (*sub_hfyu_median_prediction)(uint8_t *dst, const uint8_t *src1, uint8_t *src2, int w, int *left, int *left_top);
351 void (*add_hfyu_median_prediction)(uint8_t *dst, uint8_t *top, uint8_t *diff, int w, int *left, int *left_top); 351 void (*add_hfyu_median_prediction)(uint8_t *dst, const uint8_t *top, uint8_t *diff, int w, int *left, int *left_top);
352 int (*add_hfyu_left_prediction)(uint8_t *dst, uint8_t *src, int w, int acc); 352 int (*add_hfyu_left_prediction)(uint8_t *dst, const uint8_t *src, int w, int acc);
353 void (*add_hfyu_left_prediction_bgr32)(uint8_t *dst, uint8_t *src, int w, int *red, int *green, int *blue); 353 void (*add_hfyu_left_prediction_bgr32)(uint8_t *dst, const uint8_t *src, int w, int *red, int *green, int *blue);
354 /* this might write to dst[w] */ 354 /* this might write to dst[w] */
355 void (*add_png_paeth_prediction)(uint8_t *dst, uint8_t *src, uint8_t *top, int w, int bpp); 355 void (*add_png_paeth_prediction)(uint8_t *dst, uint8_t *src, uint8_t *top, int w, int bpp);
356 void (*bswap_buf)(uint32_t *dst, const uint32_t *src, int w); 356 void (*bswap_buf)(uint32_t *dst, const uint32_t *src, int w);
357 357
358 void (*h264_v_loop_filter_luma)(uint8_t *pix/*align 16*/, int stride, int alpha, int beta, int8_t *tc0); 358 void (*h264_v_loop_filter_luma)(uint8_t *pix/*align 16*/, int stride, int alpha, int beta, int8_t *tc0);