source: 3DVCSoftware/branches/HTM-4.0.1-VSP-dev0/source/Lib/TLibCommon/TComPic.h @ 213

Last change on this file since 213 was 213, checked in by mitsubishi-htm, 12 years ago

A final release, as planned

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