首页
Python
Java
前端
数据库
Linux
Chatgpt专题
开发者工具箱
libyuv专题
Windows下 webrtc voice engine 提示libyuv.lib找不到 或者
wertc 使用voice engine时,提示如下错误: 1>ManifestResourceCompile: 1> All outputs are up-to-date. 1>common_video.lib(webrtc_libyuv.obj) : error LNK2019: unresolved external symbol _NV12ToRGB565 refere
阅读更多...
使用libyuv与ffmpeg实现yuv_rgb格式转换性能分析
https://www.jianshu.com/p/a3dc034deca6 两组对比:同样分辨率的文件,通过所消耗的时长判断1:YUV to RGB2:YUV 尺寸缩放 结果:(文件有84帧图像) 则每帧耗时如下libyuv_I420_to_Rgb 623066ffmpeg_I420_to_Rgb 1815963 libyuv_swscale 996027ffmpeg_s
阅读更多...
使用libyuv对YUV数据进行缩放,旋转,镜像,裁剪等操作
https://www.jianshu.com/p/bd0feaf4c0f9 1.背景 在Android做过自定义Camera的朋友应该都知道,我们可以通过public void onPreviewFrame(byte[] data, Camera camera)回调中获取摄像头采集到的每一帧的数据,但是这个byte[] data的数据格式YUV的,并不能直接给我们进行使用,那么该通过什么
阅读更多...
使用libyuv和FFmpeg进行小视频的录制-git开源代码地址
https://github.com/hzl123456/SmallVideo
阅读更多...
ffmpeg+libyuv录制的开源代码
https://github.com/hzl123456/SmallVideo
阅读更多...
libyuv库实现裁剪和缩放
lib实现缩放功能 /** @Description: * @Author: xxx* @Date: 2022-07-13 17:44:57* @LastEditTime: 2022-07-13 20:31:08* @LastEditors: xxx*/#include <stdio.h>#include <stdint.h>#include "libyuv.h"#include <ti
阅读更多...
关于libyuv格式转换、图像裁剪说明
项目源代码https://github.com/liluojun/PlayVideo 关联文章https://blog.csdn.net/hjt505694246/article/details/105046233Android硬编、硬解h264 https://blog.csdn.net/hjt505694246/article/details/105047729FFmpeg解码裸H264数
阅读更多...