source: 3DVCSoftware/branches/HTM-4.1-dev1-HHI/source/Lib/TLibCommon/TComPic.h @ 360

Last change on this file since 360 was 167, checked in by qualcomm, 12 years ago

JCT3V-B0047

  • Property svn:eol-style set to native
File size: 13.3 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-2012, 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
47//! \ingroup TLibCommon
48//! \{
49
50class SEImessages;
51
52// ====================================================================================================================
53// Class definition
54// ====================================================================================================================
55
56/// picture class (symbol + YUV buffers)
57class TComPic
58{
59private:
60  UInt                  m_uiTLayer;               //  Temporal layer
61  Bool                  m_bUsedByCurr;            //  Used by current picture
62  Bool                  m_bIsLongTerm;            //  IS long term picture
63  TComPicSym*           m_apcPicSym;              //  Symbol
64 
65  TComPicYuv*           m_apcPicYuv[2];           //  Texture,  0:org / 1:rec
66 
67#if DEPTH_MAP_GENERATION
68  TComPicYuv*           m_pcPredDepthMap;         //  estimated depth map
69#if PDM_REMOVE_DEPENDENCE
70  TComPicYuv*           m_pcPredDepthMap_temp;         //  estimated depth map
71  Bool                  m_bPDMV2;                       
72#endif
73#endif
74
75#if LG_ZEROINTRADEPTHRESI_M26039
76  Int                   m_uiIntraPeriod;
77#endif
78
79#if HHI_INTER_VIEW_MOTION_PRED
80  TComPicYuv*           m_pcOrgDepthMap;          //  original depth map
81#if QC_MULTI_DIS_CAN
82  Bool          m_checked;
83#endif
84#if QC_SIMPLE_NBDV_B0047
85  UInt        m_uiRapRefIdx;
86  RefPicList  m_eRapRefList;
87  Bool        m_bRapCheck;
88#endif
89#endif
90#if HHI_INTER_VIEW_RESIDUAL_PRED
91  TComPicYuv*           m_pcResidual;             //  residual buffer (coded or inter-view predicted residual)
92#endif
93
94  TComPicYuv*           m_pcPicYuvPred;           //  Prediction
95  TComPicYuv*           m_pcPicYuvResi;           //  Residual
96  Bool                  m_bReconstructed;
97  Bool                  m_bNeededForOutput;
98  UInt                  m_uiCurrSliceIdx;         // Index of current slice
99
100  Bool                  m_usedForTMVP;
101 
102  Int*                  m_pSliceSUMap;
103  Bool*                 m_pbValidSlice;
104  Int                   m_sliceGranularityForNDBFilter;
105  Bool                  m_bIndependentSliceBoundaryForNDBFilter;
106  Bool                  m_bIndependentTileBoundaryForNDBFilter;
107  TComPicYuv*           m_pNDBFilterYuvTmp;    //!< temporary picture buffer when non-cross slice/tile boundary in-loop filtering is enabled
108  std::vector<std::vector<TComDataCU*> > m_vSliceCUDataLink;
109
110  SEImessages* m_SEIs; ///< Any SEI messages that have been received.  If !NULL we own the object.
111#if HHI_INTERVIEW_SKIP
112  TComPicYuv*           m_pcUsedPelsMap;
113#endif
114#if SONY_COLPIC_AVAILABILITY
115  Int                   m_iViewOrderIdx;
116#endif
117  Int**                 m_aaiCodedScale;
118  Int**                 m_aaiCodedOffset;
119
120#if OL_DEPTHLIMIT_A0044
121  UInt*                 m_texPartInfo;
122  UInt                  m_uiTexPartIndex;
123#endif
124
125public:
126  TComPic();
127  virtual ~TComPic();
128 
129  Void          create( Int iWidth, Int iHeight, UInt uiMaxWidth, UInt uiMaxHeight, UInt uiMaxDepth, Bool bIsVirtual = false );
130  virtual Void  destroy();
131 
132  UInt          getTLayer()                { return m_uiTLayer;   }
133  Void          setTLayer( UInt uiTLayer ) { m_uiTLayer = uiTLayer; }
134
135  Bool          getUsedByCurr()             { return m_bUsedByCurr; }
136  Void          setUsedByCurr( Bool bUsed ) { m_bUsedByCurr = bUsed; }
137  Bool          getIsLongTerm()             { return m_bIsLongTerm; }
138  Void          setIsLongTerm( Bool lt ) { m_bIsLongTerm = lt; }
139
140  TComPicSym*   getPicSym()           { return  m_apcPicSym;    }
141  TComSlice*    getSlice(Int i)       { return  m_apcPicSym->getSlice(i);  }
142  TComSlice*    getCurrSlice()        { return  m_apcPicSym->getSlice(m_uiCurrSliceIdx);  }
143#if VIDYO_VPS_INTEGRATION
144  TComVPS*      getVPS()              { return  m_apcPicSym->getSlice(m_uiCurrSliceIdx)->getVPS();  }
145#endif
146#if LG_ZEROINTRADEPTHRESI_M26039
147  Int           getIntraPeriod()                           { return  m_uiIntraPeriod; }
148  Void          setIntraPeriod(Int uiIntraPeriod)          { m_uiIntraPeriod = uiIntraPeriod; }
149#endif
150  TComSPS*      getSPS()              { return  m_apcPicSym->getSlice(m_uiCurrSliceIdx)->getSPS();  }
151  Int           getPOC()              { return  m_apcPicSym->getSlice(m_uiCurrSliceIdx)->getPOC();  }
152  Int           getViewId()           { return  m_apcPicSym->getSlice(m_uiCurrSliceIdx)->getViewId(); }
153  TComDataCU*&  getCU( UInt uiCUAddr ){ return  m_apcPicSym->getCU( uiCUAddr ); }
154 
155  TComPicYuv*   getPicYuvOrg()        { return  m_apcPicYuv[0]; }
156  TComPicYuv*   getPicYuvRec()        { return  m_apcPicYuv[1]; }
157#if HHI_INTERVIEW_SKIP
158  TComPicYuv*   getUsedPelsMap()      { return  m_pcUsedPelsMap; }
159#endif
160 
161#if DEPTH_MAP_GENERATION
162  TComPicYuv*   getPredDepthMap()     { return  m_pcPredDepthMap; }
163#if PDM_REMOVE_DEPENDENCE
164  TComPicYuv*   getPredDepthMapTemp()           { return  m_pcPredDepthMap_temp; }
165  Void          setStoredPDMforV2  (Bool flag)  { m_bPDMV2 = flag;}
166  Bool          getStoredPDMforV2  ()           { return m_bPDMV2;}
167#endif
168
169#endif
170#if HHI_INTER_VIEW_MOTION_PRED
171  TComPicYuv*   getOrgDepthMap()      { return  m_pcOrgDepthMap; }
172#if QC_MULTI_DIS_CAN
173  Void          setCandPicCheckedFlag (Bool bchecked)   { m_checked = bchecked; }
174  Bool          getCandPicCheckedFlag ()                { return m_checked;}
175#endif
176#endif
177
178#if HHI_INTER_VIEW_RESIDUAL_PRED
179  TComPicYuv*   getResidual()         { return  m_pcResidual; }
180#endif
181#if QC_SIMPLE_NBDV_B0047
182  UInt          getRapRefIdx()                         {return m_uiRapRefIdx;}
183  RefPicList    getRapRefList()                        {return m_eRapRefList;}
184  Void          setRapRefIdx(UInt uiRapRefIdx)         {m_uiRapRefIdx = uiRapRefIdx;}
185  Void          setRapRefList(RefPicList eRefPicList)  {m_eRapRefList = eRefPicList;}
186  Bool          getRapbCheck()                         {return m_bRapCheck;}
187  Void          setRapbCheck(Bool bCheck)              {m_bRapCheck = bCheck;}
188  Bool          getDisCandRefPictures(Int iColPOC);
189#endif
190
191#if SONY_COLPIC_AVAILABILITY
192  Void          setViewOrderIdx(Int i)                        { m_iViewOrderIdx = i; }
193  Int           getViewOrderIdx()                             { return m_iViewOrderIdx; }
194#endif
195  Void          setScaleOffset( Int** pS, Int** pO )  { m_aaiCodedScale = pS; m_aaiCodedOffset = pO; }
196  Int**         getCodedScale ()                      { return m_aaiCodedScale;  }
197  Int**         getCodedOffset()                      { return m_aaiCodedOffset; }
198
199  TComPicYuv*   getPicYuvPred()       { return  m_pcPicYuvPred; }
200  TComPicYuv*   getPicYuvResi()       { return  m_pcPicYuvResi; }
201  Void          setPicYuvPred( TComPicYuv* pcPicYuv )       { m_pcPicYuvPred = pcPicYuv; }
202  Void          setPicYuvResi( TComPicYuv* pcPicYuv )       { m_pcPicYuvResi = pcPicYuv; }
203 
204  UInt          getNumCUsInFrame()      { return m_apcPicSym->getNumberOfCUsInFrame(); }
205  UInt          getNumPartInWidth()     { return m_apcPicSym->getNumPartInWidth();     }
206  UInt          getNumPartInHeight()    { return m_apcPicSym->getNumPartInHeight();    }
207  UInt          getNumPartInCU()        { return m_apcPicSym->getNumPartition();       }
208  UInt          getFrameWidthInCU()     { return m_apcPicSym->getFrameWidthInCU();     }
209  UInt          getFrameHeightInCU()    { return m_apcPicSym->getFrameHeightInCU();    }
210  UInt          getMinCUWidth()         { return m_apcPicSym->getMinCUWidth();         }
211  UInt          getMinCUHeight()        { return m_apcPicSym->getMinCUHeight();        }
212 
213  UInt          getParPelX(UChar uhPartIdx) { return getParPelX(uhPartIdx); }
214  UInt          getParPelY(UChar uhPartIdx) { return getParPelX(uhPartIdx); }
215 
216  Int           getStride()           { return m_apcPicYuv[1]->getStride(); }
217  Int           getCStride()          { return m_apcPicYuv[1]->getCStride(); }
218 
219  Void          setReconMark (Bool b) { m_bReconstructed = b;     }
220  Bool          getReconMark ()       { return m_bReconstructed;  }
221
222  Void          setUsedForTMVP( Bool b ) { m_usedForTMVP = b;    }
223  Bool          getUsedForTMVP()         { return m_usedForTMVP; }
224
225  Void          setOutputMark (Bool b) { m_bNeededForOutput = b;     }
226  Bool          getOutputMark ()       { return m_bNeededForOutput;  }
227 
228  Void          compressMotion(); 
229  UInt          getCurrSliceIdx()            { return m_uiCurrSliceIdx;                }
230  Void          setCurrSliceIdx(UInt i)      { m_uiCurrSliceIdx = i;                   }
231  UInt          getNumAllocatedSlice()       {return m_apcPicSym->getNumAllocatedSlice();}
232  Void          allocateNewSlice()           {m_apcPicSym->allocateNewSlice();         }
233  Void          clearSliceBuffer()           {m_apcPicSym->clearSliceBuffer();         }
234#if HHI_INTERVIEW_SKIP
235  Void          addUsedPelsMapBuffer    ();
236  Void          removeUsedPelsMapBuffer ();
237#endif
238 
239  Void          createNonDBFilterInfo   (UInt* pSliceStartAddress = NULL, Int numSlices = 1, Int sliceGranularityDepth= 0
240                                        ,Bool bNDBFilterCrossSliceBoundary = true
241                                        ,Int  numTiles = 1
242                                        ,Bool bNDBFilterCrossTileBoundary = true);
243  Void          createNonDBFilterInfoLCU(Int tileID, Int sliceID, TComDataCU* pcCU, UInt startSU, UInt endSU, Int sliceGranularyDepth, UInt picWidth, UInt picHeight);
244  Void          destroyNonDBFilterInfo();
245
246#if DEPTH_MAP_GENERATION
247  Void          addPrdDepthMapBuffer    ( UInt uiSubSampExpX, UInt uiSubSampExpY );
248#endif
249#if HHI_INTER_VIEW_MOTION_PRED
250  Void          addOrgDepthMapBuffer    ();
251#endif
252#if HHI_INTER_VIEW_RESIDUAL_PRED
253  Void          addResidualBuffer       ();
254#endif
255#if DEPTH_MAP_GENERATION
256  Void          removePrdDepthMapBuffer ();
257#endif
258#if HHI_INTER_VIEW_MOTION_PRED
259  Void          removeOrgDepthMapBuffer ();
260#endif
261#if HHI_INTER_VIEW_RESIDUAL_PRED
262  Void          removeResidualBuffer    ();
263#endif
264
265#if OL_DEPTHLIMIT_A0044
266  UInt        accessPartInfo        ( UInt count )   { return m_texPartInfo[m_uiTexPartIndex + count]; };
267  Void        incrementTexPartIndex (            )   { m_uiTexPartIndex += 2;    };
268  UInt        getTexPartIndex       ()               { return m_uiTexPartIndex;  };
269  Void        setTexPartIndex       ( UInt idx   )   { m_uiTexPartIndex = idx; };
270  Void        setPartInfo           ( UInt* texPart) { m_texPartInfo    = texPart;  };
271#endif
272
273  Bool          getValidSlice                                  (Int sliceID)  {return m_pbValidSlice[sliceID];}
274  Int           getSliceGranularityForNDBFilter                ()             {return m_sliceGranularityForNDBFilter;}
275  Bool          getIndependentSliceBoundaryForNDBFilter        ()             {return m_bIndependentSliceBoundaryForNDBFilter;}
276  Bool          getIndependentTileBoundaryForNDBFilter         ()             {return m_bIndependentTileBoundaryForNDBFilter; }
277  TComPicYuv*   getYuvPicBufferForIndependentBoundaryProcessing()             {return m_pNDBFilterYuvTmp;}
278  std::vector<TComDataCU*>& getOneSliceCUDataForNDBFilter      (Int sliceID) { return m_vSliceCUDataLink[sliceID];}
279
280  /** transfer ownership of seis to this picture */
281  void setSEIs(SEImessages* seis) { m_SEIs = seis; }
282
283  /**
284   * return the current list of SEI messages associated with this picture.
285   * Pointer is valid until this->destroy() is called */
286  SEImessages* getSEIs() { return m_SEIs; }
287
288  /**
289   * return the current list of SEI messages associated with this picture.
290   * Pointer is valid until this->destroy() is called */
291  const SEImessages* getSEIs() const { return m_SEIs; }
292
293};// END CLASS DEFINITION TComPic
294
295//! \}
296
297#endif // __TCOMPIC__
Note: See TracBrowser for help on using the repository browser.