blob: 0dfcb9b2b7cc566589a4f144797a1e1f96fbda19 [file] [log] [blame]
/*
* Copyright (c) 2020, Intel Corporation
*
* Permission is hereby granted, free of charge, to any person obtaining a
* copy of this software and associated documentation files (the "Software"),
* to deal in the Software without restriction, including without limitation
* the rights to use, copy, modify, merge, publish, distribute, sublicense,
* and/or sell copies of the Software, and to permit persons to whom the
* Software is furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included
* in all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
* OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
* THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR
* OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
* ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
* OTHER DEALINGS IN THE SOFTWARE.
*/
//!
//! \file vp_dn_filter.h
//! \brief Defines the common interface for denoise
//! this file is for the base interface which is shared by all denoise in driver.
//!
#ifndef __VP_DN_FILTER_H__
#define __VP_DN_FILTER_H__
#include "vp_filter.h"
#include "sw_filter.h"
namespace vp {
class VpDnFilter : public VpFilter
{
public:
VpDnFilter(
PVP_MHWINTERFACE vpMhwInterface);
~VpDnFilter()
{
Destroy();
};
virtual MOS_STATUS Init() override;
virtual MOS_STATUS Prepare() override;
virtual MOS_STATUS Destroy() override;
virtual MOS_STATUS SetExecuteEngineCaps(
FeatureParamDenoise &dnParams,
VP_EXECUTE_CAPS vpExecuteCaps);
MOS_STATUS CalculateEngineParams();
PVEBOX_DN_PARAMS GetVeboxParams()
{
return m_veboxDnParams;
}
protected:
FeatureParamDenoise m_dnParams = {};
PVEBOX_DN_PARAMS m_veboxDnParams = nullptr;
};
struct HW_FILTER_DN_PARAM : public HW_FILTER_PARAM
{
FeatureParamDenoise dnParams;
};
class HwFilterDnParameter : public HwFilterParameter
{
public:
static HwFilterParameter *Create(HW_FILTER_DN_PARAM &param, FeatureType featureType);
HwFilterDnParameter(FeatureType featureType);
virtual ~HwFilterDnParameter();
virtual MOS_STATUS ConfigParams(HwFilter &hwFilter);
MOS_STATUS Initialize(HW_FILTER_DN_PARAM&param);
private:
HW_FILTER_DN_PARAM m_Params = {};
};
class VpVeboxDnParameter : public VpPacketParameter
{
public:
static VpPacketParameter *Create(HW_FILTER_DN_PARAM &param);
VpVeboxDnParameter(PVP_MHWINTERFACE pHwInterface, PacketParamFactoryBase *packetParamFactory);
virtual ~VpVeboxDnParameter();
virtual bool SetPacketParam(VpCmdPacket *pPacket);
private:
MOS_STATUS Initialize(HW_FILTER_DN_PARAM&params);
VpDnFilter m_dnFilter;
};
class PolicyVeboxDnHandler : public PolicyFeatureHandler
{
public:
PolicyVeboxDnHandler();
virtual ~PolicyVeboxDnHandler();
virtual bool IsFeatureEnabled(VP_EXECUTE_CAPS vpExecuteCaps);
virtual HwFilterParameter *CreateHwFilterParam(VP_EXECUTE_CAPS vpExecuteCaps, SwFilterPipe &swFilterPipe, PVP_MHWINTERFACE pHwInterface);
static VpPacketParameter* CreatePacketParam(HW_FILTER_PARAM& param)
{
if (param.type != FeatureTypeDnOnVebox)
{
VP_PUBLIC_ASSERTMESSAGE("Invalid parameter for Vebox De-Noise!");
return nullptr;
}
HW_FILTER_DN_PARAM* dnParam = (HW_FILTER_DN_PARAM*)(&param);
return VpVeboxDnParameter::Create(*dnParam);
}
private:
PacketParamFactory<VpVeboxDnParameter> m_PacketParamFactory;
};
}
#endif