aboutsummaryrefslogtreecommitdiffstats
path: root/libavcodec/dsputil_template.c
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_template.c
parent488f87be873506abb01d67708a67c10a4dd29283 (diff)
downloadandroid_external_ffmpeg-0b70fb1d518cbd796545fd6eef02772cd0d892c7.tar.gz
android_external_ffmpeg-0b70fb1d518cbd796545fd6eef02772cd0d892c7.tar.bz2
android_external_ffmpeg-0b70fb1d518cbd796545fd6eef02772cd0d892c7.zip
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_template.c')
-rw-r--r--libavcodec/dsputil_template.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/dsputil_template.c b/libavcodec/dsputil_template.c
index f9cecd1cc1..5244e20b84 100644
--- a/libavcodec/dsputil_template.c
+++ b/libavcodec/dsputil_template.c
@@ -361,7 +361,7 @@ static inline void FUNCC(OPNAME ## _pixels4_xy2)(uint8_t *block, const uint8_t *
}\
}\
\
-static inline void FUNCC(OPNAME ## _pixels8_xy2)(uint8_t *block, const uint8_t *pixels, int line_size, int h)\
+static inline void FUNCC(OPNAME ## _pixels8_xy2)(uint8_t *block, const uint8_t *pixels, ptrdiff_t line_size, int h)\
{\
/* FIXME HIGH BIT DEPTH */\
int j;\