Merge commit 'a8b6015823e628047a45916404c00044c5e80415'
* commit 'a8b6015823e628047a45916404c00044c5e80415': dsputil: convert remaining functions to use ptrdiff_t strides Conflicts: libavcodec/dsputil.h libavcodec/dsputil_template.c libavcodec/h264qpel_template.c Merged-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
@@ -640,11 +640,17 @@ VC1_MSPEL_MC(op_avg, op4_avg, avg_)
|
||||
/* pixel functions - really are entry points to vc1_mspel_mc */
|
||||
|
||||
#define PUT_VC1_MSPEL(a, b)\
|
||||
static void put_vc1_mspel_mc ## a ## b ##_c(uint8_t *dst, const uint8_t *src, int stride, int rnd) { \
|
||||
put_vc1_mspel_mc(dst, src, stride, a, b, rnd); \
|
||||
}\
|
||||
static void avg_vc1_mspel_mc ## a ## b ##_c(uint8_t *dst, const uint8_t *src, int stride, int rnd) { \
|
||||
avg_vc1_mspel_mc(dst, src, stride, a, b, rnd); \
|
||||
static void put_vc1_mspel_mc ## a ## b ##_c(uint8_t *dst, \
|
||||
const uint8_t *src, \
|
||||
ptrdiff_t stride, int rnd) \
|
||||
{ \
|
||||
put_vc1_mspel_mc(dst, src, stride, a, b, rnd); \
|
||||
} \
|
||||
static void avg_vc1_mspel_mc ## a ## b ##_c(uint8_t *dst, \
|
||||
const uint8_t *src, \
|
||||
ptrdiff_t stride, int rnd) \
|
||||
{ \
|
||||
avg_vc1_mspel_mc(dst, src, stride, a, b, rnd); \
|
||||
}
|
||||
|
||||
PUT_VC1_MSPEL(1, 0)
|
||||
|
Reference in New Issue
Block a user