本文整理汇总了C++中CDVDVideoCodecFFmpeg::HasHardware方法的典型用法代码示例。如果您正苦于以下问题:C++ CDVDVideoCodecFFmpeg::HasHardware方法的具体用法?C++ CDVDVideoCodecFFmpeg::HasHardware怎么用?C++ CDVDVideoCodecFFmpeg::HasHardware使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类CDVDVideoCodecFFmpeg
的用法示例。
在下文中一共展示了CDVDVideoCodecFFmpeg::HasHardware方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: GetFormat
enum AVPixelFormat CDVDVideoCodecFFmpeg::GetFormat(struct AVCodecContext * avctx, const AVPixelFormat * fmt)
{
ICallbackHWAccel *cb = static_cast<ICallbackHWAccel*>(avctx->opaque);
CDVDVideoCodecFFmpeg* ctx = dynamic_cast<CDVDVideoCodecFFmpeg*>(cb);
const char* pixFmtName = av_get_pix_fmt_name(*fmt);
ctx->m_processInfo.SetVideoDimensions(avctx->coded_width, avctx->coded_height);
// if frame threading is enabled hw accel is not allowed
// 2nd condition:
// fix an ffmpeg issue here, it calls us with an invalid profile
// then a 2nd call with a valid one
if(ctx->m_decoderState != STATE_HW_SINGLE ||
(avctx->codec_id == AV_CODEC_ID_VC1 && avctx->profile == FF_PROFILE_UNKNOWN))
{
AVPixelFormat defaultFmt = avcodec_default_get_format(avctx, fmt);
pixFmtName = av_get_pix_fmt_name(defaultFmt);
ctx->m_processInfo.SetVideoPixelFormat(pixFmtName ? pixFmtName : "");
ctx->m_processInfo.SetSwDeinterlacingMethods();
return defaultFmt;
}
// hardware decoder de-selected, restore standard ffmpeg
if (ctx->HasHardware())
{
ctx->SetHardware(nullptr);
avctx->get_buffer2 = avcodec_default_get_buffer2;
avctx->slice_flags = 0;
av_buffer_unref(&avctx->hw_frames_ctx);
}
const AVPixelFormat * cur = fmt;
while (*cur != AV_PIX_FMT_NONE)
{
pixFmtName = av_get_pix_fmt_name(*cur);
auto hwaccels = CDVDFactoryCodec::GetHWAccels();
for (auto &hwaccel : hwaccels)
{
IHardwareDecoder *pDecoder(CDVDFactoryCodec::CreateVideoCodecHWAccel(hwaccel, ctx->m_hints,
ctx->m_processInfo, *cur));
if (pDecoder)
{
if (pDecoder->Open(avctx, ctx->m_pCodecContext, *cur))
{
ctx->m_processInfo.SetVideoPixelFormat(pixFmtName ? pixFmtName : "");
ctx->SetHardware(pDecoder);
return *cur;
}
}
SAFE_RELEASE(pDecoder);
}
cur++;
}
ctx->m_processInfo.SetVideoPixelFormat(pixFmtName ? pixFmtName : "");
ctx->m_decoderState = STATE_HW_FAILED;
return avcodec_default_get_format(avctx, fmt);
}