Mercurial > libavcodec.hg
comparison sparc/dsputil_vis.c @ 8250:cf4d575b1982 libavcodec
Delete unnecessary 'extern' keywords.
| author | diego |
|---|---|
| date | Wed, 03 Dec 2008 15:23:30 +0000 |
| parents | f7cbb7733146 |
| children | 18737839ed27 |
comparison
equal
deleted
inserted
replaced
| 8249:5057047bcc52 | 8250:cf4d575b1982 |
|---|---|
| 29 | 29 |
| 30 #include "libavcodec/dsputil.h" | 30 #include "libavcodec/dsputil.h" |
| 31 | 31 |
| 32 #include "vis.h" | 32 #include "vis.h" |
| 33 | 33 |
| 34 extern void ff_simple_idct_put_vis(uint8_t *dest, int line_size, DCTELEM *data); | 34 void ff_simple_idct_put_vis(uint8_t *dest, int line_size, DCTELEM *data); |
| 35 extern void ff_simple_idct_add_vis(uint8_t *dest, int line_size, DCTELEM *data); | 35 void ff_simple_idct_add_vis(uint8_t *dest, int line_size, DCTELEM *data); |
| 36 extern void ff_simple_idct_vis(DCTELEM *data); | 36 void ff_simple_idct_vis(DCTELEM *data); |
| 37 | 37 |
| 38 /* The trick used in some of this file is the formula from the MMX | 38 /* The trick used in some of this file is the formula from the MMX |
| 39 * motion comp code, which is: | 39 * motion comp code, which is: |
| 40 * | 40 * |
| 41 * (x+y+1)>>1 == (x|y)-((x^y)>>1) | 41 * (x+y+1)>>1 == (x|y)-((x^y)>>1) |
