diff options
author | Luca Barbato <lu_zero@gentoo.org> | 2013-02-10 00:17:20 +0100 |
---|---|---|
committer | Luca Barbato <lu_zero@gentoo.org> | 2013-02-17 12:03:24 +0100 |
commit | 0b70fb1d518cbd796545fd6eef02772cd0d892c7 (patch) | |
tree | afbe4a0647e4d050a7f7e38e63d1402aa3d6a034 /libavcodec/dsputil.h | |
parent | 488f87be873506abb01d67708a67c10a4dd29283 (diff) | |
download | ffmpeg-0b70fb1d518cbd796545fd6eef02772cd0d892c7.tar.gz |
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.h | 2 |
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);\ } |