comparison sparc/dsputil_vis.c @ 11457:766ca433df3b libavcodec

sparc: fix dsputil prototypes
author mru
date Wed, 10 Mar 2010 22:24:42 +0000
parents f9c847fb4839
children bf6d274fef39
comparison
equal deleted inserted replaced
11456:c16e47ff9a49 11457:766ca433df3b
25 #include "config.h" 25 #include "config.h"
26 26
27 #include <inttypes.h> 27 #include <inttypes.h>
28 28
29 #include "libavcodec/dsputil.h" 29 #include "libavcodec/dsputil.h"
30 #include "dsputil_vis.h"
30 31
31 #include "vis.h" 32 #include "vis.h"
32
33 void ff_simple_idct_put_vis(uint8_t *dest, int line_size, DCTELEM *data);
34 void ff_simple_idct_add_vis(uint8_t *dest, int line_size, DCTELEM *data);
35 void ff_simple_idct_vis(DCTELEM *data);
36 33
37 /* The trick used in some of this file is the formula from the MMX 34 /* The trick used in some of this file is the formula from the MMX
38 * motion comp code, which is: 35 * motion comp code, which is:
39 * 36 *
40 * (x+y+1)>>1 == (x|y)-((x^y)>>1) 37 * (x+y+1)>>1 == (x|y)-((x^y)>>1)