Revision a3e35e28 libswscale/swscale.c
libswscale/swscale.c | ||
---|---|---|
1097 | 1097 |
} |
1098 | 1098 |
} |
1099 | 1099 |
|
1100 |
static inline void rgb48ToY(uint8_t *dst, const uint8_t *src, int width) |
|
1100 |
static inline void rgb48ToY(uint8_t *dst, const uint8_t *src, int width, |
|
1101 |
uint32_t *unused) |
|
1101 | 1102 |
{ |
1102 | 1103 |
int i; |
1103 | 1104 |
for (i = 0; i < width; i++) { |
... | ... | |
1110 | 1111 |
} |
1111 | 1112 |
|
1112 | 1113 |
static inline void rgb48ToUV(uint8_t *dstU, uint8_t *dstV, |
1113 |
uint8_t *src1, uint8_t *src2, int width) |
|
1114 |
uint8_t *src1, uint8_t *src2, int width, |
|
1115 |
uint32_t *unused) |
|
1114 | 1116 |
{ |
1115 | 1117 |
int i; |
1116 | 1118 |
assert(src1==src2); |
... | ... | |
1125 | 1127 |
} |
1126 | 1128 |
|
1127 | 1129 |
static inline void rgb48ToUV_half(uint8_t *dstU, uint8_t *dstV, |
1128 |
uint8_t *src1, uint8_t *src2, int width) |
|
1130 |
uint8_t *src1, uint8_t *src2, int width, |
|
1131 |
uint32_t *unused) |
|
1129 | 1132 |
{ |
1130 | 1133 |
int i; |
1131 | 1134 |
assert(src1==src2); |
Also available in: Unified diff