12345678910111213141516171819202122232425262728293031323334353637383940 |
- #ifndef AVCODEC_H264CHROMA_H
- #define AVCODEC_H264CHROMA_H
- #include <stddef.h>
- #include <stdint.h>
- typedef void (*h264_chroma_mc_func)(uint8_t *dst , uint8_t *src , ptrdiff_t srcStride, int h, int x, int y);
- typedef struct H264ChromaContext {
- h264_chroma_mc_func put_h264_chroma_pixels_tab[4];
- h264_chroma_mc_func avg_h264_chroma_pixels_tab[4];
- } H264ChromaContext;
- void ff_h264chroma_init(H264ChromaContext *c, int bit_depth);
- void ff_h264chroma_init_aarch64(H264ChromaContext *c, int bit_depth);
- void ff_h264chroma_init_arm(H264ChromaContext *c, int bit_depth);
- void ff_h264chroma_init_ppc(H264ChromaContext *c, int bit_depth);
- void ff_h264chroma_init_x86(H264ChromaContext *c, int bit_depth);
- void ff_h264chroma_init_mips(H264ChromaContext *c, int bit_depth);
- #endif
|