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.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.h"
32
Initialize()33 MOS_STATUS CodechalDebugEncodePar::Initialize()
34 {
35 CODECHAL_DEBUG_FUNCTION_ENTER;
36
37 CODECHAL_DEBUG_CHK_NULL(m_debugInterface);
38
39 if (!m_debugInterface->DumpIsEnabled(CodechalDbgAttr::attrDumpEncodePar))
40 {
41 return MOS_STATUS_SUCCESS;
42 }
43
44 CODECHAL_DEBUG_CHK_NULL(m_commonPar = MOS_New(EncodeCommonPar));
45 MOS_ZeroMemory(m_commonPar, sizeof(EncodeCommonPar));
46
47 std::ostringstream oss;
48 oss.setf(std::ios::showbase | std::ios::uppercase);
49
50 // Need to fill manually
51 oss << "SourceFile = " << std::endl;
52 oss << "DstFile = " << std::endl;
53 oss << "NumFrames = " << std::endl;
54 oss << "SourceWidth = " << std::endl;
55 oss << "SourceHeight = " << std::endl;
56
57 const char *fileName = m_debugInterface->CreateFileName(
58 "EncodeSequence",
59 "EncodePar",
60 CodechalDbgExtType::par);
61
62 std::ofstream ofs(fileName, std::ios::out);
63 ofs << oss.str();
64 ofs.close();
65
66 return MOS_STATUS_SUCCESS;
67 }
68
Destroy()69 MOS_STATUS CodechalDebugEncodePar::Destroy()
70 {
71 CODECHAL_DEBUG_FUNCTION_ENTER;
72
73 if (m_commonPar)
74 {
75 MOS_Delete(m_commonPar);
76 m_commonPar = nullptr;
77 }
78
79 return MOS_STATUS_SUCCESS;
80 }
81
CodechalDebugEncodePar(CodechalEncoderState * encoder)82 CodechalDebugEncodePar::CodechalDebugEncodePar(
83 CodechalEncoderState *encoder)
84 {
85 m_encoder = encoder;
86 m_osInterface = encoder->GetOsInterface();
87 m_hwInterface = encoder->GetHwInterface();
88 m_debugInterface = encoder->GetDebugInterface();
89
90 Initialize();
91 }
92
~CodechalDebugEncodePar()93 CodechalDebugEncodePar::~CodechalDebugEncodePar()
94 {
95 Destroy();
96 }
97
98 #endif // USE_CODECHAL_DEBUG_TOOL
99