1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859 |
- #ifndef AVCODEC_TPELDSP_H
- #define AVCODEC_TPELDSP_H
- #include <stdint.h>
- typedef void (*tpel_mc_func)(uint8_t *block ,
- const uint8_t *pixels ,
- int line_size, int w, int h);
- typedef struct TpelDSPContext {
-
- tpel_mc_func put_tpel_pixels_tab[11];
- tpel_mc_func avg_tpel_pixels_tab[11];
- } TpelDSPContext;
- void ff_tpeldsp_init(TpelDSPContext *c);
- #endif
|