diff options
author | Diego Pettenò | 2008-10-09 11:11:35 +0000 |
---|---|---|
committer | Diego Pettenò | 2008-10-09 11:11:35 +0000 |
commit | faf6112e26e1cfa3c37497f66ebdfe17ff316552 (patch) | |
tree | 912e24eeaf8e2ce31e8b97e168cee657cd69bfe7 /libswscale | |
parent | 6683a37f8988e80ea1c99c663a337647ffa3f307 (diff) |
Mark variation-specific interleaveBytes static.
These functions are never called by themselves, the alias
interleaveBytes is used instead.
Originally committed as revision 27735 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
Diffstat (limited to 'libswscale')
-rw-r--r-- | libswscale/rgb2rgb_template.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libswscale/rgb2rgb_template.c b/libswscale/rgb2rgb_template.c index d7c581b44c..c9a16e2512 100644 --- a/libswscale/rgb2rgb_template.c +++ b/libswscale/rgb2rgb_template.c @@ -2429,7 +2429,7 @@ static inline void RENAME(rgb24toyv12)(const uint8_t *src, uint8_t *ydst, uint8_ } } -void RENAME(interleaveBytes)(uint8_t *src1, uint8_t *src2, uint8_t *dest, +static void RENAME(interleaveBytes)(uint8_t *src1, uint8_t *src2, uint8_t *dest, long width, long height, long src1Stride, long src2Stride, long dstStride){ long h; |