Newer
Older

Karsten Suehring
committed
/* The copyright in this software is being made available under the BSD
* License, included below. This software may be subject to other third party
* and contributor rights, including patent rights, and no such rights are
* granted under this license.
*
* Copyright (c) 2010-2019, ITU/ISO/IEC

Karsten Suehring
committed
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
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
*
* * Redistributions of source code must retain the above copyright notice,
* this list of conditions and the following disclaimer.
* * Redistributions in binary form must reproduce the above copyright notice,
* this list of conditions and the following disclaimer in the documentation
* and/or other materials provided with the distribution.
* * Neither the name of the ITU/ISO/IEC nor the names of its contributors may
* be used to endorse or promote products derived from this software without
* specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
* ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS
* BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
* THE POSSIBILITY OF SUCH DAMAGE.
*/
/** \file dtrace_codingstruct.h
* \brief Easy to use dtrace calls concerning coding structures
*/
#ifndef _DTRACE_CODINGSTRUCT_H_
#define _DTRACE_CODINGSTRUCT_H_
#include "dtrace.h"
#include "dtrace_next.h"
#include "CommonLib/CommonDef.h"
#include "CommonLib/CodingStructure.h"
#include "CommonLib/Slice.h"
#include "CommonLib/Mv.h"
#include "CommonLib/Unit.h"
#include "CommonLib/UnitTools.h"
#include <cmath>
#if ENABLE_TRACING
inline void dtracePicComp( DTRACE_CHANNEL channel, CodingStructure& cs, const CPelUnitBuf& pelUnitBuf, ComponentID compId )
{
if( !g_trace_ctx ) return;
if( pelUnitBuf.chromaFormat == CHROMA_400 && compId != COMPONENT_Y ) return;
const Pel* piSrc = pelUnitBuf.bufs[compId].buf;
uint32_t uiStride = pelUnitBuf.bufs[compId].stride;
uint32_t uiWidth = pelUnitBuf.bufs[compId].width;
uint32_t uiHeight = pelUnitBuf.bufs[compId].height;
uint32_t uiChromaScaleX = getComponentScaleX( compId, pelUnitBuf.chromaFormat );
uint32_t uiChromaScaleY = getComponentScaleY( compId, pelUnitBuf.chromaFormat );
DTRACE ( g_trace_ctx, channel, "\n%s: poc = %d, size=%dx%d\n\n", g_trace_ctx->getChannelName(channel), cs.slice->getPOC(), uiWidth, uiHeight );
DTRACE_FRAME_BLOCKWISE( g_trace_ctx, channel, piSrc, uiStride, uiWidth, uiHeight, cs.sps->getMaxCUWidth() >> uiChromaScaleX, cs.sps->getMaxCUHeight() >> uiChromaScaleY);
}
#define OLD_RDCOST 1
inline void dtraceModeCost(CodingStructure &cs, double lambda)
{
CHECK( cs.cus.size() != 1, "Only the cost for a single CU can be show with dtraceModeCost!" );
Distortion tempDist = cs.dist;
#if OLD_RDCOST
uint64_t tempBits = cs.fracBits >> SCALE_BITS;
uint64_t tempCost = (uint64_t)(cs.dist + (double)tempBits * lambda);
#else
uint64_t tempBits = cs.fracBits;
uint64_t tempCost = (uint64_t)cs.cost;
#endif
if( cs.cost == MAX_DOUBLE )
{
tempCost = 0;
tempBits = 0;
tempDist = 0;
}
bool isIntra = CU::isIntra( *cs.cus.front() );
int intraModeL = isIntra ? cs.pus.front()->intraDir[0] : 0;
int intraModeC = isIntra ? cs.pus.front()->intraDir[1] : 0;
if (isIntra && intraModeC == DM_CHROMA_IDX)
intraModeC = 68;
int imvVal = 0;
imvVal = cs.cus[0]->imv;
DTRACE( g_trace_ctx, D_MODE_COST, "ModeCost: %6lld %3d @(%4d,%4d) [%2dx%2d] %d (qp%d,pm%d,skip%d,mrg%d,fruc%d,obmc%d,ic%d,imv%d,affn%d,%d,%d) tempCS = %lld (%d,%d)\n",

Karsten Suehring
committed
DTRACE_GET_COUNTER( g_trace_ctx, D_MODE_COST ),
cs.slice->getPOC(),
cs.area.Y().x, cs.area.Y().y,
cs.area.Y().width, cs.area.Y().height,
cs.cus[0]->qtDepth,
cs.cus[0]->qp,
cs.cus[0]->predMode,
cs.cus[0]->skip,
cs.pus[0]->mergeFlag,

Karsten Suehring
committed
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
0, 0,
intraModeL, intraModeC,
tempCost, tempBits, tempDist );
}
inline void dtraceBestMode(CodingStructure *&tempCS, CodingStructure *&bestCS, double lambda)
{
bool bSplitCS = tempCS->cus.size() > 1 || bestCS->cus.size() > 1;
ChannelType chType = tempCS->cus.back()->chType;
// if the last CU does not align with the CS, we probably are at the edge
bSplitCS |= tempCS->cus.back()->blocks[chType].bottomRight() != tempCS->area.blocks[chType].bottomRight();
Distortion tempDist = tempCS->dist;
#if OLD_RDCOST
uint64_t tempBits = tempCS->fracBits >> SCALE_BITS;
uint64_t bestBits = bestCS->fracBits >> SCALE_BITS;
uint64_t tempCost = (uint64_t)(tempCS->dist + (double)tempBits * lambda);
uint64_t bestCost = (uint64_t)(bestCS->dist + (double)bestBits * lambda);
#else
uint64_t tempBits = tempCS->fracBits;
uint64_t bestBits = bestCS->fracBits;
uint64_t tempCost = (uint64_t)tempCS->cost;
uint64_t bestCost = (uint64_t)bestCS->cost;
#endif
if( tempCS->cost == MAX_DOUBLE )
{
tempCost = 0;
tempBits = 0;
tempDist = 0;
}
bool isIntra = CU::isIntra( *tempCS->cus[0] );
int intraModeL = isIntra ? tempCS->pus[0]->intraDir[0] : 0;
int intraModeC = isIntra ? tempCS->pus[0]->intraDir[1] : 0;
if(!bSplitCS)
{
DTRACE( g_trace_ctx, D_BEST_MODE, "CheckModeCost: %6lld %3d @(%4d,%4d) [%2dx%2d] %d (%d,%d,%2d,%d,%d) tempCS = %lld (%d,%d), bestCS = %lld (%d,%d): --> choose %s\n",

Karsten Suehring
committed
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
DTRACE_GET_COUNTER( g_trace_ctx, D_BEST_MODE ),
tempCS->slice->getPOC(),
tempCS->area.Y().x, tempCS->area.Y().y,
tempCS->area.Y().width, tempCS->area.Y().height,
tempCS->cus[0]->qtDepth,
tempCS->cus[0]->qp,
tempCS->cus[0]->predMode,
tempCS->pus[0]->mergeFlag,
intraModeL, intraModeC,
tempCost, tempBits, tempDist,
bestCost, bestBits, bestCS->dist,
tempCS->cost < bestCS->cost ? "TEMP" : "BEST" );
}
else
{
DTRACE( g_trace_ctx, D_BEST_MODE, "CheckModeSplitCost: %6lld %3d @(%4d,%4d) [%2dx%2d] -------------------------- tempCS = %lld (%d,%d), bestCS = %lld (%d,%d): --> choose %s\n",
DTRACE_GET_COUNTER( g_trace_ctx, D_BEST_MODE ),
tempCS->slice->getPOC(),
tempCS->area.Y().x, tempCS->area.Y().y,
tempCS->area.Y().width, tempCS->area.Y().height,
tempCost, tempBits, tempDist,
bestCost, bestBits, bestCS->dist,
tempCS->cost < bestCS->cost ? "TEMP STRUCTURE" : "BEST STRUCTURE");
}
}
#define DTRACE_PIC_COMP(...) dtracePicComp( __VA_ARGS__ )
#define DTRACE_BEST_MODE(...) dtraceBestMode(__VA_ARGS__)
#define DTRACE_MODE_COST(...) dtraceModeCost(__VA_ARGS__)
#define DTRACE_STAT(...) dtraceComprPicStat(__VA_ARGS__)
#else
#define DTRACE_BEST_MODE(...)
#define DTRACE_MODE_COST(...)
#define DTRACE_STAT(...)
#define DTRACE_PIC_COMP(...)
#endif
#endif // _DTRACE_HEVC_H_