aboutsummaryrefslogtreecommitdiffstats
path: root/libavcodec/x86/dnxhdenc.c
diff options
context:
space:
mode:
authorTimothy Gu <timothygu99@gmail.com>2014-03-26 19:06:29 -0700
committerMichael Niedermayer <michaelni@gmx.at>2014-03-27 23:09:10 +0100
commitcb11b9e89e152ed4db22e5ad0349b63fac02101e (patch)
tree7b112316e3024a602ca62e0fa241ed3e457fe6c6 /libavcodec/x86/dnxhdenc.c
parent72bff8da479a0ab61444474cda266c883e7928d6 (diff)
downloadffmpeg-cb11b9e89e152ed4db22e5ad0349b63fac02101e.tar.gz
dnxhdenc: make get_pixel_8x4_sym accept ptrdiff_t as stride
Signed-off-by: Timothy Gu <timothygu99@gmail.com> Reviewed-by: "Ronald S. Bultje" <rsbultje@gmail.com> Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavcodec/x86/dnxhdenc.c')
-rw-r--r--libavcodec/x86/dnxhdenc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/x86/dnxhdenc.c b/libavcodec/x86/dnxhdenc.c
index c7e776a4c1..b4d9f02f26 100644
--- a/libavcodec/x86/dnxhdenc.c
+++ b/libavcodec/x86/dnxhdenc.c
@@ -28,7 +28,7 @@
#if HAVE_SSE2_INLINE
-static void get_pixels_8x4_sym_sse2(int16_t *block, const uint8_t *pixels, int line_size)
+static void get_pixels_8x4_sym_sse2(int16_t *block, const uint8_t *pixels, ptrdiff_t line_size)
{
__asm__ volatile(
"pxor %%xmm5, %%xmm5 \n\t"