代码拉取完成,页面将自动刷新
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
typedef int BOOL;
#define TRUE 1
#define FALSE 0
//分离YUV422P像素数据中的Y、U、V分量(还有问题,图像显示不完整)
BOOL yuv422p_split(const char *file, int width, int height)
{
if (file == NULL) {
return FALSE;
}
FILE *fp = fopen(file, "rb+");
FILE *fp0 = fopen("./out/output_422p_yuv.y", "wb+");
FILE *fp1 = fopen("./out/output_422p_y.y", "wb+");
FILE *fp2 = fopen("./out/output_422p_u.y", "wb+");
FILE *fp3 = fopen("./out/output_422p_v.y", "wb+");
unsigned char *data = (unsigned char *)malloc(width*height*2);
memset(data, 0, width*height*2);
fread(data, 1, width*height*2, fp);
fwrite(data, 1, width*height*2, fp0);
fwrite(data, 1, width*height, fp1); //Y
fwrite(data+width*height, 1, width*height/2, fp2); //U
fwrite(data+width*height*3/2, 1, width*height/2, fp3); //V
free(data);
fclose(fp);
fclose(fp0);
fclose(fp1);
fclose(fp2);
fclose(fp3);
return TRUE;
}
int main(int argc, char *argv[])
{
if (argc == 4) {
yuv422p_split(argv[1], atoi(argv[2]), atoi(argv[3]));
}
return 0;
}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。