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++) {
572 for (i = 0; i <
width; i++)
580 for (i = 0; i <
width; i++)
588 for (i = 0; i <
width; i++)
596 for (i = 0; i <
width; i++)
606 for (i = 0; i <
width; i++)
607 dst[i] = src[2 * i + 1];
614 for (i = 0; i <
width; i++) {
615 dstU[i] = src1[4 * i + 0];
616 dstV[i] = src1[4 * i + 2];
625 for (i = 0; i <
width; i++) {
626 dst1[i] = src[2 * i + 0];
627 dst2[i] = src[2 * i + 1];
633 int width, uint32_t *unused)
640 int width, uint32_t *unused)
645 #define input_pixel(pos) (isBE(origin) ? AV_RB16(pos) : AV_RL16(pos))
650 int16_t *dst = (int16_t *)_dst;
653 for (i = 0; i <
width; i++) {
654 int b = src[i * 3 + 0];
655 int g = src[i * 3 + 1];
656 int r = src[i * 3 + 2];
665 int16_t *dstU = (int16_t *)_dstU;
666 int16_t *dstV = (int16_t *)_dstV;
670 for (i = 0; i <
width; i++) {
671 int b = src1[3 * i + 0];
672 int g = src1[3 * i + 1];
673 int r = src1[3 * i + 2];
684 int16_t *dstU = (int16_t *)_dstU;
685 int16_t *dstV = (int16_t *)_dstV;
689 for (i = 0; i <
width; i++) {
690 int b = src1[6 * i + 0] + src1[6 * i + 3];
691 int g = src1[6 * i + 1] + src1[6 * i + 4];
692 int r = src1[6 * i + 2] + src1[6 * i + 5];
703 int16_t *dst = (int16_t *)_dst;
706 for (i = 0; i <
width; i++) {
707 int r = src[i * 3 + 0];
708 int g = src[i * 3 + 1];
709 int b = src[i * 3 + 2];
718 int16_t *dstU = (int16_t *)_dstU;
719 int16_t *dstV = (int16_t *)_dstV;
724 for (i = 0; i <
width; i++) {
725 int r = src1[3 * i + 0];
726 int g = src1[3 * i + 1];
727 int b = src1[3 * i + 2];
737 int16_t *dstU = (int16_t *)_dstU;
738 int16_t *dstV = (int16_t *)_dstV;
743 for (i = 0; i <
width; i++) {
744 int r = src1[6 * i + 0] + src1[6 * i + 3];
745 int g = src1[6 * i + 1] + src1[6 * i + 4];
746 int b = src1[6 * i + 2] + src1[6 * i + 5];
755 uint16_t *dst = (uint16_t *)_dst;
758 for (i = 0; i <
width; i++) {
769 uint16_t *dst = (uint16_t *)_dst;
771 for (i = 0; i <
width; i++)
772 dst[i] = src[3][i] << 6;
777 uint16_t *dstU = (uint16_t *)_dstU;
778 uint16_t *dstV = (uint16_t *)_dstV;
782 for (i = 0; i <
width; i++) {
793 is_be ? AV_RB16(src) : AV_RL16(src)
798 const uint16_t **
src = (
const uint16_t **)_src;
799 uint16_t *dst = (uint16_t *)_dst;
801 int shift = bpc < 16 ? bpc : 14;
802 for (i = 0; i <
width; i++) {
803 int g =
rdpx(src[0] + i);
804 int b =
rdpx(src[1] + i);
805 int r =
rdpx(src[2] + i);
816 const uint16_t **
src = (
const uint16_t **)_src;
817 uint16_t *dstU = (uint16_t *)_dstU;
818 uint16_t *dstV = (uint16_t *)_dstV;
821 int shift = bpc < 16 ? bpc : 14;
822 for (i = 0; i <
width; i++) {
823 int g =
rdpx(src[0] + i);
824 int b =
rdpx(src[1] + i);
825 int r =
rdpx(src[2] + i);
833 #define rgb9plus_planar_funcs_endian(nbits, endian_name, endian) \
834 static void planar_rgb##nbits##endian_name##_to_y(uint8_t *dst, const uint8_t *src[4], \
835 int w, int32_t *rgb2yuv) \
837 planar_rgb16_to_y(dst, src, w, nbits, endian, rgb2yuv); \
839 static void planar_rgb##nbits##endian_name##_to_uv(uint8_t *dstU, uint8_t *dstV, \
840 const uint8_t *src[4], int w, int32_t *rgb2yuv) \
842 planar_rgb16_to_uv(dstU, dstV, src, w, nbits, endian, rgb2yuv); \
845 #define rgb9plus_planar_funcs(nbits) \
846 rgb9plus_planar_funcs_endian(nbits, le, 0) \
847 rgb9plus_planar_funcs_endian(nbits, be, 1)
884 c->readChrPlanar = planar_rgb9le_to_uv;
887 c->readChrPlanar = planar_rgb10le_to_uv;
890 c->readChrPlanar = planar_rgb12le_to_uv;
893 c->readChrPlanar = planar_rgb14le_to_uv;
897 c->readChrPlanar = planar_rgb16le_to_uv;
900 c->readChrPlanar = planar_rgb9be_to_uv;
903 c->readChrPlanar = planar_rgb10be_to_uv;
906 c->readChrPlanar = planar_rgb12be_to_uv;
909 c->readChrPlanar = planar_rgb14be_to_uv;
913 c->readChrPlanar = planar_rgb16be_to_uv;
977 if (c->chrSrcHSubSample) {
980 c->chrToYV12 = rgb64BEToUV_half_c;
983 c->chrToYV12 = rgb64LEToUV_half_c;
986 c->chrToYV12 = bgr64BEToUV_half_c;
989 c->chrToYV12 = bgr64LEToUV_half_c;
992 c->chrToYV12 = rgb48BEToUV_half_c;
995 c->chrToYV12 = rgb48LEToUV_half_c;
998 c->chrToYV12 = bgr48BEToUV_half_c;
1001 c->chrToYV12 = bgr48LEToUV_half_c;
1004 c->chrToYV12 = bgr32ToUV_half_c;
1007 c->chrToYV12 = bgr321ToUV_half_c;
1013 c->chrToYV12 = bgr16leToUV_half_c;
1016 c->chrToYV12 = bgr16beToUV_half_c;
1019 c->chrToYV12 = bgr15leToUV_half_c;
1022 c->chrToYV12 = bgr15beToUV_half_c;
1029 c->chrToYV12 = bgr12leToUV_half_c;
1032 c->chrToYV12 = bgr12beToUV_half_c;
1035 c->chrToYV12 = rgb32ToUV_half_c;
1038 c->chrToYV12 = rgb321ToUV_half_c;
1044 c->chrToYV12 = rgb16leToUV_half_c;
1047 c->chrToYV12 = rgb16beToUV_half_c;
1050 c->chrToYV12 = rgb15leToUV_half_c;
1053 c->chrToYV12 = rgb15beToUV_half_c;
1056 c->chrToYV12 = rgb12leToUV_half_c;
1059 c->chrToYV12 = rgb12beToUV_half_c;
1063 switch (srcFormat) {
1065 c->chrToYV12 = rgb64BEToUV_c;
1068 c->chrToYV12 = rgb64LEToUV_c;
1071 c->chrToYV12 = bgr64BEToUV_c;
1074 c->chrToYV12 = bgr64LEToUV_c;
1077 c->chrToYV12 = rgb48BEToUV_c;
1080 c->chrToYV12 = rgb48LEToUV_c;
1083 c->chrToYV12 = bgr48BEToUV_c;
1086 c->chrToYV12 = bgr48LEToUV_c;
1089 c->chrToYV12 = bgr32ToUV_c;
1092 c->chrToYV12 = bgr321ToUV_c;
1098 c->chrToYV12 = bgr16leToUV_c;
1101 c->chrToYV12 = bgr16beToUV_c;
1104 c->chrToYV12 = bgr15leToUV_c;
1107 c->chrToYV12 = bgr15beToUV_c;
1110 c->chrToYV12 = bgr12leToUV_c;
1113 c->chrToYV12 = bgr12beToUV_c;
1116 c->chrToYV12 = rgb32ToUV_c;
1119 c->chrToYV12 = rgb321ToUV_c;
1125 c->chrToYV12 = rgb16leToUV_c;
1128 c->chrToYV12 = rgb16beToUV_c;
1131 c->chrToYV12 = rgb15leToUV_c;
1134 c->chrToYV12 = rgb15beToUV_c;
1137 c->chrToYV12 = rgb12leToUV_c;
1140 c->chrToYV12 = rgb12beToUV_c;
1145 c->lumToYV12 = NULL;
1146 c->alpToYV12 = NULL;
1147 switch (srcFormat) {
1149 c->readLumPlanar = planar_rgb9le_to_y;
1152 c->readLumPlanar = planar_rgb10le_to_y;
1155 c->readLumPlanar = planar_rgb12le_to_y;
1158 c->readLumPlanar = planar_rgb14le_to_y;
1162 c->readLumPlanar = planar_rgb16le_to_y;
1165 c->readLumPlanar = planar_rgb9be_to_y;
1168 c->readLumPlanar = planar_rgb10be_to_y;
1171 c->readLumPlanar = planar_rgb12be_to_y;
1174 c->readLumPlanar = planar_rgb14be_to_y;
1178 c->readLumPlanar = planar_rgb16be_to_y;
1270 c->lumToYV12 = bgr16leToY_c;
1273 c->lumToYV12 = bgr16beToY_c;
1276 c->lumToYV12 = bgr15leToY_c;
1279 c->lumToYV12 = bgr15beToY_c;
1282 c->lumToYV12 = bgr12leToY_c;
1285 c->lumToYV12 = bgr12beToY_c;
1291 c->lumToYV12 = rgb16leToY_c;
1294 c->lumToYV12 = rgb16beToY_c;
1297 c->lumToYV12 = rgb15leToY_c;
1300 c->lumToYV12 = rgb15beToY_c;
1303 c->lumToYV12 = rgb12leToY_c;
1306 c->lumToYV12 = rgb12beToY_c;
1322 c->lumToYV12 = bgr32ToY_c;
1325 c->lumToYV12 = bgr321ToY_c;
1328 c->lumToYV12 = rgb32ToY_c;
1331 c->lumToYV12 = rgb321ToY_c;
1334 c->lumToYV12 = rgb48BEToY_c;
1337 c->lumToYV12 = rgb48LEToY_c;
1340 c->lumToYV12 = bgr48BEToY_c;
1343 c->lumToYV12 = bgr48LEToY_c;
1346 c->lumToYV12 = rgb64BEToY_c;
1349 c->lumToYV12 = rgb64LEToY_c;
1352 c->lumToYV12 = bgr64BEToY_c;
1355 c->lumToYV12 = bgr64LEToY_c;
1359 if (HAVE_BIGENDIAN == !
isBE(srcFormat))
1362 switch (srcFormat) {