1 Star 0 Fork 23

niwotahao/AVDataProcess

forked from 黄老邪/AVDataProcess 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
yuv420p_half_y.cpp 935 Bytes
一键复制 编辑 原始数据 按行查看 历史
黄老邪 提交于 2017-10-18 10:13 . 将YUV420P像素数据的亮度减半
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
typedef int BOOL;
#define TRUE 1
#define FALSE 0
//分离YUV420P像素数据中的亮度分量Y的数值减半,降低图像的亮度
BOOL yuv420p_half_y(const char *file, int width, int height)
{
if (file == NULL) {
return FALSE;
}
FILE *fp = fopen(file, "rb+");
FILE *fp0 = fopen("./out/output_420p_half_y.yuv", "wb+");
unsigned char *data = (unsigned char *)malloc(width*height*3/2);
memset(data, 0, width*height*3/2);
fread(data, 1, width*height*3/2, fp);
for(int i=0; i<width*height; i++) {
data[i] = data[i] / 2; //Y分量减半
}
fwrite(data, 1, width*height*3/2, fp0);
free(data);
fclose(fp);
fclose(fp0);
return TRUE;
}
int main(int argc, char *argv[])
{
if (argc == 4) {
yuv420p_half_y(argv[1], atoi(argv[2]), atoi(argv[3]));
}
return 0;
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C++
1
https://gitee.com/niwotahao/AVDataProcess.git
git@gitee.com:niwotahao/AVDataProcess.git
niwotahao
AVDataProcess
AVDataProcess
master

搜索帮助