| Index: source/patched-ffmpeg-mt/libavcodec/vp56dsp.h
|
| ===================================================================
|
| --- source/patched-ffmpeg-mt/libavcodec/vp56dsp.h (revision 59334)
|
| +++ source/patched-ffmpeg-mt/libavcodec/vp56dsp.h (working copy)
|
| @@ -22,13 +22,21 @@
|
| #define AVCODEC_VP56DSP_H
|
|
|
| #include <stdint.h>
|
| +#include "avcodec.h"
|
|
|
| typedef struct VP56DSPContext {
|
| void (*edge_filter_hor)(uint8_t *yuv, int stride, int t);
|
| void (*edge_filter_ver)(uint8_t *yuv, int stride, int t);
|
| +
|
| + void (*vp6_filter_diag4)(uint8_t *dst, uint8_t *src, int stride,
|
| + const int16_t *h_weights,const int16_t *v_weights);
|
| } VP56DSPContext;
|
|
|
| +void ff_vp6_filter_diag4_c(uint8_t *dst, uint8_t *src, int stride,
|
| + const int16_t *h_weights, const int16_t *v_weights);
|
| +
|
| void ff_vp56dsp_init(VP56DSPContext *s, enum CodecID codec);
|
| void ff_vp56dsp_init_arm(VP56DSPContext *s, enum CodecID codec);
|
| +void ff_vp56dsp_init_x86(VP56DSPContext* c, enum CodecID codec);
|
|
|
| #endif /* AVCODEC_VP56DSP_H */
|
|
|