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_g9.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_g9.h"
32 #include "codechal_encode_csc_ds_g9.h"
33 
PopulateDsParam(void * cmd)34 MOS_STATUS CodechalDebugEncodeParG9::PopulateDsParam(void *cmd)
35 {
36     CODECHAL_DEBUG_FUNCTION_ENTER;
37 
38     CODECHAL_DEBUG_CHK_NULL(m_debugInterface);
39 
40     if (!m_debugInterface->DumpIsEnabled(CodechalDbgAttr::attrDumpEncodePar))
41     {
42         return MOS_STATUS_SUCCESS;
43     }
44 
45     CODECHAL_DEBUG_CHK_NULL(m_commonPar);
46 
47     CodechalEncodeCscDsG9::Ds4xKernelCurbeData *curbe = (CodechalEncodeCscDsG9::Ds4xKernelCurbeData *)cmd;
48 
49     if ((m_encoder->m_pictureCodingType == I_TYPE) && (curbe->DW6_EnableMBFlatnessCheck))
50     {
51         m_commonPar->mbFlatnessThreshold = curbe->DW5_FlatnessThreshold;
52     }
53 
54     return MOS_STATUS_SUCCESS;
55 }
56 
57 #endif // USE_CODECHAL_DEBUG_TOOL
58