source: SHVCSoftware/branches/SHM-upgrade/source/Lib/TLibCommon/TComPic.h @ 915

Last change on this file since 915 was 901, checked in by seregin, 10 years ago

implementation for equalPictureSizeAndOffsetFlag

  • Property svn:eol-style set to native
File size: 11.0 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-2014, 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     TComPic.h
35    \brief    picture class (header)
36*/
37
38#ifndef __TCOMPIC__
39#define __TCOMPIC__
40
41// Include files
42#include "CommonDef.h"
43#include "TComPicSym.h"
44#include "TComPicYuv.h"
45#include "TComBitStream.h"
46#include "SEI.h"
47#if AVC_BASE
48#include <fstream>
49#endif
50
51//! \ingroup TLibCommon
52//! \{
53
54// ====================================================================================================================
55// Class definition
56// ====================================================================================================================
57
58/// picture class (symbol + YUV buffers)
59class TComPic
60{
61private:
62  UInt                  m_uiTLayer;               //  Temporal layer
63  Bool                  m_bUsedByCurr;            //  Used by current picture
64  Bool                  m_bIsLongTerm;            //  IS long term picture
65  TComPicSym*           m_apcPicSym;              //  Symbol
66 
67  TComPicYuv*           m_apcPicYuv[2];           //  Texture,  0:org / 1:rec
68 
69  TComPicYuv*           m_pcPicYuvPred;           //  Prediction
70  TComPicYuv*           m_pcPicYuvResi;           //  Residual
71  Bool                  m_bReconstructed;
72  Bool                  m_bNeededForOutput;
73  UInt                  m_uiCurrSliceIdx;         // Index of current slice
74  Bool                  m_bCheckLTMSB;
75 
76  Int                   m_numReorderPics[MAX_TLAYER];
77  Window                m_conformanceWindow;
78  Window                m_defaultDisplayWindow;
79
80  Bool                  m_isTop;
81  Bool                  m_isField;
82 
83  std::vector<std::vector<TComDataCU*> > m_vSliceCUDataLink;
84
85  SEIMessages  m_SEIs; ///< Any SEI messages that have been received.  If !NULL we own the object.
86#if SVC_EXTENSION
87  UInt                  m_layerId;              //  Layer ID
88  Bool                  m_bSpatialEnhLayer[MAX_LAYERS];       // whether current layer is a spatial enhancement layer,
89  TComPicYuv*           m_pcFullPelBaseRec[MAX_LAYERS];    // upsampled base layer recontruction for difference domain inter prediction
90#if REF_IDX_MFM
91  Bool                  m_equalPictureSizeAndOffsetFlag[MAX_LAYERS]; 
92#endif
93#endif
94#if Q0048_CGS_3D_ASYMLUT
95  Int                   m_nFrameBit;
96#endif
97#if POC_RESET_IDC_DECODER
98  Bool                  m_currAuFlag;
99#endif
100public:
101  TComPic();
102  virtual ~TComPic();
103 
104#if SVC_EXTENSION
105#if AUXILIARY_PICTURES
106  Void          create( Int iWidth, Int iHeight, ChromaFormat chromaFormatIDC, UInt uiMaxWidth, UInt uiMaxHeight, UInt uiMaxDepth, Window &conformanceWindow, Window &defaultDisplayWindow, 
107                        Int *numReorderPics, TComSPS* pcSps = NULL, Bool bIsVirtual = false );
108#else
109  Void          create( Int iWidth, Int iHeight, UInt uiMaxWidth, UInt uiMaxHeight, UInt uiMaxDepth, Window &conformanceWindow, Window &defaultDisplayWindow, 
110                        Int *numReorderPics, TComSPS* pcSps = NULL, Bool bIsVirtual = false );
111#endif
112#else
113  Void          create( Int iWidth, Int iHeight, UInt uiMaxWidth, UInt uiMaxHeight, UInt uiMaxDepth, Window &conformanceWindow, Window &defaultDisplayWindow, 
114                        Int *numReorderPics, Bool bIsVirtual = false ); 
115#endif //SVC_EXTENSION
116
117  virtual Void  destroy();
118 
119  UInt          getTLayer()                { return m_uiTLayer;   }
120  Void          setTLayer( UInt uiTLayer ) { m_uiTLayer = uiTLayer; }
121
122  Bool          getUsedByCurr()             { return m_bUsedByCurr; }
123  Void          setUsedByCurr( Bool bUsed ) { m_bUsedByCurr = bUsed; }
124  Bool          getIsLongTerm()             { return m_bIsLongTerm; }
125  Void          setIsLongTerm( Bool lt ) { m_bIsLongTerm = lt; }
126  Void          setCheckLTMSBPresent     (Bool b ) {m_bCheckLTMSB=b;}
127  Bool          getCheckLTMSBPresent     () { return m_bCheckLTMSB;}
128
129  TComPicSym*   getPicSym()           { return  m_apcPicSym;    }
130  TComSlice*    getSlice(Int i)       { return  m_apcPicSym->getSlice(i);  }
131  Int           getPOC()              { return  m_apcPicSym->getSlice(m_uiCurrSliceIdx)->getPOC();  }
132  TComDataCU*&  getCU( UInt uiCUAddr )  { return  m_apcPicSym->getCU( uiCUAddr ); }
133 
134  TComPicYuv*   getPicYuvOrg()        { return  m_apcPicYuv[0]; }
135  TComPicYuv*   getPicYuvRec()        { return  m_apcPicYuv[1]; }
136 
137  TComPicYuv*   getPicYuvPred()       { return  m_pcPicYuvPred; }
138  TComPicYuv*   getPicYuvResi()       { return  m_pcPicYuvResi; }
139  Void          setPicYuvPred( TComPicYuv* pcPicYuv )       { m_pcPicYuvPred = pcPicYuv; }
140  Void          setPicYuvResi( TComPicYuv* pcPicYuv )       { m_pcPicYuvResi = pcPicYuv; }
141 
142  UInt          getNumCUsInFrame()      { return m_apcPicSym->getNumberOfCUsInFrame(); }
143  UInt          getNumPartInWidth()     { return m_apcPicSym->getNumPartInWidth();     }
144  UInt          getNumPartInHeight()    { return m_apcPicSym->getNumPartInHeight();    }
145  UInt          getNumPartInCU()        { return m_apcPicSym->getNumPartition();       }
146  UInt          getFrameWidthInCU()     { return m_apcPicSym->getFrameWidthInCU();     }
147  UInt          getFrameHeightInCU()    { return m_apcPicSym->getFrameHeightInCU();    }
148  UInt          getMinCUWidth()         { return m_apcPicSym->getMinCUWidth();         }
149  UInt          getMinCUHeight()        { return m_apcPicSym->getMinCUHeight();        }
150 
151  UInt          getParPelX(UChar uhPartIdx) { return getParPelX(uhPartIdx); }
152  UInt          getParPelY(UChar uhPartIdx) { return getParPelX(uhPartIdx); }
153 
154  Int           getStride()           { return m_apcPicYuv[1]->getStride(); }
155  Int           getCStride()          { return m_apcPicYuv[1]->getCStride(); }
156 
157  Void          setReconMark (Bool b) { m_bReconstructed = b;     }
158  Bool          getReconMark ()       { return m_bReconstructed;  }
159  Void          setOutputMark (Bool b) { m_bNeededForOutput = b;     }
160  Bool          getOutputMark ()       { return m_bNeededForOutput;  }
161 
162  Void          setNumReorderPics(Int i, UInt tlayer) { m_numReorderPics[tlayer] = i;    }
163  Int           getNumReorderPics(UInt tlayer)        { return m_numReorderPics[tlayer]; }
164
165  Void          compressMotion(); 
166  UInt          getCurrSliceIdx()            { return m_uiCurrSliceIdx;                }
167  Void          setCurrSliceIdx(UInt i)      { m_uiCurrSliceIdx = i;                   }
168  UInt          getNumAllocatedSlice()       {return m_apcPicSym->getNumAllocatedSlice();}
169  Void          allocateNewSlice()           {m_apcPicSym->allocateNewSlice();         }
170  Void          clearSliceBuffer()           {m_apcPicSym->clearSliceBuffer();         }
171
172  Window&       getConformanceWindow()  { return m_conformanceWindow; }
173  Window&       getDefDisplayWindow()   { return m_defaultDisplayWindow; }
174
175  Bool          getSAOMergeAvailability(Int currAddr, Int mergeAddr);
176
177  /* field coding parameters*/
178
179  Void              setTopField(bool b)                  {m_isTop = b;}
180  Bool              isTopField()                         {return m_isTop;}
181  Void              setField(bool b)                     {m_isField = b;}
182  Bool              isField()                            {return m_isField;}
183
184  /** transfer ownership of seis to this picture */
185  void setSEIs(SEIMessages& seis) { m_SEIs = seis; }
186
187  /**
188   * return the current list of SEI messages associated with this picture.
189   * Pointer is valid until this->destroy() is called */
190  SEIMessages& getSEIs() { return m_SEIs; }
191
192  /**
193   * return the current list of SEI messages associated with this picture.
194   * Pointer is valid until this->destroy() is called */
195  const SEIMessages& getSEIs() const { return m_SEIs; }
196
197#if SVC_EXTENSION
198  Void          setLayerId (UInt layerId) { m_layerId = layerId; }
199  UInt          getLayerId ()               { return m_layerId; }
200  Bool          isSpatialEnhLayer(UInt refLayerIdc)             { return m_bSpatialEnhLayer[refLayerIdc]; }
201  Void          setSpatialEnhLayerFlag (UInt refLayerIdc, Bool b) { m_bSpatialEnhLayer[refLayerIdc] = b; }
202  Void          setFullPelBaseRec   (UInt refLayerIdc, TComPicYuv* p) { m_pcFullPelBaseRec[refLayerIdc] = p; }
203  TComPicYuv*   getFullPelBaseRec   (UInt refLayerIdc)  { return  m_pcFullPelBaseRec[refLayerIdc];  }
204#if REF_IDX_ME_ZEROMV || ENCODER_FAST_MODE || REF_IDX_MFM
205  Bool          isILR( UInt currLayerId )   { return ( m_bIsLongTerm && m_layerId < currLayerId ); }
206#endif
207#if REF_IDX_MFM
208  Bool          equalPictureSizeAndOffsetFlag(UInt refLayerIdc)             { return m_equalPictureSizeAndOffsetFlag[refLayerIdc]; }
209  Void          setEqualPictureSizeAndOffsetFlag(UInt refLayerIdc, Bool b)  { m_equalPictureSizeAndOffsetFlag[refLayerIdc] = b;    }
210  Void          copyUpsampledMvField  ( UInt refLayerIdc, TComPic* pcPicBase );
211  Void          initUpsampledMvField  ();
212#endif
213#if MFM_ENCCONSTRAINT
214  Bool          checkSameRefInfo();
215#endif
216#if AUXILIARY_PICTURES
217  ChromaFormat  getChromaFormat() const { return m_apcPicYuv[1]->getChromaFormat(); }
218#endif
219  Void  copyUpsampledPictureYuv(TComPicYuv*   pcPicYuvIn, TComPicYuv*   pcPicYuvOut); 
220#endif
221
222#if Q0048_CGS_3D_ASYMLUT
223  Void  setFrameBit( Int n )  { m_nFrameBit = n;    }
224  Int   getFrameBit()         { return m_nFrameBit; }
225#endif
226#if POC_RESET_IDC_DECODER
227  Bool isCurrAu() { return m_currAuFlag; }
228  Void setCurrAuFlag(Bool x) {m_currAuFlag = x; }
229#endif
230#if WPP_FIX
231  UInt          getSubstreamForLCUAddr(const UInt uiLCUAddr, const Bool bAddressInRaster, TComSlice *pcSlice);
232#endif
233};// END CLASS DEFINITION TComPic
234
235//! \}
236
237#endif // __TCOMPIC__
Note: See TracBrowser for help on using the repository browser.