summaryrefslogtreecommitdiff
path: root/libavcodec/dsputil.h
diff options
context:
space:
mode:
authorLuca Barbato <lu_zero@gentoo.org>2013-02-10 00:17:20 +0100
committerLuca Barbato <lu_zero@gentoo.org>2013-02-17 12:03:24 +0100
commit0b70fb1d518cbd796545fd6eef02772cd0d892c7 (patch)
treeafbe4a0647e4d050a7f7e38e63d1402aa3d6a034 /libavcodec/dsputil.h
parent488f87be873506abb01d67708a67c10a4dd29283 (diff)
dsputil: convert remaining op_pixels_func
Convert to diffptr_t the line_size parameters still int. Remove all the warnings in dsputil.c
Diffstat (limited to 'libavcodec/dsputil.h')
-rw-r--r--libavcodec/dsputil.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/dsputil.h b/libavcodec/dsputil.h
index f95077f0f4..d0ba95ceeb 100644
--- a/libavcodec/dsputil.h
+++ b/libavcodec/dsputil.h
@@ -114,7 +114,7 @@ DEF_OLD_QPEL(qpel8_mc13_old_c)
DEF_OLD_QPEL(qpel8_mc33_old_c)
#define CALL_2X_PIXELS(a, b, n)\
-static void a(uint8_t *block, const uint8_t *pixels, int line_size, int h){\
+static void a(uint8_t *block, const uint8_t *pixels, ptrdiff_t line_size, int h){\
b(block , pixels , line_size, h);\
b(block+n, pixels+n, line_size, h);\
}