mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-27 02:47:31 +09:00
[ffvpx] Update ffvp9/ffvp8 to 3.4.2-release
Structure of code was slightly modified so that it should be no longer necessary to re-generate the config_*.h files, greatly simplifying the resync process in the future.
This commit is contained in:
parent
705e180aea
commit
d1361d3c21
183 changed files with 17773 additions and 28489 deletions
|
|
@ -21,22 +21,24 @@
|
|||
#ifndef AVCODEC_VP56DSP_H
|
||||
#define AVCODEC_VP56DSP_H
|
||||
|
||||
#include <stddef.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 (*edge_filter_hor)(uint8_t *yuv, ptrdiff_t stride, int t);
|
||||
void (*edge_filter_ver)(uint8_t *yuv, ptrdiff_t stride, int t);
|
||||
|
||||
void (*vp6_filter_diag4)(uint8_t *dst, uint8_t *src, int stride,
|
||||
void (*vp6_filter_diag4)(uint8_t *dst, uint8_t *src, ptrdiff_t 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,
|
||||
void ff_vp6_filter_diag4_c(uint8_t *dst, uint8_t *src, ptrdiff_t stride,
|
||||
const int16_t *h_weights, const int16_t *v_weights);
|
||||
|
||||
void ff_vp56dsp_init(VP56DSPContext *s, enum AVCodecID codec);
|
||||
void ff_vp6dsp_init_arm(VP56DSPContext *s, enum AVCodecID codec);
|
||||
void ff_vp6dsp_init_x86(VP56DSPContext* c, enum AVCodecID codec);
|
||||
void ff_vp5dsp_init(VP56DSPContext *s);
|
||||
void ff_vp6dsp_init(VP56DSPContext *s);
|
||||
|
||||
void ff_vp6dsp_init_arm(VP56DSPContext *s);
|
||||
void ff_vp6dsp_init_x86(VP56DSPContext *s);
|
||||
|
||||
#endif /* AVCODEC_VP56DSP_H */
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue