1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175
|
/*
* 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 cp_interfaces.h
//! \brief Defines base class for CP interfaces
//!
#ifndef _CP_INTERFACES_H_
#define _CP_INTERFACES_H_
#include <stdint.h>
#include <va/va.h>
#include "cp_factory.h"
#include "cplib_utils.h"
#include "codechal_secure_decode_interface.h"
#include "mhw_cp_interface.h"
#include "mos_os_cp_interface_specific.h"
#include "media_libva_cp_interface.h"
#include "media_libva_caps_cp_interface.h"
#define CP_INTERFACE 1
//!
//! \class DdiMediaProtected
//! \brief Ddi media protected
//!
class CpInterfaces
{
public:
//!
//! \brief Constructor
//!
CpInterfaces() {}
//!
//! \brief Destructor
//!
virtual ~CpInterfaces() {}
//!
//! \brief Create CodechalSecureDeocde Object
//! Must use Delete_SecureDecodeInterface to delete created Object to avoid ULT Memory Leak errors
//!
//! \param [in] codechalSettings
//! CodechalSetting*
//! \param [in] codechalSettings
//! CodechalHwInterface*
//!
//! \return CodechalSecureDecodeInterface*
//! Return CP Wrapper Object
//!
virtual CodechalSecureDecodeInterface* Create_SecureDecodeInterface(
CodechalSetting * codechalSettings,
CodechalHwInterface *hwInterfaceInput);
//!
//! \brief Delete the CodechalSecureDecodeInterface Object
//!
//! \param [in] pInterface
//! CodechalSecureDecodeInterface*
//!
virtual void Delete_SecureDecodeInterface(CodechalSecureDecodeInterface *pInterface);
//!
//! \brief Create MhwCpInterface Object
//! Must use Delete_MhwCpInterface to delete created Object to avoid ULT Memory Leak errors
//!
//! \param [in] osInterface
//! PMOS_INTERFACE
//!
//! \return MhwCpInterface*
//! Return CP Wrapper Object
//!
virtual MhwCpInterface* Create_MhwCpInterface(PMOS_INTERFACE osInterface);
//!
//! \brief Delete the MhwCpInterface Object
//!
//! \param [in] pInterface
//! MhwCpInterface*
//!
virtual void Delete_MhwCpInterface(MhwCpInterface *pInterface);
//!
//! \brief Create MosCpInterface Object
//! Must use Delete_MosCpInterface to delete created Object to avoid ULT Memory Leak errors
//!
//! \param [in] pvOsInterface
//! void*
//! \param [in] pInterface
//! MosCpInterface*
//!
//! \return MosCpInterface*
//! Return CP Wrapper Object
//!
virtual MosCpInterface* Create_MosCpInterface(void* pvOsInterface);
//!
//! \brief Delete the MosCpInterface Object
//!
//! \param [in] pInterface
//! MosCpInterface*
//!
virtual void Delete_MosCpInterface(MosCpInterface* pInterface);
//!
//! \brief Create DdiCpInterface Object
//! Must use Delete_DdiCpInterface to delete created Object to avoid ULT Memory Leak errors
//!
//! \param [in] mosCtx
//! MOS_CONTEXT&
//! \param [in] pInterface
//! DdiCpInterface*
//!
//! \return DdiCpInterface*
//! Return CP Wrapper Object
//!
virtual DdiCpInterface* Create_DdiCpInterface(MOS_CONTEXT& mosCtx);
//!
//! \brief Delete the DdiCpInterface Object
//!
//! \param [in] pInterface
//! DdiCpInterface*
//!
virtual void Delete_DdiCpInterface(DdiCpInterface* pInterface);
//!
//! \brief Create MediaLibvaCapsCpInterface Object
//! Must use Delete_MediaLibvaCapsCpInterface to delete created Object to avoid ULT Memory Leak errors
//!
//! \param [in] mediaCtx
//! DDI_MEDIA_CONTEXT*
//! \param [in] mediaCaps
//! MediaLibvaCaps*
//!
//! \return MediaLibvaCapsCpInterface*
//! Return CP Wrapper Object
//!
virtual MediaLibvaCapsCpInterface* Create_MediaLibvaCapsCpInterface(
DDI_MEDIA_CONTEXT *mediaCtx,
MediaLibvaCaps *mediaCaps);
//!
//! \brief Delete the MediaLibvaCapsCpInterface Object
//!
//! \param [in] pInterface
//! MediaLibvaCapsCpInterface*
//!
virtual void Delete_MediaLibvaCapsCpInterface(MediaLibvaCapsCpInterface* pInterface);
};
typedef CpFactoryWithoutArgs<CpInterfaces> CpInterfacesFactory;
#endif /* _CP_INTERFACES_H_ */
|