mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2025-12-08 06:09:50 +00:00
Drop DCTELEM typedef
It does not help as an abstraction and adds dsputil dependencies. Signed-off-by: Ronald S. Bultje <rsbultje@gmail.com>
This commit is contained in:
parent
2e4bb99f4d
commit
88bd7fdc82
163 changed files with 835 additions and 812 deletions
|
|
@ -21,14 +21,15 @@
|
|||
*/
|
||||
|
||||
#include "libavutil/x86/cpu.h"
|
||||
#include "libavcodec/dsputil.h"
|
||||
#include "libavcodec/proresdsp.h"
|
||||
|
||||
void ff_prores_idct_put_10_sse2(uint16_t *dst, int linesize,
|
||||
DCTELEM *block, const int16_t *qmat);
|
||||
int16_t *block, const int16_t *qmat);
|
||||
void ff_prores_idct_put_10_sse4(uint16_t *dst, int linesize,
|
||||
DCTELEM *block, const int16_t *qmat);
|
||||
int16_t *block, const int16_t *qmat);
|
||||
void ff_prores_idct_put_10_avx (uint16_t *dst, int linesize,
|
||||
DCTELEM *block, const int16_t *qmat);
|
||||
int16_t *block, const int16_t *qmat);
|
||||
|
||||
void ff_proresdsp_x86_init(ProresDSPContext *dsp)
|
||||
{
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue