往显示设备的framebuffer里写1080i的视频数据速度特别慢,拷贝一帧要200ms左右,部分代码如下:
for(j=0; j<controlSystem.height; j++)
{
memcpy(dst,pplaybuf,controlSystem.width*sizeof(unsigned int));
dst+=finfo.line_length ;
pplaybuf+=controlSystem.width;
}
如何优化或者提高速度。正常往其他内存里拷贝1080i50的一帧数据只要20ms;