HEVC Test Model (HM)  HM-16.18
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
TEncPic.h
Go to the documentation of this file.
1 /* The copyright in this software is being made available under the BSD
2  * License, included below. This software may be subject to other third party
3  * and contributor rights, including patent rights, and no such rights are
4  * granted under this license.
5  *
6  * Copyright (c) 2010-2017, ITU/ISO/IEC
7  * All rights reserved.
8  *
9  * Redistribution and use in source and binary forms, with or without
10  * modification, are permitted provided that the following conditions are met:
11  *
12  * * Redistributions of source code must retain the above copyright notice,
13  * this list of conditions and the following disclaimer.
14  * * Redistributions in binary form must reproduce the above copyright notice,
15  * this list of conditions and the following disclaimer in the documentation
16  * and/or other materials provided with the distribution.
17  * * Neither the name of the ITU/ISO/IEC nor the names of its contributors may
18  * be used to endorse or promote products derived from this software without
19  * specific prior written permission.
20  *
21  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
22  * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
23  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
24  * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS
25  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
26  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
27  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
28  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
29  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
30  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
31  * THE POSSIBILITY OF SUCH DAMAGE.
32  */
33 
38 #ifndef __TENCPIC__
39 #define __TENCPIC__
40 
41 #include "TLibCommon/CommonDef.h"
42 #include "TLibCommon/TComPic.h"
43 
46 
47 // ====================================================================================================================
48 // Class definition
49 // ====================================================================================================================
50 
53 {
54 private:
56 
57 public:
60 
63 };
64 
67 {
68 private:
75 
76 public:
78  virtual ~TEncPicQPAdaptationLayer();
79 
80  Void create( Int iWidth, Int iHeight, UInt uiAQPartWidth, UInt uiAQPartHeight );
81  Void destroy();
82 
90 
92 };
93 
95 class TEncPic : public TComPic
96 {
97 private:
100 
101 public:
102  TEncPic();
103  virtual ~TEncPic();
104 
105 #if REDUCED_ENCODER_MEMORY
106  Void create( const TComSPS &sps, const TComPPS &pps, UInt uiMaxAdaptiveQPDepth );
107 #else
108  Void create( const TComSPS &sps, const TComPPS &pps, UInt uiMaxAdaptiveQPDepth, Bool bIsVirtual /* = false*/ );
109 #endif
110  virtual Void destroy();
111 
112  TEncPicQPAdaptationLayer* getAQLayer( UInt uiDepth ) { return &m_acAQLayer[uiDepth]; }
114 };
115 
117 
118 #endif // __TENCPIC__
picture class (symbol + YUV buffers)
Definition: TComPic.h:56
Defines version information, constants and small in-line functions.
void Void
Definition: TypeDef.h:203
unsigned int UInt
Definition: TypeDef.h:212
virtual Void destroy()
Clean up.
Definition: TEncPic.cpp:149
Void setAvgActivity(Double d)
Definition: TEncPic.h:91
picture class (header)
TEncPic()
Definition: TEncPic.cpp:105
Picture class including local image characteristics information for QP adaptation.
Definition: TEncPic.h:95
UInt m_uiMaxAQDepth
Definition: TEncPic.h:99
Void setActivity(Double d)
Definition: TEncPic.h:61
virtual ~TEncPicQPAdaptationLayer()
Definition: TEncPic.cpp:70
UInt getNumAQPartInHeight()
Definition: TEncPic.h:86
TEncPicQPAdaptationLayer * m_acAQLayer
Definition: TEncPic.h:98
Double getActivity()
Definition: TEncPic.h:62
virtual ~TEncPic()
Definition: TEncPic.cpp:113
Void create(const TComSPS &sps, const TComPPS &pps, UInt uiMaxAdaptiveQPDepth)
Definition: TEncPic.cpp:125
bool Bool
Definition: TypeDef.h:204
PPS class.
Definition: TComSlice.h:1034
Local image characteristics for CUs on a specific depth.
Definition: TEncPic.h:66
Double m_dActivity
Definition: TEncPic.h:55
UInt getNumAQPartInWidth()
Definition: TEncPic.h:85
TEncPicQPAdaptationLayer * getAQLayer(UInt uiDepth)
Definition: TEncPic.h:112
TEncQPAdaptationUnit * m_acTEncAQU
Definition: TEncPic.h:73
int Int
Definition: TypeDef.h:211
UInt getMaxAQDepth()
Definition: TEncPic.h:113
Unit block for storing image characteristics.
Definition: TEncPic.h:52
double Double
Definition: TypeDef.h:213
TEncQPAdaptationUnit * getQPAdaptationUnit()
Definition: TEncPic.h:88
Double getAvgActivity()
Definition: TEncPic.h:89
Void create(Int iWidth, Int iHeight, UInt uiAQPartWidth, UInt uiAQPartHeight)
Definition: TEncPic.cpp:82
SPS class.
Definition: TComSlice.h:740