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 | |
---|
54 | class TComResidualGenerator |
---|
55 | { |
---|
56 | enum { NUM_TMP_YUV_BUFFERS = 3 }; |
---|
57 | |
---|
58 | public: |
---|
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 | #if QC_MULTI_DIS_CAN |
---|
72 | Bool getResidualSamples ( TComDataCU* pcCU, UInt uiPUIdx, TComYuv* pcYuv, Int iDisp |
---|
73 | #if QC_SIMPLIFIEDIVRP_M24938 |
---|
74 | , Bool bRecon |
---|
75 | #endif |
---|
76 | ); |
---|
77 | Bool getResidualSamples ( TComPic* pcPic, UInt uiXPos, UInt uiYPos, UInt uiBlkWidth, UInt uiBlkHeight, TComYuv* pcYuv , Int iDisp |
---|
78 | #if QC_SIMPLIFIEDIVRP_M24938 |
---|
79 | , Bool bRecon |
---|
80 | #endif |
---|
81 | ); |
---|
82 | #else |
---|
83 | Bool getResidualSamples ( TComDataCU* pcCU, UInt uiPUIdx, TComYuv* pcYuv |
---|
84 | #if QC_SIMPLIFIEDIVRP_M24938 |
---|
85 | , Bool bRecon |
---|
86 | #endif |
---|
87 | ); |
---|
88 | Bool getResidualSamples ( TComPic* pcPic, UInt uiXPos, UInt uiYPos, UInt uiBlkWidth, UInt uiBlkHeight, TComYuv* pcYuv |
---|
89 | #if QC_SIMPLIFIEDIVRP_M24938 |
---|
90 | , Bool bRecon |
---|
91 | #endif |
---|
92 | ); |
---|
93 | #endif |
---|
94 | |
---|
95 | private: |
---|
96 | Void xSetRecResidualPic ( TComPic* pcPic ); |
---|
97 | Void xSetRecResidualCU ( TComDataCU* pcCU, UInt uiDepth, UInt uiAbsPartIdx ); |
---|
98 | Void xSetRecResidualIntraCU( TComDataCU* pcCU, TComYuv* pcCUResidual ); |
---|
99 | Void xSetRecResidualInterCU( TComDataCU* pcCU, TComYuv* pcCUResidual ); |
---|
100 | Void xClearIntViewResidual ( TComDataCU* pcCU, TComYuv* pcCUResidual, UInt uiPartIdx ); |
---|
101 | Void xClearResidual ( TComYuv* pcCUResidual, UInt uiAbsPartIdx, UInt uiWidth, UInt uiHeight ); |
---|
102 | #if QC_MULTI_DIS_CAN |
---|
103 | Void xSetPredResidualBlock ( TComPic* pcPic, UInt uiBaseViewId, UInt uiXPos, UInt uiYPos, UInt uiBlkWidth, UInt uiBlkHeight, TComYuv* pcYuv, Int iDisp |
---|
104 | #if QC_SIMPLIFIEDIVRP_M24938 |
---|
105 | , UInt * puiXPosInRefView , UInt * puiYPosInRefView , Bool bRecon |
---|
106 | #endif |
---|
107 | ); |
---|
108 | #else |
---|
109 | Void xSetPredResidualBlock ( TComPic* pcPic, UInt uiBaseViewId, UInt uiXPos, UInt uiYPos, UInt uiBlkWidth, UInt uiBlkHeight, TComYuv* pcYuv |
---|
110 | #if QC_SIMPLIFIEDIVRP_M24938 |
---|
111 | , UInt * puiXPosInRefView , UInt * puiYPosInRefView , Bool bRecon |
---|
112 | #endif |
---|
113 | ); |
---|
114 | #endif |
---|
115 | Bool xIsNonZero ( TComYuv* pcYuv, UInt uiBlkWidth, UInt uiBlkHeight ); |
---|
116 | #if QC_SIMPLIFIEDIVRP_M24938 |
---|
117 | Bool xIsNonZeroByCBF ( UInt uiBaseViewId , UInt uiXPos , UInt uiYPos, UInt uiBlkWidth , UInt uiBlkHeight ); |
---|
118 | #endif |
---|
119 | |
---|
120 | Void xDumpResidual ( TComPic* pcPic, char* pFilenameBase ); |
---|
121 | |
---|
122 | private: |
---|
123 | // general parameters |
---|
124 | Bool m_bCreated; |
---|
125 | Bool m_bInit; |
---|
126 | Bool m_bDecoder; |
---|
127 | TComTrQuant* m_pcTrQuant; |
---|
128 | TComDepthMapGenerator* m_pcDepthMapGenerator; |
---|
129 | TComSPSAccess* m_pcSPSAccess; |
---|
130 | TComAUPicAccess* m_pcAUPicAccess; |
---|
131 | UInt m_uiMaxDepth; |
---|
132 | UInt m_uiOrgDepthBitDepth; |
---|
133 | TComYuv** m_ppcYuvTmp; |
---|
134 | TComYuv** m_ppcYuv; |
---|
135 | TComDataCU** m_ppcCU; |
---|
136 | TComPicYuv m_cTmpPic; |
---|
137 | }; |
---|
138 | |
---|
139 | |
---|
140 | #endif // __TCOM_RESIDUAL_GENERATOR__ |
---|
141 | |
---|
142 | #endif // HHI_INTER_VIEW_RESIDUAL_PRED |
---|
143 | |
---|
144 | |
---|
145 | |
---|
146 | |
---|