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);

可以用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->codec_id == AV_CODEC_ID_HEVC)
   {
		surface_alignment=s->coded_height-s->height;
   }
        

以及

将缓冲分辨率减去多出来的宏块

    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);

 
}
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值