source: 3DVCSoftware/branches/HTM-3.0-Qualcomm/source/Lib/TLibCommon/TComResidualGenerator.h @ 69

Last change on this file since 69 was 66, checked in by qualcomm, 13 years ago

Integration of Qualcomm's m24938

  • Property svn:eol-style set to native
File size: 4.7 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-2011, 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 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
35
36/** \file     TComResidualGenerator.h
37    \brief    residual picture generator class (header)
38*/
39
40
41#ifndef __TCOM_RESIDUAL_GENERATOR__
42#define __TCOM_RESIDUAL_GENERATOR__
43
44
45#include "CommonDef.h"
46#include "TComPic.h"
47#include "TComSlice.h"
48#include "TComDepthMapGenerator.h"
49#include "TComTrQuant.h"
50
51
52#if HHI_INTER_VIEW_RESIDUAL_PRED
53
54class TComResidualGenerator
55{
56  enum { NUM_TMP_YUV_BUFFERS = 3 };
57
58public:
59  TComResidualGenerator ();
60  ~TComResidualGenerator();
61
62  Void  create                ( Bool bDecoder, UInt uiPicWidth, UInt uiPicHeight, UInt uiMaxCUDepth, UInt uiMaxCUWidth, UInt uiMaxCUHeight, UInt uiOrgBitDepth );
63  Void  destroy               ();
64
65  Void  init                  ( TComTrQuant*  pcTrQuant, TComDepthMapGenerator* pcDepthMapGenerator );
66  Void  uninit                ();
67
68  Void  initViewComponent     ( TComPic*      pcPic );
69  Void  setRecResidualPic     ( TComPic*      pcPic );
70
71  Bool  getResidualSamples    ( TComDataCU*   pcCU,  UInt uiPUIdx, TComYuv* pcYuv
72#if QC_SIMPLIFIEDIVRP_M24938
73    , Bool bRecon
74#endif
75    );
76  Bool  getResidualSamples    ( TComPic* pcPic, UInt uiXPos, UInt uiYPos, UInt uiBlkWidth, UInt uiBlkHeight, TComYuv* pcYuv
77#if QC_SIMPLIFIEDIVRP_M24938
78    , Bool bRecon
79#endif
80    );
81
82private:
83  Void  xSetRecResidualPic    ( TComPic*      pcPic );
84  Void  xSetRecResidualCU     ( TComDataCU*   pcCU,  UInt     uiDepth,      UInt uiAbsPartIdx );
85  Void  xSetRecResidualIntraCU( TComDataCU*   pcCU,  TComYuv* pcCUResidual );
86  Void  xSetRecResidualInterCU( TComDataCU*   pcCU,  TComYuv* pcCUResidual );
87  Void  xClearIntViewResidual ( TComDataCU*   pcCU,  TComYuv* pcCUResidual, UInt uiPartIdx    );
88  Void  xClearResidual        (                      TComYuv* pcCUResidual, UInt uiAbsPartIdx, UInt uiWidth, UInt uiHeight );
89
90  Void  xSetPredResidualBlock ( TComPic*      pcPic, UInt uiBaseViewId, UInt uiXPos, UInt uiYPos, UInt uiBlkWidth, UInt uiBlkHeight, TComYuv* pcYuv
91#if QC_SIMPLIFIEDIVRP_M24938
92    , UInt * puiXPosInRefView , UInt * puiYPosInRefView , Bool bRecon
93#endif
94    );
95  Bool  xIsNonZero            ( TComYuv*      pcYuv, UInt uiBlkWidth, UInt uiBlkHeight );
96#if QC_SIMPLIFIEDIVRP_M24938
97  Bool  xIsNonZeroByCBF       ( UInt uiBaseViewId , UInt uiXPos , UInt uiYPos, UInt uiBlkWidth , UInt uiBlkHeight );
98#endif
99
100  Void  xDumpResidual         ( TComPic*      pcPic, char* pFilenameBase );
101
102private:
103  // general parameters
104  Bool                    m_bCreated;
105  Bool                    m_bInit;
106  Bool                    m_bDecoder;
107  TComTrQuant*            m_pcTrQuant;
108  TComDepthMapGenerator*  m_pcDepthMapGenerator;
109  TComSPSAccess*          m_pcSPSAccess;
110  TComAUPicAccess*        m_pcAUPicAccess;
111  UInt                    m_uiMaxDepth;
112  UInt                    m_uiOrgDepthBitDepth;
113  TComYuv**               m_ppcYuvTmp;
114  TComYuv**               m_ppcYuv;
115  TComDataCU**            m_ppcCU;
116  TComPicYuv              m_cTmpPic;
117};
118
119
120#endif // __TCOM_RESIDUAL_GENERATOR__
121
122#endif // HHI_INTER_VIEW_RESIDUAL_PRED
123
124
125
126
Note: See TracBrowser for help on using the repository browser.