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_template.c | |
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_template.c')
-rw-r--r-- | libavcodec/dsputil_template.c | 2 |
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;\ |