1 /*
2 * Copyright (c) 2017, 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 codechal_debug_encode_par_g11.cpp
24 //! \brief Implements the debug interface shared by all of CodecHal for encode
25 //! PAR file dump.
26 //!
27
28 #include "codechal_debug.h"
29 #if USE_CODECHAL_DEBUG_TOOL
30
31 #include "codechal_debug_encode_par_g11.h"
32 #include "codechal_encode_csc_ds_g11.h"
33 #include "codechal_kernel_hme_g11.h"
34
PopulateDsParam(void * cmd)35 MOS_STATUS CodechalDebugEncodeParG11::PopulateDsParam(void *cmd)
36 {
37 CODECHAL_DEBUG_FUNCTION_ENTER;
38
39 CODECHAL_DEBUG_CHK_NULL(m_debugInterface);
40
41 if (!m_debugInterface->DumpIsEnabled(CodechalDbgAttr::attrDumpEncodePar))
42 {
43 return MOS_STATUS_SUCCESS;
44 }
45
46 CODECHAL_DEBUG_CHK_NULL(m_commonPar);
47
48 CodechalEncodeCscDsG11::Ds4xKernelCurbeData *curbe = (CodechalEncodeCscDsG11::Ds4xKernelCurbeData *)cmd;
49
50 if ((m_encoder->m_pictureCodingType == I_TYPE) && (curbe->DW6_EnableMBFlatnessCheck))
51 {
52 m_commonPar->mbFlatnessThreshold = curbe->DW5_FlatnessThreshold;
53 }
54
55 return MOS_STATUS_SUCCESS;
56 }
57
PopulateHmeParam(bool is16xMeEnabled,bool is32xMeEnabled,uint8_t meMethod,void * cmd)58 MOS_STATUS CodechalDebugEncodeParG11::PopulateHmeParam(
59 bool is16xMeEnabled,
60 bool is32xMeEnabled,
61 uint8_t meMethod,
62 void *cmd)
63 {
64 CODECHAL_DEBUG_FUNCTION_ENTER;
65
66 CODECHAL_DEBUG_CHK_NULL(m_debugInterface);
67
68 if (!m_debugInterface->DumpIsEnabled(CodechalDbgAttr::attrDumpEncodePar))
69 {
70 return MOS_STATUS_SUCCESS;
71 }
72
73 CODECHAL_DEBUG_CHK_NULL(m_commonPar);
74
75 CodechalKernelHmeG11::Curbe *curbe = (CodechalKernelHmeG11::Curbe *)cmd;
76
77 if (m_encoder->m_pictureCodingType == P_TYPE)
78 {
79 m_commonPar->superHME = is16xMeEnabled;
80 m_commonPar->ultraHME = is32xMeEnabled;
81 m_commonPar->superCombineDist = curbe->m_data.DW6.SuperCombineDist;
82
83 if (m_encoder->m_vdencEnabled)
84 {
85 m_commonPar->streamInEnable = is16xMeEnabled;
86 m_commonPar->streamInL0FromNewRef = is16xMeEnabled ? 7 : 0;
87 m_commonPar->streamInL1FromNewRef = 0;
88 m_commonPar->meMethod = meMethod;
89 }
90 }
91
92 return MOS_STATUS_SUCCESS;
93 }
94
95 #endif // USE_CODECHAL_DEBUG_TOOL
96