1 /*
2 * Copyright (c) 2022, Intel Corporation
3 *
4 * Permission is hereby granted, free of charge, to any person obtaining a
5 * copy of this software and associated documentation files (the "Software"),
6 * to deal in the Software without restriction, including without limitation
7 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
8 * and/or sell copies of the Software, and to permit persons to whom the
9 * Software is furnished to do so, subject to the following conditions:
10 *
11 * The above copyright notice and this permission notice shall be included
12 * in all copies or substantial portions of the Software.
13 *
14 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
15 * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
16 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
17 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR
18 * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
19 * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
20 * OTHER DEALINGS IN THE SOFTWARE.
21 */
22 //!
23 //! \file mos_utilities_usersetting.cpp
24 //! \brief This module implements the MOS wrapper functions for Linux/Android
25 //!
26
27 #include "mos_utilities.h"
28 #if _MEDIA_RESERVED
29 #include "codechal_user_settings_mgr_ext.h"
30 #include "vphal_user_settings_mgr_ext.h"
31 #endif // _MEDIA_RESERVED
32
33 #if _MEDIA_RESERVED
34 MediaUserSettingsMgr *MosUtilities::m_codecUserFeatureExt = nullptr;
35 MediaUserSettingsMgr *MosUtilities::m_vpUserFeatureExt = nullptr;
36 #endif
37
MosDeclareUserFeature()38 MOS_STATUS MosUtilities::MosDeclareUserFeature()
39 {
40 MOS_STATUS eStatus = MosDeclareUserFeatureKeysForAllDescFields();
41 #if _MEDIA_RESERVED
42 m_codecUserFeatureExt = new CodechalUserSettingsMgr();
43 m_vpUserFeatureExt = new VphalUserSettingsMgr();
44 #endif
45 return eStatus;
46 }
47
MosDestroyUserFeature()48 MOS_STATUS MosUtilities::MosDestroyUserFeature()
49 {
50 MOS_STATUS eStatus = MosDestroyUserFeatureKeysForAllDescFields();
51 #if _MEDIA_RESERVED
52 if (m_codecUserFeatureExt)
53 {
54 delete m_codecUserFeatureExt;
55 m_codecUserFeatureExt = nullptr;
56 }
57 if (m_vpUserFeatureExt)
58 {
59 delete m_vpUserFeatureExt;
60 m_vpUserFeatureExt = nullptr;
61 }
62 #endif // _MEDIA_RESERVED
63
64 return eStatus;
65 }
66
67