From f7813a5324be39d13ab536c245d15dfc602a7849 Mon Sep 17 00:00:00 2001 From: Tim Redfern Date: Sun, 29 Dec 2013 12:19:38 +0000 Subject: basic type mechanism working --- ffmpeg/libavcodec/hpeldsp.h | 19 +++++++++---------- 1 file changed, 9 insertions(+), 10 deletions(-) (limited to 'ffmpeg/libavcodec/hpeldsp.h') diff --git a/ffmpeg/libavcodec/hpeldsp.h b/ffmpeg/libavcodec/hpeldsp.h index 57a4cc1..ec9006c 100644 --- a/ffmpeg/libavcodec/hpeldsp.h +++ b/ffmpeg/libavcodec/hpeldsp.h @@ -32,8 +32,8 @@ #include /* add and put pixel (decoding) */ -// blocksizes for op_pixels_func are 8x4,8x8 16x8 16x16 -// h for op_pixels_func is limited to {width/2, width} but never larger +// blocksizes for hpel_pixels_func are 8x4,8x8 16x8 16x16 +// h for hpel_pixels_func is limited to {width/2, width} but never larger // than 16 and never smaller than 4 typedef void (*op_pixels_func)(uint8_t *block /*align width (8 or 16)*/, const uint8_t *pixels /*align 1*/, @@ -92,14 +92,13 @@ typedef struct HpelDSPContext { op_pixels_func avg_no_rnd_pixels_tab[4]; } HpelDSPContext; -void ff_hpeldsp_init(HpelDSPContext* p, int flags); +void ff_hpeldsp_init(HpelDSPContext *c, int flags); -void ff_hpeldsp_init_alpha(HpelDSPContext* c, int flags); -void ff_hpeldsp_init_arm(HpelDSPContext* c, int flags); -void ff_hpeldsp_init_bfin(HpelDSPContext* c, int flags); -void ff_hpeldsp_init_x86(HpelDSPContext* c, int flags); -void ff_hpeldsp_init_ppc(HpelDSPContext* c, int flags); -void ff_hpeldsp_init_sh4(HpelDSPContext* c, int flags); -void ff_hpeldsp_init_vis(HpelDSPContext* c, int flags); +void ff_hpeldsp_init_alpha(HpelDSPContext *c, int flags); +void ff_hpeldsp_init_arm(HpelDSPContext *c, int flags); +void ff_hpeldsp_init_bfin(HpelDSPContext *c, int flags); +void ff_hpeldsp_init_ppc(HpelDSPContext *c, int flags); +void ff_hpeldsp_init_vis(HpelDSPContext *c, int flags); +void ff_hpeldsp_init_x86(HpelDSPContext *c, int flags); #endif /* AVCODEC_HPELDSP_H */ -- cgit v1.2.3