FFmpeg+dxva2 H265硬解码 下方出现绿条或被下方拉长
2021/5/31 18:25:20
本文主要是介绍FFmpeg+dxva2 H265硬解码 下方出现绿条或被下方拉长,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
H265的编码格式,显示下面有一块绿色,并且绿色上面一点有被拉长的现象。
主要原因是缓冲分辨率比视频分辨率多出一点宏块,传入高时减去多出来的宏块数量,或者直接传入视频分辨率即可。
在ffmpeg_dxva2.cpp下
找到dxva2_create_decoder(AVCodecContext *s)中的
/* the HEVC DXVA2 spec asks for 128 pixel aligned surfaces to ensure all coding features have enough room to work with */ else if (s->codec_id == AV_CODEC_ID_HEVC) surface_alignment = 128; else surface_alignment = 16;
以及
hr = ctx->decoder_service->CreateSurface(FFALIGN(s->coded_width, surface_alignment), FFALIGN(s->coded_height, surface_alignment), ctx->num_surfaces - 1, target_format, D3DPOOL_DEFAULT, 0, DXVA2_VideoDecoderRenderTarget, ctx->surfaces, NULL);
修改为:
该处只针对1080p和720p做处理,其他也一样,可以用vlc查看编解码器信息,根据缓冲分辨率的高进行修改
其他分辨率直接抛弃处理,不做填充。
/* the HEVC DXVA2 spec asks for 128 pixel aligned surfaces to ensure all coding features have enough room to work with */ //else if (s->codec_id == AV_CODEC_ID_HEVC) // surface_alignment = 128; else { if(s->coded_height==736) { surface_alignment = 16; } else if(s->coded_height==1088) { surface_alignment = 8; } else { surface_alignment = 0; } }
以及
将缓冲分辨率减去多出来的宏块
hr = ctx->decoder_service->CreateSurface(FFALIGN(s->coded_width, surface_alignment), FFALIGN(s->coded_height-surface_alignment, surface_alignment), ctx->num_surfaces - 1, target_format, D3DPOOL_DEFAULT, 0, DXVA2_VideoDecoderRenderTarget, ctx->surfaces, NULL); }
也可直接传入视频分辨率
hr = ctx->decoder_service->CreateSurface(FFALIGN(s->coded_width, surface_alignment), FFALIGN(s->height, surface_alignment), ctx->num_surfaces - 1, target_format, D3DPOOL_DEFAULT, 0, DXVA2_VideoDecoderRenderTarget, ctx->surfaces, NULL); }
这篇关于FFmpeg+dxva2 H265硬解码 下方出现绿条或被下方拉长的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!
- 2024-12-22项目:远程温湿度检测系统
- 2024-12-21《鸿蒙HarmonyOS应用开发从入门到精通(第2版)》简介
- 2024-12-21后台管理系统开发教程:新手入门全指南
- 2024-12-21后台开发教程:新手入门及实战指南
- 2024-12-21后台综合解决方案教程:新手入门指南
- 2024-12-21接口模块封装教程:新手必备指南
- 2024-12-21请求动作封装教程:新手必看指南
- 2024-12-21RBAC的权限教程:从入门到实践
- 2024-12-21登录鉴权实战:新手入门教程
- 2024-12-21动态权限实战入门指南