Mercurial > mplayer.hg
comparison libswscale/rgb2rgb.h @ 28048:3cfb920cbe4b
Delete unnecessary 'extern' keywords.
author | diego |
---|---|
date | Wed, 03 Dec 2008 15:25:27 +0000 |
parents | 3a18c8bdb555 |
children | a7e795e068ad |
comparison
equal
deleted
inserted
replaced
28047:936fc892dcab | 28048:3cfb920cbe4b |
---|---|
46 extern void (*rgb24to15) (const uint8_t *src, uint8_t *dst, long src_size); | 46 extern void (*rgb24to15) (const uint8_t *src, uint8_t *dst, long src_size); |
47 extern void (*rgb32tobgr32)(const uint8_t *src, uint8_t *dst, long src_size); | 47 extern void (*rgb32tobgr32)(const uint8_t *src, uint8_t *dst, long src_size); |
48 extern void (*rgb32tobgr16)(const uint8_t *src, uint8_t *dst, long src_size); | 48 extern void (*rgb32tobgr16)(const uint8_t *src, uint8_t *dst, long src_size); |
49 extern void (*rgb32tobgr15)(const uint8_t *src, uint8_t *dst, long src_size); | 49 extern void (*rgb32tobgr15)(const uint8_t *src, uint8_t *dst, long src_size); |
50 | 50 |
51 extern void rgb24to32 (const uint8_t *src, uint8_t *dst, long src_size); | 51 void rgb24to32 (const uint8_t *src, uint8_t *dst, long src_size); |
52 extern void rgb32to24 (const uint8_t *src, uint8_t *dst, long src_size); | 52 void rgb32to24 (const uint8_t *src, uint8_t *dst, long src_size); |
53 extern void rgb16tobgr32(const uint8_t *src, uint8_t *dst, long src_size); | 53 void rgb16tobgr32(const uint8_t *src, uint8_t *dst, long src_size); |
54 extern void rgb16to24 (const uint8_t *src, uint8_t *dst, long src_size); | 54 void rgb16to24 (const uint8_t *src, uint8_t *dst, long src_size); |
55 extern void rgb16tobgr16(const uint8_t *src, uint8_t *dst, long src_size); | 55 void rgb16tobgr16(const uint8_t *src, uint8_t *dst, long src_size); |
56 extern void rgb16tobgr15(const uint8_t *src, uint8_t *dst, long src_size); | 56 void rgb16tobgr15(const uint8_t *src, uint8_t *dst, long src_size); |
57 extern void rgb15tobgr32(const uint8_t *src, uint8_t *dst, long src_size); | 57 void rgb15tobgr32(const uint8_t *src, uint8_t *dst, long src_size); |
58 extern void rgb15to24 (const uint8_t *src, uint8_t *dst, long src_size); | 58 void rgb15to24 (const uint8_t *src, uint8_t *dst, long src_size); |
59 extern void rgb15tobgr16(const uint8_t *src, uint8_t *dst, long src_size); | 59 void rgb15tobgr16(const uint8_t *src, uint8_t *dst, long src_size); |
60 extern void rgb15tobgr15(const uint8_t *src, uint8_t *dst, long src_size); | 60 void rgb15tobgr15(const uint8_t *src, uint8_t *dst, long src_size); |
61 extern void bgr8torgb8 (const uint8_t *src, uint8_t *dst, long src_size); | 61 void bgr8torgb8 (const uint8_t *src, uint8_t *dst, long src_size); |
62 | 62 |
63 | 63 |
64 extern void palette8topacked32(const uint8_t *src, uint8_t *dst, long num_pixels, const uint8_t *palette); | 64 void palette8topacked32(const uint8_t *src, uint8_t *dst, long num_pixels, const uint8_t *palette); |
65 extern void palette8topacked24(const uint8_t *src, uint8_t *dst, long num_pixels, const uint8_t *palette); | 65 void palette8topacked24(const uint8_t *src, uint8_t *dst, long num_pixels, const uint8_t *palette); |
66 extern void palette8torgb16(const uint8_t *src, uint8_t *dst, long num_pixels, const uint8_t *palette); | 66 void palette8torgb16(const uint8_t *src, uint8_t *dst, long num_pixels, const uint8_t *palette); |
67 extern void palette8tobgr16(const uint8_t *src, uint8_t *dst, long num_pixels, const uint8_t *palette); | 67 void palette8tobgr16(const uint8_t *src, uint8_t *dst, long num_pixels, const uint8_t *palette); |
68 extern void palette8torgb15(const uint8_t *src, uint8_t *dst, long num_pixels, const uint8_t *palette); | 68 void palette8torgb15(const uint8_t *src, uint8_t *dst, long num_pixels, const uint8_t *palette); |
69 extern void palette8tobgr15(const uint8_t *src, uint8_t *dst, long num_pixels, const uint8_t *palette); | 69 void palette8tobgr15(const uint8_t *src, uint8_t *dst, long num_pixels, const uint8_t *palette); |
70 | 70 |
71 /** | 71 /** |
72 * Height should be a multiple of 2 and width should be a multiple of 16. | 72 * Height should be a multiple of 2 and width should be a multiple of 16. |
73 * (If this is a problem for anyone then tell me, and I will fix it.) | 73 * (If this is a problem for anyone then tell me, and I will fix it.) |
74 * Chrominance data is only taken from every second line, others are ignored. | 74 * Chrominance data is only taken from every second line, others are ignored. |