diff options
author | Michael Niedermayer | 2012-03-15 22:12:02 +0100 |
---|---|---|
committer | Michael Niedermayer | 2012-03-15 22:12:02 +0100 |
commit | 1bc85fb32dddf01792ae0850aa9a52d4a5737adb (patch) | |
tree | 4f32841327de76ffbc7c7e503962afff9b0f1424 /libavcodec/diracdsp.h | |
parent | ae76c1af16e52e1c69172c471094bf35b4dca5e0 (diff) |
dirac: mark some variables const.
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavcodec/diracdsp.h')
-rw-r--r-- | libavcodec/diracdsp.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/diracdsp.h b/libavcodec/diracdsp.h index ecd12d6a68..613ca5bc83 100644 --- a/libavcodec/diracdsp.h +++ b/libavcodec/diracdsp.h @@ -24,10 +24,10 @@ #include <stdint.h> typedef void (*dirac_weight_func)(uint8_t *block, int stride, int log2_denom, int weight, int h); -typedef void (*dirac_biweight_func)(uint8_t *dst, uint8_t *src, int stride, int log2_denom, int weightd, int weights, int h); +typedef void (*dirac_biweight_func)(uint8_t *dst, const uint8_t *src, int stride, int log2_denom, int weightd, int weights, int h); typedef struct { - void (*dirac_hpel_filter)(uint8_t *dsth, uint8_t *dstv, uint8_t *dstc, uint8_t *src, int stride, int width, int height); + void (*dirac_hpel_filter)(uint8_t *dsth, uint8_t *dstv, uint8_t *dstc, const uint8_t *src, int stride, int width, int height); /** * dirac_pixels_tab[width][subpel] * width is 2 for 32, 1 for 16, 0 for 8 |