[5] | 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 |
---|
[56] | 4 | * granted under this license. |
---|
[5] | 5 | * |
---|
[56] | 6 | * Copyright (c) 2010-2012, ITU/ISO/IEC |
---|
[5] | 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. |
---|
[56] | 17 | * * Neither the name of the ITU/ISO/IEC nor the names of its contributors may |
---|
[5] | 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 | */ |
---|
[2] | 33 | |
---|
| 34 | /** \file TDecTop.h |
---|
| 35 | \brief decoder class (header) |
---|
| 36 | */ |
---|
| 37 | |
---|
| 38 | #ifndef __TDECTOP__ |
---|
| 39 | #define __TDECTOP__ |
---|
| 40 | |
---|
[56] | 41 | #include "TLibCommon/CommonDef.h" |
---|
| 42 | #include "TLibCommon/TComList.h" |
---|
| 43 | #include "TLibCommon/TComPicYuv.h" |
---|
| 44 | #include "TLibCommon/TComPic.h" |
---|
| 45 | #include "TLibCommon/TComTrQuant.h" |
---|
| 46 | #include "TLibCommon/TComDepthMapGenerator.h" |
---|
| 47 | #include "TLibCommon/SEI.h" |
---|
[2] | 48 | |
---|
| 49 | #include "TDecGop.h" |
---|
| 50 | #include "TDecEntropy.h" |
---|
| 51 | #include "TDecSbac.h" |
---|
| 52 | #include "TDecCAVLC.h" |
---|
| 53 | |
---|
[56] | 54 | struct InputNALUnit; |
---|
| 55 | |
---|
| 56 | //! \ingroup TLibDecoder |
---|
| 57 | //! \{ |
---|
| 58 | |
---|
| 59 | #define APS_RESERVED_BUFFER_SIZE 2 //!< must be equal to or larger than 2 to handle bitstream parsing |
---|
| 60 | |
---|
[2] | 61 | // ==================================================================================================================== |
---|
| 62 | // Class definition |
---|
| 63 | // ==================================================================================================================== |
---|
| 64 | |
---|
[56] | 65 | class TAppDecTop; |
---|
[2] | 66 | |
---|
| 67 | class CamParsCollector |
---|
| 68 | { |
---|
| 69 | public: |
---|
| 70 | CamParsCollector (); |
---|
| 71 | ~CamParsCollector (); |
---|
| 72 | |
---|
| 73 | Void init ( FILE* pCodedScaleOffsetFile ); |
---|
| 74 | Void uninit (); |
---|
| 75 | Void setSlice ( TComSlice* pcSlice ); |
---|
| 76 | |
---|
[57] | 77 | Bool isInitialized() const { return m_bInitialized; } |
---|
| 78 | |
---|
[2] | 79 | private: |
---|
| 80 | Bool xIsComplete (); |
---|
| 81 | Void xOutput ( Int iPOC ); |
---|
| 82 | |
---|
| 83 | private: |
---|
| 84 | Bool m_bInitialized; |
---|
| 85 | FILE* m_pCodedScaleOffsetFile; |
---|
| 86 | |
---|
| 87 | Int** m_aaiCodedOffset; |
---|
| 88 | Int** m_aaiCodedScale; |
---|
| 89 | Int* m_aiViewOrderIndex; |
---|
| 90 | Int* m_aiViewReceived; |
---|
| 91 | UInt m_uiCamParsCodedPrecision; |
---|
| 92 | Bool m_bCamParsVaryOverTime; |
---|
| 93 | Int m_iLastViewId; |
---|
| 94 | Int m_iLastPOC; |
---|
| 95 | UInt m_uiMaxViewId; |
---|
| 96 | }; |
---|
| 97 | |
---|
| 98 | /// decoder class |
---|
| 99 | class TDecTop |
---|
| 100 | { |
---|
| 101 | private: |
---|
| 102 | Int m_iGopSize; |
---|
| 103 | Bool m_bGopSizeSet; |
---|
| 104 | int m_iMaxRefPicNum; |
---|
[56] | 105 | |
---|
[2] | 106 | Bool m_bRefreshPending; ///< refresh pending flag |
---|
[56] | 107 | Int m_pocCRA; ///< POC number of the latest CRA picture |
---|
| 108 | Int m_pocRandomAccess; ///< POC number of the random access point (the first IDR or CRA picture) |
---|
[2] | 109 | |
---|
| 110 | UInt m_uiValidPS; |
---|
| 111 | TComList<TComPic*> m_cListPic; // Dynamic buffer |
---|
[56] | 112 | ParameterSetManagerDecoder m_parameterSetManagerDecoder; // storage for parameter sets |
---|
| 113 | TComRPSList m_RPSList; |
---|
[2] | 114 | TComSlice* m_apcSlicePilot; |
---|
[56] | 115 | |
---|
[2] | 116 | SEImessages *m_SEIs; ///< "all" SEI messages. If not NULL, we own the object. |
---|
| 117 | |
---|
[56] | 118 | #if SONY_COLPIC_AVAILABILITY |
---|
| 119 | Int m_iViewOrderIdx; |
---|
| 120 | #endif |
---|
| 121 | |
---|
[2] | 122 | // functional classes |
---|
| 123 | TComPrediction m_cPrediction; |
---|
| 124 | TComTrQuant m_cTrQuant; |
---|
| 125 | TDecGop m_cGopDecoder; |
---|
| 126 | TDecSlice m_cSliceDecoder; |
---|
| 127 | TDecCu m_cCuDecoder; |
---|
| 128 | TDecEntropy m_cEntropyDecoder; |
---|
| 129 | TDecCavlc m_cCavlcDecoder; |
---|
| 130 | TDecSbac m_cSbacDecoder; |
---|
| 131 | TDecBinCABAC m_cBinCABAC; |
---|
| 132 | TComLoopFilter m_cLoopFilter; |
---|
| 133 | TComAdaptiveLoopFilter m_cAdaptiveLoopFilter; |
---|
| 134 | TComSampleAdaptiveOffset m_cSAO; |
---|
[56] | 135 | |
---|
[5] | 136 | #if DEPTH_MAP_GENERATION |
---|
[2] | 137 | TComDepthMapGenerator m_cDepthMapGenerator; |
---|
[5] | 138 | #endif |
---|
| 139 | #if HHI_INTER_VIEW_RESIDUAL_PRED |
---|
[2] | 140 | TComResidualGenerator m_cResidualGenerator; |
---|
[5] | 141 | #endif |
---|
[2] | 142 | |
---|
| 143 | Bool isRandomAccessSkipPicture(Int& iSkipFrame, Int& iPOCLastDisplay); |
---|
| 144 | TComPic* m_pcPic; |
---|
| 145 | UInt m_uiSliceIdx; |
---|
| 146 | UInt m_uiLastSliceIdx; |
---|
[56] | 147 | Int m_prevPOC; |
---|
[2] | 148 | Bool m_bFirstSliceInPicture; |
---|
| 149 | Bool m_bFirstSliceInSequence; |
---|
| 150 | |
---|
[56] | 151 | Int m_viewId; |
---|
| 152 | Bool m_isDepth; |
---|
| 153 | TAppDecTop* m_tAppDecTop; |
---|
[57] | 154 | CamParsCollector* m_pcCamParsCollector; |
---|
[56] | 155 | NalUnitType m_nalUnitTypeBaseView; |
---|
| 156 | |
---|
[2] | 157 | public: |
---|
| 158 | TDecTop(); |
---|
| 159 | virtual ~TDecTop(); |
---|
[56] | 160 | |
---|
[2] | 161 | Void create (); |
---|
| 162 | Void destroy (); |
---|
| 163 | |
---|
| 164 | void setPictureDigestEnabled(bool enabled) { m_cGopDecoder.setPictureDigestEnabled(enabled); } |
---|
[56] | 165 | |
---|
| 166 | Void init( TAppDecTop* pcTAppDecTop, Bool bFirstInstance ); |
---|
| 167 | Bool decode(InputNALUnit& nalu, Int& iSkipFrame, Int& iPOCLastDisplay); |
---|
| 168 | |
---|
| 169 | Void deletePicBuffer(); |
---|
[5] | 170 | |
---|
[56] | 171 | #if HHI_INTER_VIEW_RESIDUAL_PRED |
---|
| 172 | Void deleteExtraPicBuffers ( Int iPoc ); |
---|
[42] | 173 | #endif |
---|
[56] | 174 | Void compressMotion ( Int iPoc ); |
---|
[5] | 175 | |
---|
[56] | 176 | Void executeDeblockAndAlf(UInt& ruiPOC, TComList<TComPic*>*& rpcListPic, Int& iSkipFrame, Int& iPOCLastDisplay); |
---|
[5] | 177 | |
---|
[56] | 178 | Void setViewId(Int viewId) { m_viewId = viewId;} |
---|
| 179 | Int getViewId() { return m_viewId ;} |
---|
| 180 | Void setIsDepth( Bool isDepth ) { m_isDepth = isDepth; } |
---|
[2] | 181 | |
---|
[21] | 182 | #if SONY_COLPIC_AVAILABILITY |
---|
| 183 | Void setViewOrderIdx(Int i) { m_iViewOrderIdx = i ;} |
---|
| 184 | Int getViewOrderIdx() { return m_iViewOrderIdx ; } |
---|
| 185 | #endif |
---|
[2] | 186 | |
---|
[21] | 187 | #if DEPTH_MAP_GENERATION |
---|
| 188 | TComDepthMapGenerator* getDepthMapGenerator () { return &m_cDepthMapGenerator; } |
---|
| 189 | #endif |
---|
[2] | 190 | |
---|
[57] | 191 | Void setCamParsCollector( CamParsCollector* pcCamParsCollector ) { m_pcCamParsCollector = pcCamParsCollector; } |
---|
| 192 | |
---|
[56] | 193 | TComList<TComPic*>* getListPic() { return &m_cListPic; } |
---|
| 194 | Void setTAppDecTop( TAppDecTop* pcTAppDecTop ) { m_tAppDecTop = pcTAppDecTop; } |
---|
| 195 | TAppDecTop* getTAppDecTop() { return m_tAppDecTop; } |
---|
| 196 | NalUnitType getNalUnitTypeBaseView() { return m_nalUnitTypeBaseView; } |
---|
[2] | 197 | |
---|
| 198 | protected: |
---|
| 199 | Void xGetNewPicBuffer (TComSlice* pcSlice, TComPic*& rpcPic); |
---|
[56] | 200 | Void xUpdateGopSize (TComSlice* pcSlice); |
---|
| 201 | Void xCreateLostPicture (Int iLostPOC); |
---|
[5] | 202 | |
---|
[56] | 203 | Void decodeAPS( TComAPS* cAPS) { m_cEntropyDecoder.decodeAPS(cAPS); }; |
---|
| 204 | Void xActivateParameterSets(); |
---|
| 205 | #if SKIPFRAME_BUGFIX |
---|
| 206 | Bool xDecodeSlice(InputNALUnit &nalu, Int &iSkipFrame, Int iPOCLastDisplay); |
---|
| 207 | #else |
---|
| 208 | Bool xDecodeSlice(InputNALUnit &nalu, Int iSkipFrame, Int iPOCLastDisplay); |
---|
| 209 | #endif |
---|
| 210 | Void xDecodeSPS(); |
---|
| 211 | Void xDecodePPS(); |
---|
| 212 | Void xDecodeAPS(); |
---|
| 213 | Void xDecodeSEI(); |
---|
| 214 | |
---|
| 215 | Void allocAPS (TComAPS* pAPS); //!< memory allocation for APS |
---|
[2] | 216 | };// END CLASS DEFINITION TDecTop |
---|
| 217 | |
---|
| 218 | |
---|
[56] | 219 | //! \} |
---|
| 220 | |
---|
[2] | 221 | #endif // __TDECTOP__ |
---|
| 222 | |
---|