comparison libswscale/rgb2rgb_template.c @ 27703:3815517f49d4

Mark variation-specific interleaveBytes static. These functions are never called by themselves, the alias interleaveBytes is used instead.
author flameeyes
date Thu, 09 Oct 2008 11:11:35 +0000
parents 06d645ed0c9f
children 7b83cbade239
comparison
equal deleted inserted replaced
27702:b6a499f72725 27703:3815517f49d4
2427 ydst += lumStride; 2427 ydst += lumStride;
2428 src += srcStride; 2428 src += srcStride;
2429 } 2429 }
2430 } 2430 }
2431 2431
2432 void RENAME(interleaveBytes)(uint8_t *src1, uint8_t *src2, uint8_t *dest, 2432 static void RENAME(interleaveBytes)(uint8_t *src1, uint8_t *src2, uint8_t *dest,
2433 long width, long height, long src1Stride, 2433 long width, long height, long src1Stride,
2434 long src2Stride, long dstStride){ 2434 long src2Stride, long dstStride){
2435 long h; 2435 long h;
2436 2436
2437 for (h=0; h < height; h++) 2437 for (h=0; h < height; h++)