Browse Source

proresdsp: fix function prototypes.

Signed-off-by: Janne Grunau <janne-libav@jannau.net>
tags/n0.9
Ronald S. Bultje Janne Grunau 14 years ago
parent
commit
05c8f119cc
1 changed files with 3 additions and 3 deletions
  1. +3
    -3
      libavcodec/x86/proresdsp-init.c

+ 3
- 3
libavcodec/x86/proresdsp-init.c View File

@@ -23,11 +23,11 @@
#include "libavcodec/proresdsp.h"

void ff_prores_idct_put_10_sse2(uint16_t *dst, int linesize,
DCTELEM *block);
DCTELEM *block, const int16_t *qmat);
void ff_prores_idct_put_10_sse4(uint16_t *dst, int linesize,
DCTELEM *block);
DCTELEM *block, const int16_t *qmat);
void ff_prores_idct_put_10_avx (uint16_t *dst, int linesize,
DCTELEM *block);
DCTELEM *block, const int16_t *qmat);

void ff_proresdsp_x86_init(ProresDSPContext *dsp)
{


Loading…
Cancel
Save