Hi when I using:
{
char path[256];
FILE *fp;
sprintf(path, "/media/sda1/Videos/20000105/1/%d_%d.yuv", chNo, Utils_getCurTimeInMsec());
Vps_printf("%s\n", path);
fp = fopen(path, "wb");
fwrite(pFrame->addr[0][0], image_width * image_height, 1, fp);
fclose(fp);
}
to save frame data, I cann't find any file, and there is not any error log.
why? is i should not save frame data in algLink?