Lines Matching refs:dst_uyvy
796 static void V210ToUYVYRow_C(const uint8* src_v210, uint8* dst_uyvy, int width) { in V210ToUYVYRow_C() argument
799 dst_uyvy[0] = (w >> 2) & 0xff; in V210ToUYVYRow_C()
800 dst_uyvy[1] = (w >> 12) & 0xff; in V210ToUYVYRow_C()
801 dst_uyvy[2] = (w >> 22) & 0xff; in V210ToUYVYRow_C()
804 dst_uyvy[3] = (w >> 2) & 0xff; in V210ToUYVYRow_C()
805 dst_uyvy[4] = (w >> 12) & 0xff; in V210ToUYVYRow_C()
806 dst_uyvy[5] = (w >> 22) & 0xff; in V210ToUYVYRow_C()
809 dst_uyvy[6] = (w >> 2) & 0xff; in V210ToUYVYRow_C()
810 dst_uyvy[7] = (w >> 12) & 0xff; in V210ToUYVYRow_C()
811 dst_uyvy[8] = (w >> 22) & 0xff; in V210ToUYVYRow_C()
814 dst_uyvy[9] = (w >> 2) & 0xff; in V210ToUYVYRow_C()
815 dst_uyvy[10] = (w >> 12) & 0xff; in V210ToUYVYRow_C()
816 dst_uyvy[11] = (w >> 22) & 0xff; in V210ToUYVYRow_C()
819 dst_uyvy += 12; in V210ToUYVYRow_C()
845 void (*V210ToUYVYRow)(const uint8* src_v210, uint8* dst_uyvy, int pix); in V210ToI420()