FFmpeg
Classes | Macros | Typedefs | Functions
qpeldsp.h File Reference

quarterpel DSP functions More...

#include <stddef.h>
#include <stdint.h>

Go to the source code of this file.

Classes

struct  QpelDSPContext
 quarterpel DSP context More...
 

Macros

#define DEF_OLD_QPEL(name)
 

Typedefs

typedef void(* qpel_mc_func) (uint8_t *dst, const uint8_t *src, ptrdiff_t stride)
 
typedef struct QpelDSPContext QpelDSPContext
 quarterpel DSP context
 

Functions

void ff_put_pixels8x8_c (uint8_t *dst, const uint8_t *src, ptrdiff_t stride)
 
void ff_avg_pixels8x8_c (uint8_t *dst, const uint8_t *src, ptrdiff_t stride)
 
void ff_put_pixels16x16_c (uint8_t *dst, const uint8_t *src, ptrdiff_t stride)
 
void ff_avg_pixels16x16_c (uint8_t *dst, const uint8_t *src, ptrdiff_t stride)
 
void ff_put_pixels8_l2_8 (uint8_t *dst, const uint8_t *src1, const uint8_t *src2, int dst_stride, int src_stride1, int src_stride2, int h)
 
void ff_qpeldsp_init (QpelDSPContext *c)
 
void ff_qpeldsp_init_x86 (QpelDSPContext *c)
 
void ff_qpeldsp_init_mips (QpelDSPContext *c)
 

Detailed Description

quarterpel DSP functions

Macro Definition Documentation

§ DEF_OLD_QPEL

#define DEF_OLD_QPEL (   name)
Value:
void ff_put_ ## name(uint8_t *dst /* align width (8 or 16) */, \
const uint8_t *src /* align 1 */, \
ptrdiff_t stride); \
void ff_put_no_rnd_ ## name(uint8_t *dst /* align width (8 or 16) */, \
const uint8_t *src /* align 1 */, \
ptrdiff_t stride); \
void ff_avg_ ## name(uint8_t *dst /* align width (8 or 16) */, \
const uint8_t *src /* align 1 */, \
ptrdiff_t stride);