source: SHVCSoftware/branches/SHM-dev/source/Lib/TLibCommon/TComPicSym.h @ 1263

Last change on this file since 1263 was 1259, checked in by seregin, 9 years ago

port rev 4256

  • Property svn:eol-style set to native
File size: 10.4 KB
Line 
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-2015, 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
34/** \file     TComPicSym.h
35    \brief    picture symbol class (header)
36*/
37
38#ifndef __TCOMPICSYM__
39#define __TCOMPICSYM__
40
41
42// Include files
43#include <deque>
44#include "CommonDef.h"
45#include "TComSlice.h"
46#include "TComDataCU.h"
47class TComSampleAdaptiveOffset;
48class TComPPS;
49
50//! \ingroup TLibCommon
51//! \{
52
53// ====================================================================================================================
54// Class definition
55// ====================================================================================================================
56
57class TComTile
58{
59private:
60  UInt      m_tileWidthInCtus;
61  UInt      m_tileHeightInCtus;
62  UInt      m_rightEdgePosInCtus;
63  UInt      m_bottomEdgePosInCtus;
64  UInt      m_firstCtuRsAddr;
65
66public:
67  TComTile();
68  virtual ~TComTile();
69
70  Void      setTileWidthInCtus     ( UInt i )            { m_tileWidthInCtus = i; }
71  UInt      getTileWidthInCtus     () const              { return m_tileWidthInCtus; }
72  Void      setTileHeightInCtus    ( UInt i )            { m_tileHeightInCtus = i; }
73  UInt      getTileHeightInCtus    () const              { return m_tileHeightInCtus; }
74  Void      setRightEdgePosInCtus  ( UInt i )            { m_rightEdgePosInCtus = i; }
75  UInt      getRightEdgePosInCtus  () const              { return m_rightEdgePosInCtus; }
76  Void      setBottomEdgePosInCtus ( UInt i )            { m_bottomEdgePosInCtus = i; }
77  UInt      getBottomEdgePosInCtus () const              { return m_bottomEdgePosInCtus; }
78  Void      setFirstCtuRsAddr      ( UInt i )            { m_firstCtuRsAddr = i; }
79  UInt      getFirstCtuRsAddr      () const              { return m_firstCtuRsAddr; }
80};
81
82/// picture symbol class
83class TComPicSym
84{
85private:
86  UInt          m_frameWidthInCtus;
87  UInt          m_frameHeightInCtus;
88
89  UInt          m_uiMaxCUWidth;
90  UInt          m_uiMaxCUHeight;
91  UInt          m_uiMinCUWidth;
92  UInt          m_uiMinCUHeight;
93
94  UChar         m_uhTotalDepth;       ///< max. depth
95  UInt          m_numPartitionsInCtu;
96  UInt          m_numPartInCtuWidth;
97  UInt          m_numPartInCtuHeight;
98  UInt          m_numCtusInFrame;
99
100  std::deque<TComSlice*> m_apSlices;
101
102  TComSlice**   m_apcTComSlice;
103  UInt          m_uiNumAllocatedSlice;
104  TComDataCU**  m_pictureCtuArray;        ///< array of CU data.
105
106  Int           m_numTileColumnsMinus1;
107  Int           m_numTileRowsMinus1;
108  std::vector<TComTile> m_tileParameters;
109  UInt*         m_ctuTsToRsAddrMap;    ///< for a given TS (Tile-Scan; coding order) address, returns the RS (Raster-Scan) address. cf CtbAddrTsToRs in specification.
110  UInt*         m_puiTileIdxMap;       ///< the map of the tile index relative to CTU raster scan address
111  UInt*         m_ctuRsToTsAddrMap;    ///< for a given RS (Raster-Scan) address, returns the TS (Tile-Scan; coding order) address. cf CtbAddrRsToTs in specification.
112
113  SAOBlkParam  *m_saoBlkParams;
114  TComSPS       m_sps;
115  TComPPS       m_pps;
116
117  Void               xInitTiles( );
118  Void               xInitCtuTsRsAddrMaps();
119  Void               setNumTileColumnsMinus1( Int i )                      { m_numTileColumnsMinus1 = i;    }
120  Void               setNumTileRowsMinus1( Int i )                         { m_numTileRowsMinus1 = i;       }
121  Void               setCtuTsToRsAddrMap( Int ctuTsAddr, Int ctuRsAddr )   { *(m_ctuTsToRsAddrMap + ctuTsAddr) = ctuRsAddr; }
122  Void               setCtuRsToTsAddrMap( Int ctuRsAddr, Int ctuTsOrder )  { *(m_ctuRsToTsAddrMap + ctuRsAddr) = ctuTsOrder; }
123 
124#if SVC_EXTENSION
125  const TComVPS* m_vps;
126#if N0383_IL_CONSTRAINED_TILE_SETS_SEI
127  Int*           m_piTileSetIdxMap;     //the map of the tile set index relative to LCU raster scan address
128  UChar*         m_pucTileSetType;
129  Bool*          m_pbSkippedTileSetFlag;
130#endif
131#endif
132
133public:
134#if SVC_EXTENSION
135  Void               create  ( const TComVPS &vps, const TComSPS &sps, const TComPPS &pps, UInt uiMaxWidth, UInt uiMaxHeight, UInt uiMaxDepth, const UInt layerId );
136#if CGS_3D_ASYMLUT
137  TComPPS*           getPPSToUpdate()                                      { return &m_pps; }
138#endif
139#else
140  Void               create  ( const TComSPS &sps, const TComPPS &pps, UInt uiMaxWidth, UInt uiMaxHeight, UInt uiMaxDepth );
141#endif
142  Void               destroy ();
143
144  TComPicSym  ();
145  TComSlice*         getSlice(UInt i)                                      { return m_apSlices[i];             }
146  const TComSlice*   getSlice(UInt i) const                                { return m_apSlices[i];             }
147  UInt               getFrameWidthInCtus() const                           { return m_frameWidthInCtus;            }
148  UInt               getFrameHeightInCtus() const                          { return m_frameHeightInCtus;           }
149  UInt               getMinCUWidth() const                                 { return m_uiMinCUWidth;                }
150  UInt               getMinCUHeight() const                                { return m_uiMinCUHeight;               }
151  UInt               getNumberOfCtusInFrame() const                        { return m_numCtusInFrame;              }
152  TComDataCU*        getCtu( UInt ctuRsAddr )                              { return m_pictureCtuArray[ctuRsAddr];  }
153  const TComDataCU*  getCtu( UInt ctuRsAddr ) const                        { return m_pictureCtuArray[ctuRsAddr];  }
154  const TComSPS&     getSPS()                 const                        { return m_sps; }
155  const TComPPS&     getPPS()                 const                        { return m_pps; }
156
157  TComSlice *        swapSliceObject(TComSlice* p, UInt i)                 { p->setSPS(&m_sps); p->setPPS(&m_pps); TComSlice *pTmp=m_apSlices[i];m_apSlices[i] = p; pTmp->setSPS(0); pTmp->setPPS(0); return pTmp; }
158  UInt               getNumAllocatedSlice() const                          { return UInt(m_apSlices.size());       }
159  Void               allocateNewSlice();
160  Void               clearSliceBuffer();
161  UInt               getNumPartitionsInCtu() const                         { return m_numPartitionsInCtu;   }
162  UInt               getNumPartInCtuWidth() const                          { return m_numPartInCtuWidth;    }
163  UInt               getNumPartInCtuHeight() const                         { return m_numPartInCtuHeight;   }
164  Int                getNumTileColumnsMinus1() const                       { return m_numTileColumnsMinus1; }
165  Int                getNumTileRowsMinus1() const                          { return m_numTileRowsMinus1;    }
166  Int                getNumTiles() const                                   { return (m_numTileRowsMinus1+1)*(m_numTileColumnsMinus1+1); }
167  TComTile*          getTComTile  ( UInt tileIdx )                         { return &(m_tileParameters[tileIdx]); }
168  const TComTile*    getTComTile  ( UInt tileIdx ) const                   { return &(m_tileParameters[tileIdx]); }
169  UInt               getCtuTsToRsAddrMap( Int ctuTsAddr ) const            { return *(m_ctuTsToRsAddrMap + (ctuTsAddr>=m_numCtusInFrame ? m_numCtusInFrame : ctuTsAddr)); }
170  UInt               getTileIdxMap( Int ctuRsAddr ) const                  { return *(m_puiTileIdxMap + ctuRsAddr); }
171  UInt               getCtuRsToTsAddrMap( Int ctuRsAddr ) const            { return *(m_ctuRsToTsAddrMap + (ctuRsAddr>=m_numCtusInFrame ? m_numCtusInFrame : ctuRsAddr)); }
172  SAOBlkParam*       getSAOBlkParam()                                      { return m_saoBlkParams;}
173  const SAOBlkParam* getSAOBlkParam() const                                { return m_saoBlkParams;}
174  Void               deriveLoopFilterBoundaryAvailibility(Int ctuRsAddr,
175                                                          Bool& isLeftAvail, Bool& isRightAvail, Bool& isAboveAvail, Bool& isBelowAvail,
176                                                          Bool& isAboveLeftAvail, Bool& isAboveRightAvail, Bool& isBelowLeftAvail, Bool& isBelowRightAvail);
177protected:
178  UInt               xCalculateNextCtuRSAddr( UInt uiCurrCtuRSAddr );
179
180#if SVC_EXTENSION
181public:
182#if LAYER_CTB
183  UInt        getMaxCUWidth()           { return m_uiMaxCUWidth;                }
184  UInt        getMaxCUHeight()          { return m_uiMaxCUHeight;               }
185#endif
186#if N0383_IL_CONSTRAINED_TILE_SETS_SEI
187  Void         setTileSetIdxMap( Int i, Int tileSetIdx, UChar setType, Bool skipFlag )
188  {
189    m_piTileSetIdxMap[i]       = tileSetIdx;
190    m_pucTileSetType[i]        = setType;
191    m_pbSkippedTileSetFlag[i]  = skipFlag;
192  }
193  Int          getTileSetIdxMap( Int i )                             { return *(m_piTileSetIdxMap + i); }
194  UChar        getTileSetType( Int i )                               { return *(m_pucTileSetType + i); }
195  Bool         getSkippedTileSetFlag( Int i )                        { return *(m_pbSkippedTileSetFlag + i); }
196#endif
197#endif //SVC_EXTENSION
198
199};// END CLASS DEFINITION TComPicSym
200
201//! \}
202
203#endif // __TCOMPICSYM__
204
Note: See TracBrowser for help on using the repository browser.