diff options
author | Timothy Gu <timothygu99@gmail.com> | 2015-10-19 02:12:28 +0100 |
---|---|---|
committer | Timothy Gu <timothygu99@gmail.com> | 2015-10-19 16:57:33 -0700 |
commit | 068e6cb73205d08ed76befd43dbd8b5a17ff3b22 (patch) | |
tree | b2ade813f349cbd6d29bebdf54b766899e03c589 /libavcodec/huffyuvencdsp.h | |
parent | a079cbf458fc5718dfdd396170fcfd9a5a923bba (diff) | |
download | ffmpeg-068e6cb73205d08ed76befd43dbd8b5a17ff3b22.tar.gz |
huffyuvencdsp: Use intptr_t for width
It is done this way in huffyuvdsp as well.
Diffstat (limited to 'libavcodec/huffyuvencdsp.h')
-rw-r--r-- | libavcodec/huffyuvencdsp.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/huffyuvencdsp.h b/libavcodec/huffyuvencdsp.h index 3a49b4a7ef..9d09095374 100644 --- a/libavcodec/huffyuvencdsp.h +++ b/libavcodec/huffyuvencdsp.h @@ -25,13 +25,13 @@ typedef struct HuffYUVEncDSPContext { void (*diff_bytes)(uint8_t *dst /* align 16 */, const uint8_t *src1 /* align 16 */, const uint8_t *src2 /* align 1 */, - int w); + intptr_t w); /** * Subtract HuffYUV's variant of median prediction. * Note, this might read from src1[-1], src2[-1]. */ void (*sub_hfyu_median_pred)(uint8_t *dst, const uint8_t *src1, - const uint8_t *src2, int w, + const uint8_t *src2, intptr_t w, int *left, int *left_top); } HuffYUVEncDSPContext; |