修改程序名并上传测试文件
parent
b8712b6c6e
commit
8b38b7861b
17
README.md
17
README.md
|
@ -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
|
@ -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;
|
Loading…
Reference in New Issue