diff options
author | Martin Storsjö <martin@martin.st> | 2013-03-23 23:35:19 +0200 |
---|---|---|
committer | Martin Storsjö <martin@martin.st> | 2013-03-24 12:06:53 +0200 |
commit | 285ff14413718ef70b3d992be24472c12cbc481c (patch) | |
tree | c9f87eecbe50b5a34e1a088d5f7cc7ed2d57a1aa | |
parent | 352dbdb96c4f6cc0fc851eca54c6064e0100e0af (diff) | |
download | ffmpeg-285ff14413718ef70b3d992be24472c12cbc481c.tar.gz |
x86: Change a missed occurrance of int to ptrdiff_t for strides
Signed-off-by: Martin Storsjö <martin@martin.st>
-rw-r--r-- | libavcodec/x86/h264_qpel.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/x86/h264_qpel.c b/libavcodec/x86/h264_qpel.c index 5b3a287d12..f909825944 100644 --- a/libavcodec/x86/h264_qpel.c +++ b/libavcodec/x86/h264_qpel.c @@ -475,7 +475,7 @@ LUMA_MC_816(10, mc23, sse2) LUMA_MC_816(10, mc33, sse2) #define QPEL16_OPMC(OP, MC, MMX)\ -void ff_ ## OP ## _h264_qpel16_ ## MC ## _10_ ## MMX(uint8_t *dst, uint8_t *src, int stride){\ +void ff_ ## OP ## _h264_qpel16_ ## MC ## _10_ ## MMX(uint8_t *dst, uint8_t *src, ptrdiff_t stride){\ ff_ ## OP ## _h264_qpel8_ ## MC ## _10_ ## MMX(dst , src , stride);\ ff_ ## OP ## _h264_qpel8_ ## MC ## _10_ ## MMX(dst+16, src+16, stride);\ src += 8*stride;\ |