Home | History | Annotate | Download | only in src

Lines Matching refs:step

603         writeFrameData(img.data, (int)img.step, colorspace, input_channels);
632 void writeFrameData( const uchar* data, int step, int colorspace, int input_channels );
802 int step, const short *postscale )
805 int16x8_t x0 = vld1q_s16(src); int16x8_t x1 = vld1q_s16(src + step*7);
806 int16x8_t x2 = vld1q_s16(src + step*3); int16x8_t x3 = vld1q_s16(src + step*4);
815 x0 = vld1q_s16(src + step); x3 = vld1q_s16(src + step*6);
820 x0 = vld1q_s16(src + step*2); x3 = vld1q_s16(src + step*5);
1005 int step, const short *postscale )
1011 for( i = 8; i > 0; i--, src += step, work += 8 )
1110 void MotionJpegWriter::writeFrameData( const uchar* data, int step, int colorspace, int input_channels )
1154 int u_plane_ofs = step*height;
1155 int v_plane_ofs = u_plane_ofs + step*height;
1264 for( y = 0; y < height; y += y_step, data += y_step*step )
1285 for( i = 0; i < y_limit; i += 2, pix_data += step*2, Y_data += Y_step*2, UV_data += UV_step )
1292 lane = vld1q_u16((unsigned short*)(pix_data + v_plane_ofs + step));
1299 lane = vld1q_u16((unsigned short*)(pix_data + u_plane_ofs + step));
1315 lane = vreinterpretq_s16_u16(vmovl_u8(vld1_u8(pix_data+step)));
1319 lane = vreinterpretq_s16_u16(vmovl_u8(vld1_u8(pix_data + step + 8)));
1328 Y_data[j+Y_step] = pix_data[step] - 128;
1329 Y_data[j+Y_step+1] = pix_data[step+1] - 128;
1332 pix_data[v_plane_ofs+step] + pix_data[v_plane_ofs+step+1] - 128*4;
1334 pix_data[u_plane_ofs+step] + pix_data[u_plane_ofs+step+1] - 128*4;
1344 for( i = 0; i < y_limit; i++, pix_data += step, Y_data += Y_step )
1395 for( i = 0; i < y_limit; i++, pix_data += step, Y_data += Y_step )