修改程序名并上传测试文件

master
dezhihuang 2017-10-17 14:33:08 +08:00
parent b8712b6c6e
commit 8b38b7861b
3 changed files with 20 additions and 10 deletions

View File

@ -12,13 +12,22 @@ yuv播放器[修改了一个YUV/RGB播放器](http://blog.csdn.net/leixiaohua
yuv420_split.cpp 程序中的函数可以将YUV420P数据中的Y、U、V三个分量分离开来并保存成三个文件。 yuv420_split.cpp 程序中的函数可以将YUV420P数据中的Y、U、V三个分量分离开来并保存成三个文件。
调用方法: 调用方法:
> ./yuv420_split lena_256x256_yuv420p.yuv 256 256 > ./yuv420_split lena_256x256_yuv420p.yuv 256 256
如果视频帧的宽和高分别为w和h那么一帧YUV420P像素数据一共占用w*h*3/2 Byte的数据。其中前w*h Byte存储Y接着的w*h*1/4 Byte存储U最后w*h*1/4 Byte存储V。上述调用函数的代码运行后将会把一张分辨率为256x256的名称为lena_256x256_yuv420p.yuv的YUV420P格式的像素数据文件分离成为三个文件<br />
output_420_y.y纯Y数据分辨率为256x256。<br /> 如果视频帧的宽和高分别为w和h那么一帧YUV420P像素数据一共占用w*h*3/2 Byte的数据。
output_420_u.y纯U数据分辨率为128x128。<br />
output_420_v.y纯V数据分辨率为128x128。<br /> 其中前w*h Byte存储Y接着的w*h*1/4 Byte存储U最后w*h*1/4 Byte存储V。
上述代码运行后将会把一张分辨率为256x256的名称为lena_256x256_yuv420p.yuv的YUV420P格式的像素数据文件分离成为三个文件
- output_420_y.y纯Y数据分辨率为**256x256**。注意播放时设置播放器分辨率。
- output_420_u.y纯U数据分辨率为**128x128**。注意播放时设置播放器分辨率。
- output_420_v.y纯V数据分辨率为**128x128**。注意播放时设置播放器分辨率。
>注意:<br /> >注意:<br />
>本文中像素的采样位数一律为8bit。由于1Byte=8bit所以一个像素的一个分量的采样值占用1Byte。<br /> >本文中像素的采样位数一律为8bit。由于1Byte=8bit所以一个像素的一个分量的采样值占用1Byte。<br />

File diff suppressed because one or more lines are too long

View File

@ -6,17 +6,17 @@ typedef int BOOL;
#define TRUE 1 #define TRUE 1
#define FALSE 0 #define FALSE 0
BOOL yuv420_split(const char *file, int width, int height) BOOL yuv420p_split(const char *file, int width, int height)
{ {
if (file == NULL) { if (file == NULL) {
return FALSE; return FALSE;
} }
FILE *fp = fopen(file, "rb+"); FILE *fp = fopen(file, "rb+");
FILE *fp0 = fopen("output_420_yuv.y", "wb+"); FILE *fp0 = fopen("./out/output_420p_yuv.y", "wb+");
FILE *fp1 = fopen("output_420_y.y", "wb+"); FILE *fp1 = fopen("./out/output_420p_y.y", "wb+");
FILE *fp2 = fopen("output_420_u.y", "wb+"); FILE *fp2 = fopen("./out/output_420p_u.y", "wb+");
FILE *fp3 = fopen("output_420_v.y", "wb+"); FILE *fp3 = fopen("./out/output_420p_v.y", "wb+");
unsigned char *data = (unsigned char *)malloc(width*height*3/2); unsigned char *data = (unsigned char *)malloc(width*height*3/2);
memset(data, 0, width*height*3/2); memset(data, 0, width*height*3/2);
@ -40,7 +40,7 @@ BOOL yuv420_split(const char *file, int width, int height)
int main(int argc, char *argv[]) int main(int argc, char *argv[])
{ {
if (argc == 4) { if (argc == 4) {
yuv420_split(argv[1], atoi(argv[2]), atoi(argv[3])); yuv420p_split(argv[1], atoi(argv[2]), atoi(argv[3]));
} }
return 0; return 0;