38 #define input_pixel(pos) (isBE(origin) ? AV_RB16(pos) : AV_RL16(pos))
40 #define r ((origin == AV_PIX_FMT_BGR48BE || origin == AV_PIX_FMT_BGR48LE || origin == AV_PIX_FMT_BGRA64BE || origin == AV_PIX_FMT_BGRA64LE) ? b_r : r_b)
41 #define b ((origin == AV_PIX_FMT_BGR48BE || origin == AV_PIX_FMT_BGR48LE || origin == AV_PIX_FMT_BGRA64BE || origin == AV_PIX_FMT_BGRA64LE) ? r_b : b_r)
49 for (i = 0; i <
width; i++) {
60 const uint16_t *src1,
const uint16_t *src2,
67 for (i = 0; i <
width; i++) {
79 const uint16_t *src1,
const uint16_t *src2,
86 for (i = 0; i <
width; i++) {
96 #define rgb64funcs(pattern, BE_LE, origin) \
97 static void pattern ## 64 ## BE_LE ## ToY_c(uint8_t *_dst, const uint8_t *_src, const uint8_t *unused0, const uint8_t *unused1,\
98 int width, uint32_t *rgb2yuv) \
100 const uint16_t *src = (const uint16_t *) _src; \
101 uint16_t *dst = (uint16_t *) _dst; \
102 rgb64ToY_c_template(dst, src, width, origin, rgb2yuv); \
105 static void pattern ## 64 ## BE_LE ## ToUV_c(uint8_t *_dstU, uint8_t *_dstV, \
106 const uint8_t *unused0, const uint8_t *_src1, const uint8_t *_src2, \
107 int width, uint32_t *rgb2yuv) \
109 const uint16_t *src1 = (const uint16_t *) _src1, \
110 *src2 = (const uint16_t *) _src2; \
111 uint16_t *dstU = (uint16_t *) _dstU, *dstV = (uint16_t *) _dstV; \
112 rgb64ToUV_c_template(dstU, dstV, src1, src2, width, origin, rgb2yuv); \
115 static void pattern ## 64 ## BE_LE ## ToUV_half_c(uint8_t *_dstU, uint8_t *_dstV, \
116 const uint8_t *unused0, const uint8_t *_src1, const uint8_t *_src2, \
117 int width, uint32_t *rgb2yuv) \
119 const uint16_t *src1 = (const uint16_t *) _src1, \
120 *src2 = (const uint16_t *) _src2; \
121 uint16_t *dstU = (uint16_t *) _dstU, *dstV = (uint16_t *) _dstV; \
122 rgb64ToUV_half_c_template(dstU, dstV, src1, src2, width, origin, rgb2yuv); \
137 for (i = 0; i <
width; i++) {
148 const uint16_t *src1,
149 const uint16_t *src2,
158 for (i = 0; i <
width; i++) {
170 const uint16_t *src1,
171 const uint16_t *src2,
180 for (i = 0; i <
width; i++) {
197 #define rgb48funcs(pattern, BE_LE, origin) \
198 static void pattern ## 48 ## BE_LE ## ToY_c(uint8_t *_dst, \
199 const uint8_t *_src, \
200 const uint8_t *unused0, const uint8_t *unused1,\
204 const uint16_t *src = (const uint16_t *)_src; \
205 uint16_t *dst = (uint16_t *)_dst; \
206 rgb48ToY_c_template(dst, src, width, origin, rgb2yuv); \
209 static void pattern ## 48 ## BE_LE ## ToUV_c(uint8_t *_dstU, \
211 const uint8_t *unused0, \
212 const uint8_t *_src1, \
213 const uint8_t *_src2, \
217 const uint16_t *src1 = (const uint16_t *)_src1, \
218 *src2 = (const uint16_t *)_src2; \
219 uint16_t *dstU = (uint16_t *)_dstU, \
220 *dstV = (uint16_t *)_dstV; \
221 rgb48ToUV_c_template(dstU, dstV, src1, src2, width, origin, rgb2yuv); \
224 static void pattern ## 48 ## BE_LE ## ToUV_half_c(uint8_t *_dstU, \
226 const uint8_t *unused0, \
227 const uint8_t *_src1, \
228 const uint8_t *_src2, \
232 const uint16_t *src1 = (const uint16_t *)_src1, \
233 *src2 = (const uint16_t *)_src2; \
234 uint16_t *dstU = (uint16_t *)_dstU, \
235 *dstV = (uint16_t *)_dstV; \
236 rgb48ToUV_half_c_template(dstU, dstV, src1, src2, width, origin, rgb2yuv); \
244 #define input_pixel(i) ((origin == AV_PIX_FMT_RGBA || \
245 origin == AV_PIX_FMT_BGRA || \
246 origin == AV_PIX_FMT_ARGB || \
247 origin == AV_PIX_FMT_ABGR) \
248 ? AV_RN32A(&src[(i) * 4]) \
249 : (isBE(origin) ? AV_RB16(&src[(i) * 2]) \
250 : AV_RL16(&src[(i) * 2])))
258 int maskr,
int maskg,
260 int gsh,
int bsh,
int S,
263 const int ry = rgb2yuv[
RY_IDX]<<rsh, gy = rgb2yuv[
GY_IDX]<<gsh, by = rgb2yuv[
BY_IDX]<<bsh;
264 const unsigned rnd = (32<<((
S)-1)) + (1<<(S-7));
267 for (i = 0; i <
width; i++) {
269 int b = (px & maskb) >> shb;
270 int g = (px & maskg) >> shg;
271 int r = (px & maskr) >> shr;
273 dst[i] = (ry * r + gy * g + by * b + rnd) >> ((S)-6);
284 int maskr,
int maskg,
286 int gsh,
int bsh,
int S,
289 const int ru = rgb2yuv[
RU_IDX] << rsh, gu = rgb2yuv[
GU_IDX] << gsh, bu = rgb2yuv[
BU_IDX] << bsh,
290 rv = rgb2yuv[
RV_IDX] << rsh, gv = rgb2yuv[
GV_IDX] << gsh, bv = rgb2yuv[
BV_IDX] << bsh;
291 const unsigned rnd = (256
u<<((
S)-1)) + (1<<(S-7));
294 for (i = 0; i <
width; i++) {
296 int b = (px & maskb) >> shb;
297 int g = (px & maskg) >> shg;
298 int r = (px & maskr) >> shr;
300 dstU[i] = (ru * r + gu * g + bu * b + rnd) >> ((S)-6);
301 dstV[i] = (rv * r + gv * g + bv * b + rnd) >> ((S)-6);
312 int maskr,
int maskg,
314 int gsh,
int bsh,
int S,
317 const int ru = rgb2yuv[
RU_IDX] << rsh, gu = rgb2yuv[
GU_IDX] << gsh, bu = rgb2yuv[
BU_IDX] << bsh,
318 rv = rgb2yuv[
RV_IDX] << rsh, gv = rgb2yuv[
GV_IDX] << gsh, bv = rgb2yuv[
BV_IDX] << bsh,
319 maskgx = ~(maskr | maskb);
320 const unsigned rnd = (256
U<<(
S)) + (1<<(S-6));
326 for (i = 0; i <
width; i++) {
329 int b,
r,
g = (px0 & maskgx) + (px1 & maskgx);
330 int rb = px0 + px1 -
g;
332 b = (rb & maskb) >> shb;
338 g = (g & maskg) >> shg;
340 r = (rb & maskr) >> shr;
342 dstU[i] = (ru * r + gu * g + bu * b + (unsigned)rnd) >> ((
S)-6+1);
343 dstV[i] = (rv * r + gv * g + bv * b + (unsigned)rnd) >> ((
S)-6+1);
349 #define rgb16_32_wrapper(fmt, name, shr, shg, shb, shp, maskr, \
350 maskg, maskb, rsh, gsh, bsh, S) \
351 static void name ## ToY_c(uint8_t *dst, const uint8_t *src, const uint8_t *unused1, const uint8_t *unused2, \
352 int width, uint32_t *tab) \
354 rgb16_32ToY_c_template((int16_t*)dst, src, width, fmt, shr, shg, shb, shp, \
355 maskr, maskg, maskb, rsh, gsh, bsh, S, tab); \
358 static void name ## ToUV_c(uint8_t *dstU, uint8_t *dstV, \
359 const uint8_t *unused0, const uint8_t *src, const uint8_t *dummy, \
360 int width, uint32_t *tab) \
362 rgb16_32ToUV_c_template((int16_t*)dstU, (int16_t*)dstV, src, width, fmt, \
363 shr, shg, shb, shp, \
364 maskr, maskg, maskb, rsh, gsh, bsh, S, tab);\
367 static void name ## ToUV_half_c(uint8_t *dstU, uint8_t *dstV, \
368 const uint8_t *unused0, const uint8_t *src, \
369 const uint8_t *dummy, \
370 int width, uint32_t *tab) \
372 rgb16_32ToUV_half_c_template((int16_t*)dstU, (int16_t*)dstV, src, width, fmt, \
373 shr, shg, shb, shp, \
374 maskr, maskg, maskb, \
375 rsh, gsh, bsh, S, tab); \
378 rgb16_32_wrapper(
AV_PIX_FMT_BGR32, bgr32, 16, 0, 0, 0, 0xFF0000, 0xFF00, 0x00FF, 8, 0, 8, RGB2YUV_SHIFT + 8)
379 rgb16_32_wrapper(
AV_PIX_FMT_BGR32_1,
bgr321, 16, 0, 0, 8, 0xFF0000, 0xFF00, 0x00FF, 8, 0, 8, RGB2YUV_SHIFT + 8)
380 rgb16_32_wrapper(
AV_PIX_FMT_RGB32, rgb32, 0, 0, 16, 0, 0x00FF, 0xFF00, 0xFF0000, 8, 0, 8, RGB2YUV_SHIFT + 8)
381 rgb16_32_wrapper(
AV_PIX_FMT_RGB32_1,
rgb321, 0, 0, 16, 8, 0x00FF, 0xFF00, 0xFF0000, 8, 0, 8, RGB2YUV_SHIFT + 8)
382 rgb16_32_wrapper(
AV_PIX_FMT_BGR565LE, bgr16le, 0, 0, 0, 0, 0x001F, 0x07E0, 0xF800, 11, 5, 0, RGB2YUV_SHIFT + 8)
383 rgb16_32_wrapper(
AV_PIX_FMT_BGR555LE,
bgr15le, 0, 0, 0, 0, 0x001F, 0x03E0, 0x7C00, 10, 5, 0, RGB2YUV_SHIFT + 7)
384 rgb16_32_wrapper(
AV_PIX_FMT_BGR444LE, bgr12le, 0, 0, 0, 0, 0x000F, 0x00F0, 0x0F00, 8, 4, 0, RGB2YUV_SHIFT + 4)
385 rgb16_32_wrapper(
AV_PIX_FMT_RGB565LE,
rgb16le, 0, 0, 0, 0, 0xF800, 0x07E0, 0x001F, 0, 5, 11, RGB2YUV_SHIFT + 8)
386 rgb16_32_wrapper(
AV_PIX_FMT_RGB555LE, rgb15le, 0, 0, 0, 0, 0x7C00, 0x03E0, 0x001F, 0, 5, 10, RGB2YUV_SHIFT + 7)
387 rgb16_32_wrapper(
AV_PIX_FMT_RGB444LE,
rgb12le, 0, 0, 0, 0, 0x0F00, 0x00F0, 0x000F, 0, 4, 8, RGB2YUV_SHIFT + 4)
388 rgb16_32_wrapper(
AV_PIX_FMT_BGR565BE, bgr16be, 0, 0, 0, 0, 0x001F, 0x07E0, 0xF800, 11, 5, 0, RGB2YUV_SHIFT + 8)
389 rgb16_32_wrapper(
AV_PIX_FMT_BGR555BE,
bgr15be, 0, 0, 0, 0, 0x001F, 0x03E0, 0x7C00, 10, 5, 0, RGB2YUV_SHIFT + 7)
390 rgb16_32_wrapper(
AV_PIX_FMT_BGR444BE, bgr12be, 0, 0, 0, 0, 0x000F, 0x00F0, 0x0F00, 8, 4, 0, RGB2YUV_SHIFT + 4)
391 rgb16_32_wrapper(
AV_PIX_FMT_RGB565BE,
rgb16be, 0, 0, 0, 0, 0xF800, 0x07E0, 0x001F, 0, 5, 11, RGB2YUV_SHIFT + 8)
392 rgb16_32_wrapper(
AV_PIX_FMT_RGB555BE, rgb15be, 0, 0, 0, 0, 0x7C00, 0x03E0, 0x001F, 0, 5, 10, RGB2YUV_SHIFT + 7)
393 rgb16_32_wrapper(
AV_PIX_FMT_RGB444BE,
rgb12be, 0, 0, 0, 0, 0x0F00, 0x00F0, 0x000F, 0, 4, 8, RGB2YUV_SHIFT + 4)
399 uint16_t *dstU = (uint16_t *)_dstU;
400 uint16_t *dstV = (uint16_t *)_dstV;
405 for (i = 0; i <
width; i++) {
406 unsigned int g = gsrc[2*i] + gsrc[2*i+1];
407 unsigned int b = bsrc[2*i] + bsrc[2*i+1];
408 unsigned int r = rsrc[2*i] + rsrc[2*i+1];
418 int16_t *dst = (int16_t *)_dst;
419 const uint16_t *
src = (
const uint16_t *)_src;
421 for (i = 0; i <
width; i++)
422 dst[i] = src[4 * i + 3];
427 int16_t *dst = (int16_t *)_dst;
429 for (i=0; i<
width; i++) {
436 int16_t *dst = (int16_t *)_dst;
438 for (i=0; i<
width; i++) {
439 dst[i]= src[4*i+3]<<6;
445 int16_t *dst = (int16_t *)_dst;
447 for (i=0; i<
width; i++) {
450 dst[i]= (pal[d] >> 24)<<6;
456 int16_t *dst = (int16_t *)_dst;
458 for (i = 0; i <
width; i++) {
461 dst[i] = (pal[d] & 0xFF)<<6;
467 int width, uint32_t *pal)
469 uint16_t *dstU = (uint16_t *)_dstU;
470 int16_t *dstV = (int16_t *)_dstV;
473 for (i = 0; i <
width; i++) {
474 int p = pal[src1[i]];
483 int16_t *dst = (int16_t *)_dst;
485 width = (width + 7) >> 3;
486 for (i = 0; i <
width; i++) {
488 for (j = 0; j < 8; j++)
489 dst[8*i+j]= ((d>>(7-j))&1) * 16383;
493 for (j = 0; j < (width&7); j++)
494 dst[8*i+j]= ((d>>(7-j))&1) * 16383;
500 int16_t *dst = (int16_t *)_dst;
502 width = (width + 7) >> 3;
503 for (i = 0; i <
width; i++) {
505 for (j = 0; j < 8; j++)
506 dst[8*i+j]= ((d>>(7-j))&1) * 16383;
510 for (j = 0; j < (width&7); j++)
511 dst[8*i+j] = ((d>>(7-j))&1) * 16383;
519 for (i = 0; i <
width; i++)
527 for (i = 0; i <
width; i++) {
528 dstU[i] = src1[4 * i + 1];
529 dstV[i] = src1[4 * i + 3];
538 for (i = 0; i <
width; i++) {
539 dstV[i] = src1[4 * i + 1];
540 dstU[i] = src1[4 * i + 3];
549 const uint16_t *
src = (
const uint16_t *)_src;
550 uint16_t *dst = (uint16_t *)_dst;
551 for (i = 0; i <
width; i++)
559 const uint16_t *src1 = (
const uint16_t *)_src1,
560 *src2 = (
const uint16_t *)_src2;
561 uint16_t *dstU = (uint16_t *)_dstU, *dstV = (uint16_t *)_dstV;
562 for (i = 0; i <
width; i++) {
574 for (i = 0; i <
width; i++)
575 dst[i] = src[2 * i + 1];
582 for (i = 0; i <
width; i++) {
583 dstU[i] = src1[4 * i + 0];
584 dstV[i] = src1[4 * i + 2];
593 for (i = 0; i <
width; i++) {
594 dst1[i] = src[2 * i + 0];
595 dst2[i] = src[2 * i + 1];
601 int width, uint32_t *unused)
608 int width, uint32_t *unused)
613 #define input_pixel(pos) (isBE(origin) ? AV_RB16(pos) : AV_RL16(pos))
618 int16_t *dst = (int16_t *)_dst;
621 for (i = 0; i <
width; i++) {
622 int b = src[i * 3 + 0];
623 int g = src[i * 3 + 1];
624 int r = src[i * 3 + 2];
633 int16_t *dstU = (int16_t *)_dstU;
634 int16_t *dstV = (int16_t *)_dstV;
638 for (i = 0; i <
width; i++) {
639 int b = src1[3 * i + 0];
640 int g = src1[3 * i + 1];
641 int r = src1[3 * i + 2];
652 int16_t *dstU = (int16_t *)_dstU;
653 int16_t *dstV = (int16_t *)_dstV;
657 for (i = 0; i <
width; i++) {
658 int b = src1[6 * i + 0] + src1[6 * i + 3];
659 int g = src1[6 * i + 1] + src1[6 * i + 4];
660 int r = src1[6 * i + 2] + src1[6 * i + 5];
671 int16_t *dst = (int16_t *)_dst;
674 for (i = 0; i <
width; i++) {
675 int r = src[i * 3 + 0];
676 int g = src[i * 3 + 1];
677 int b = src[i * 3 + 2];
686 int16_t *dstU = (int16_t *)_dstU;
687 int16_t *dstV = (int16_t *)_dstV;
692 for (i = 0; i <
width; i++) {
693 int r = src1[3 * i + 0];
694 int g = src1[3 * i + 1];
695 int b = src1[3 * i + 2];
705 int16_t *dstU = (int16_t *)_dstU;
706 int16_t *dstV = (int16_t *)_dstV;
711 for (i = 0; i <
width; i++) {
712 int r = src1[6 * i + 0] + src1[6 * i + 3];
713 int g = src1[6 * i + 1] + src1[6 * i + 4];
714 int b = src1[6 * i + 2] + src1[6 * i + 5];
723 uint16_t *dst = (uint16_t *)_dst;
726 for (i = 0; i <
width; i++) {
737 uint16_t *dst = (uint16_t *)_dst;
739 for (i = 0; i <
width; i++)
740 dst[i] = src[3][i] << 6;
745 uint16_t *dstU = (uint16_t *)_dstU;
746 uint16_t *dstV = (uint16_t *)_dstV;
750 for (i = 0; i <
width; i++) {
761 is_be ? AV_RB16(src) : AV_RL16(src)
766 const uint16_t **
src = (
const uint16_t **)_src;
767 uint16_t *dst = (uint16_t *)_dst;
769 int shift = bpc < 16 ? bpc : 14;
770 for (i = 0; i <
width; i++) {
771 int g =
rdpx(src[0] + i);
772 int b =
rdpx(src[1] + i);
773 int r =
rdpx(src[2] + i);
784 const uint16_t **
src = (
const uint16_t **)_src;
785 uint16_t *dstU = (uint16_t *)_dstU;
786 uint16_t *dstV = (uint16_t *)_dstV;
789 int shift = bpc < 16 ? bpc : 14;
790 for (i = 0; i <
width; i++) {
791 int g =
rdpx(src[0] + i);
792 int b =
rdpx(src[1] + i);
793 int r =
rdpx(src[2] + i);
801 #define rgb9plus_planar_funcs_endian(nbits, endian_name, endian) \
802 static void planar_rgb##nbits##endian_name##_to_y(uint8_t *dst, const uint8_t *src[4], \
803 int w, int32_t *rgb2yuv) \
805 planar_rgb16_to_y(dst, src, w, nbits, endian, rgb2yuv); \
807 static void planar_rgb##nbits##endian_name##_to_uv(uint8_t *dstU, uint8_t *dstV, \
808 const uint8_t *src[4], int w, int32_t *rgb2yuv) \
810 planar_rgb16_to_uv(dstU, dstV, src, w, nbits, endian, rgb2yuv); \
813 #define rgb9plus_planar_funcs(nbits) \
814 rgb9plus_planar_funcs_endian(nbits, le, 0) \
815 rgb9plus_planar_funcs_endian(nbits, be, 1)
852 c->readChrPlanar = planar_rgb9le_to_uv;
855 c->readChrPlanar = planar_rgb10le_to_uv;
858 c->readChrPlanar = planar_rgb12le_to_uv;
861 c->readChrPlanar = planar_rgb14le_to_uv;
865 c->readChrPlanar = planar_rgb16le_to_uv;
868 c->readChrPlanar = planar_rgb9be_to_uv;
871 c->readChrPlanar = planar_rgb10be_to_uv;
874 c->readChrPlanar = planar_rgb12be_to_uv;
877 c->readChrPlanar = planar_rgb14be_to_uv;
881 c->readChrPlanar = planar_rgb16be_to_uv;
945 if (c->chrSrcHSubSample) {
948 c->chrToYV12 = rgb64BEToUV_half_c;
951 c->chrToYV12 = rgb64LEToUV_half_c;
954 c->chrToYV12 = bgr64BEToUV_half_c;
957 c->chrToYV12 = bgr64LEToUV_half_c;
960 c->chrToYV12 = rgb48BEToUV_half_c;
963 c->chrToYV12 = rgb48LEToUV_half_c;
966 c->chrToYV12 = bgr48BEToUV_half_c;
969 c->chrToYV12 = bgr48LEToUV_half_c;
972 c->chrToYV12 = bgr32ToUV_half_c;
975 c->chrToYV12 = bgr321ToUV_half_c;
981 c->chrToYV12 = bgr16leToUV_half_c;
984 c->chrToYV12 = bgr16beToUV_half_c;
987 c->chrToYV12 = bgr15leToUV_half_c;
990 c->chrToYV12 = bgr15beToUV_half_c;
997 c->chrToYV12 = bgr12leToUV_half_c;
1000 c->chrToYV12 = bgr12beToUV_half_c;
1003 c->chrToYV12 = rgb32ToUV_half_c;
1006 c->chrToYV12 = rgb321ToUV_half_c;
1012 c->chrToYV12 = rgb16leToUV_half_c;
1015 c->chrToYV12 = rgb16beToUV_half_c;
1018 c->chrToYV12 = rgb15leToUV_half_c;
1021 c->chrToYV12 = rgb15beToUV_half_c;
1024 c->chrToYV12 = rgb12leToUV_half_c;
1027 c->chrToYV12 = rgb12beToUV_half_c;
1031 switch (srcFormat) {
1033 c->chrToYV12 = rgb64BEToUV_c;
1036 c->chrToYV12 = rgb64LEToUV_c;
1039 c->chrToYV12 = bgr64BEToUV_c;
1042 c->chrToYV12 = bgr64LEToUV_c;
1045 c->chrToYV12 = rgb48BEToUV_c;
1048 c->chrToYV12 = rgb48LEToUV_c;
1051 c->chrToYV12 = bgr48BEToUV_c;
1054 c->chrToYV12 = bgr48LEToUV_c;
1057 c->chrToYV12 = bgr32ToUV_c;
1060 c->chrToYV12 = bgr321ToUV_c;
1066 c->chrToYV12 = bgr16leToUV_c;
1069 c->chrToYV12 = bgr16beToUV_c;
1072 c->chrToYV12 = bgr15leToUV_c;
1075 c->chrToYV12 = bgr15beToUV_c;
1078 c->chrToYV12 = bgr12leToUV_c;
1081 c->chrToYV12 = bgr12beToUV_c;
1084 c->chrToYV12 = rgb32ToUV_c;
1087 c->chrToYV12 = rgb321ToUV_c;
1093 c->chrToYV12 = rgb16leToUV_c;
1096 c->chrToYV12 = rgb16beToUV_c;
1099 c->chrToYV12 = rgb15leToUV_c;
1102 c->chrToYV12 = rgb15beToUV_c;
1105 c->chrToYV12 = rgb12leToUV_c;
1108 c->chrToYV12 = rgb12beToUV_c;
1113 c->lumToYV12 = NULL;
1114 c->alpToYV12 = NULL;
1115 switch (srcFormat) {
1117 c->readLumPlanar = planar_rgb9le_to_y;
1120 c->readLumPlanar = planar_rgb10le_to_y;
1123 c->readLumPlanar = planar_rgb12le_to_y;
1126 c->readLumPlanar = planar_rgb14le_to_y;
1130 c->readLumPlanar = planar_rgb16le_to_y;
1133 c->readLumPlanar = planar_rgb9be_to_y;
1136 c->readLumPlanar = planar_rgb10be_to_y;
1139 c->readLumPlanar = planar_rgb12be_to_y;
1142 c->readLumPlanar = planar_rgb14be_to_y;
1146 c->readLumPlanar = planar_rgb16be_to_y;
1230 c->lumToYV12 = bgr16leToY_c;
1233 c->lumToYV12 = bgr16beToY_c;
1236 c->lumToYV12 = bgr15leToY_c;
1239 c->lumToYV12 = bgr15beToY_c;
1242 c->lumToYV12 = bgr12leToY_c;
1245 c->lumToYV12 = bgr12beToY_c;
1251 c->lumToYV12 = rgb16leToY_c;
1254 c->lumToYV12 = rgb16beToY_c;
1257 c->lumToYV12 = rgb15leToY_c;
1260 c->lumToYV12 = rgb15beToY_c;
1263 c->lumToYV12 = rgb12leToY_c;
1266 c->lumToYV12 = rgb12beToY_c;
1282 c->lumToYV12 = bgr32ToY_c;
1285 c->lumToYV12 = bgr321ToY_c;
1288 c->lumToYV12 = rgb32ToY_c;
1291 c->lumToYV12 = rgb321ToY_c;
1294 c->lumToYV12 = rgb48BEToY_c;
1297 c->lumToYV12 = rgb48LEToY_c;
1300 c->lumToYV12 = bgr48BEToY_c;
1303 c->lumToYV12 = bgr48LEToY_c;
1306 c->lumToYV12 = rgb64BEToY_c;
1309 c->lumToYV12 = rgb64LEToY_c;
1312 c->lumToYV12 = bgr64BEToY_c;
1315 c->lumToYV12 = bgr64LEToY_c;
1319 if (HAVE_BIGENDIAN == !
isBE(srcFormat))
1322 switch (srcFormat) {