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
* 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 EncSampleAdaptiveOffset.h
\brief estimation part of sample adaptive offset class (header)
*/
#ifndef __ENCSAMPLEADAPTIVEOFFSET__
#define __ENCSAMPLEADAPTIVEOFFSET__
#include "CommonLib/SampleAdaptiveOffset.h"
#include "CABACWriter.h"
//! \ingroup EncoderLib
//! \{
// ====================================================================================================================
// Class definition
// ====================================================================================================================
struct SAOStatData //data structure for SAO statistics
{
int64_t diff[MAX_NUM_SAO_CLASSES];
int64_t count[MAX_NUM_SAO_CLASSES];
SAOStatData(){}
~SAOStatData(){}
void reset()
{
::memset(diff, 0, sizeof(int64_t)*MAX_NUM_SAO_CLASSES);
::memset(count, 0, sizeof(int64_t)*MAX_NUM_SAO_CLASSES);
}
const SAOStatData& operator=(const SAOStatData& src)
{
::memcpy(diff, src.diff, sizeof(int64_t)*MAX_NUM_SAO_CLASSES);
::memcpy(count, src.count, sizeof(int64_t)*MAX_NUM_SAO_CLASSES);
return *this;
}
const SAOStatData& operator+= (const SAOStatData& src)
{
for(int i=0; i< MAX_NUM_SAO_CLASSES; i++)
{
diff[i] += src.diff[i];
count[i] += src.count[i];
}
return *this;
}
};
class EncSampleAdaptiveOffset : public SampleAdaptiveOffset
{
public:
EncSampleAdaptiveOffset();
virtual ~EncSampleAdaptiveOffset();
//interface
void createEncData(bool isPreDBFSamplesUsed, uint32_t numCTUsPic);
void destroyEncData();
void initCABACEstimator( CABACEncoder* cabacEncoder, CtxCache* ctxCache, Slice* pcSlice );

Christian Helmrich
committed
void SAOProcess( CodingStructure& cs, bool* sliceEnabled, const double* lambdas,
#if ENABLE_QPA
const double lambdaChromaWeight,
#endif

Karsten Suehring
committed
#if K0238_SAO_GREEDY_MERGE_ENCODING

Christian Helmrich
committed
const bool bTestSAODisableAtPictureLevel, const double saoEncodingRate, const double saoEncodingRateChroma, const bool isPreDBFSamplesUsed, bool isGreedyMergeEncoding );

Karsten Suehring
committed
#else

Christian Helmrich
committed
const bool bTestSAODisableAtPictureLevel, const double saoEncodingRate, const double saoEncodingRateChroma, const bool isPreDBFSamplesUsed );

Karsten Suehring
committed
#endif
void disabledRate( CodingStructure& cs, SAOBlkParam* reconParams, const double saoEncodingRate, const double saoEncodingRateChroma );
void getPreDBFStatistics(CodingStructure& cs);
private: //methods
void deriveLoopFilterBoundaryAvailibility(CodingStructure& cs, const Position &pos, bool& isLeftAvail, bool& isAboveAvail, bool& isAboveLeftAvail) const;
void getStatistics(std::vector<SAOStatData**>& blkStats, PelUnitBuf& orgYuv, PelUnitBuf& srcYuv, CodingStructure& cs, bool isCalculatePreDeblockSamples = false);
void decidePicParams(const Slice& slice, bool* sliceEnabled, const double saoEncodingRate, const double saoEncodingRateChroma);

Christian Helmrich
committed
void decideBlkParams( CodingStructure& cs, bool* sliceEnabled, std::vector<SAOStatData**>& blkStats, PelUnitBuf& srcYuv, PelUnitBuf& resYuv, SAOBlkParam* reconParams, SAOBlkParam* codedParams, const bool bTestSAODisableAtPictureLevel,
#if ENABLE_QPA
const double chromaWeight,
#endif

Karsten Suehring
committed
#if K0238_SAO_GREEDY_MERGE_ENCODING

Christian Helmrich
committed
const double saoEncodingRate, const double saoEncodingRateChroma, const bool isGreedymergeEncoding );

Karsten Suehring
committed
#else

Christian Helmrich
committed
const double saoEncodingRate, const double saoEncodingRateChroma );

Karsten Suehring
committed
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
#endif
void getBlkStats(const ComponentID compIdx, const int channelBitDepth, SAOStatData* statsDataTypes, Pel* srcBlk, Pel* orgBlk, int srcStride, int orgStride, int width, int height, bool isLeftAvail, bool isRightAvail, bool isAboveAvail, bool isBelowAvail, bool isAboveLeftAvail, bool isAboveRightAvail, bool isCalculatePreDeblockSamples);
void deriveModeNewRDO(const BitDepths &bitDepths, int ctuRsAddr, SAOBlkParam* mergeList[NUM_SAO_MERGE_TYPES], bool* sliceEnabled, std::vector<SAOStatData**>& blkStats, SAOBlkParam& modeParam, double& modeNormCost );
void deriveModeMergeRDO(const BitDepths &bitDepths, int ctuRsAddr, SAOBlkParam* mergeList[NUM_SAO_MERGE_TYPES], bool* sliceEnabled, std::vector<SAOStatData**>& blkStats, SAOBlkParam& modeParam, double& modeNormCost );
int64_t getDistortion(const int channelBitDepth, int typeIdc, int typeAuxInfo, int* offsetVal, SAOStatData& statData);
void deriveOffsets(ComponentID compIdx, const int channelBitDepth, int typeIdc, SAOStatData& statData, int* quantOffsets, int& typeAuxInfo);
inline int64_t estSaoDist(int64_t count, int64_t offset, int64_t diffSum, int shift);
inline int estIterOffset(int typeIdx, double lambda, int offsetInput, int64_t count, int64_t diffSum, int shift, int bitIncrease, int64_t& bestDist, double& bestCost, int offsetTh );
void addPreDBFStatistics(std::vector<SAOStatData**>& blkStats);
private: //members
//for RDO
CABACWriter* m_CABACEstimator;
CtxCache* m_CtxCache;
double m_lambda[MAX_NUM_COMPONENT];
const double FracBitsScale = 1.0 / double( 1 << SCALE_BITS );
//statistics
std::vector<SAOStatData**> m_statData; //[ctu][comp][classes]
std::vector<SAOStatData**> m_preDBFstatData;
double m_saoDisabledRate[MAX_NUM_COMPONENT][MAX_TLAYER];
int m_skipLinesR[MAX_NUM_COMPONENT][NUM_SAO_NEW_TYPES];
int m_skipLinesB[MAX_NUM_COMPONENT][NUM_SAO_NEW_TYPES];
};
//! \}
#endif