diff options
| author | Tim Redfern <tim@eclectronics.org> | 2013-12-29 12:19:38 +0000 |
|---|---|---|
| committer | Tim Redfern <tim@eclectronics.org> | 2013-12-29 12:19:38 +0000 |
| commit | f7813a5324be39d13ab536c245d15dfc602a7849 (patch) | |
| tree | fad99148b88823d34a5df2f0a25881a002eb291b /ffmpeg/libavcodec/hpeldsp.h | |
| parent | b7a5a477b8ff4d4e3028b9dfb9a9df0a41463f92 (diff) | |
basic type mechanism working
Diffstat (limited to 'ffmpeg/libavcodec/hpeldsp.h')
| -rw-r--r-- | ffmpeg/libavcodec/hpeldsp.h | 19 |
1 files changed, 9 insertions, 10 deletions
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 <stddef.h> /* 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 */ |
