[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 |
---|
[1313] | 4 | * granted under this license. |
---|
[5] | 5 | * |
---|
[1313] | 6 | * Copyright (c) 2010-2015, 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 TEncCavlc.h |
---|
| 35 | \brief CAVLC encoder class (header) |
---|
| 36 | */ |
---|
| 37 | |
---|
| 38 | #ifndef __TENCCAVLC__ |
---|
| 39 | #define __TENCCAVLC__ |
---|
| 40 | |
---|
| 41 | #if _MSC_VER > 1000 |
---|
| 42 | #pragma once |
---|
| 43 | #endif // _MSC_VER > 1000 |
---|
| 44 | |
---|
[56] | 45 | #include "TLibCommon/CommonDef.h" |
---|
| 46 | #include "TLibCommon/TComBitStream.h" |
---|
[608] | 47 | #include "TLibCommon/TComRom.h" |
---|
[2] | 48 | #include "TEncEntropy.h" |
---|
[608] | 49 | #include "SyntaxElementWriter.h" |
---|
[2] | 50 | |
---|
[56] | 51 | //! \ingroup TLibEncoder |
---|
| 52 | //! \{ |
---|
| 53 | |
---|
[2] | 54 | class TEncTop; |
---|
| 55 | |
---|
| 56 | // ==================================================================================================================== |
---|
| 57 | // Class definition |
---|
| 58 | // ==================================================================================================================== |
---|
| 59 | |
---|
[1386] | 60 | class AUDWriter : public SyntaxElementWriter |
---|
| 61 | { |
---|
| 62 | public: |
---|
| 63 | AUDWriter() {}; |
---|
| 64 | virtual ~AUDWriter() {}; |
---|
| 65 | |
---|
| 66 | Void codeAUD(TComBitIf& bs, const Int pictureType); |
---|
| 67 | }; |
---|
| 68 | |
---|
[2] | 69 | /// CAVLC encoder class |
---|
[608] | 70 | class TEncCavlc : public SyntaxElementWriter, public TEncEntropyIf |
---|
[2] | 71 | { |
---|
| 72 | public: |
---|
| 73 | TEncCavlc(); |
---|
| 74 | virtual ~TEncCavlc(); |
---|
[1313] | 75 | |
---|
[2] | 76 | protected: |
---|
[1321] | 77 | #if NH_MV |
---|
[1179] | 78 | TEncTop* m_encTop; |
---|
| 79 | #endif |
---|
[1313] | 80 | |
---|
| 81 | Void codeShortTermRefPicSet ( const TComReferencePictureSet* pcRPS, Bool calledFromSliceHeader, Int idx ); |
---|
[608] | 82 | Bool findMatchingLTRP ( TComSlice* pcSlice, UInt *ltrpsIndex, Int ltrpPOC, Bool usedFlag ); |
---|
[1313] | 83 | |
---|
[2] | 84 | public: |
---|
| 85 | |
---|
[1313] | 86 | Void resetEntropy (const TComSlice *pSlice); |
---|
| 87 | SliceType determineCabacInitIdx (const TComSlice* /*pSlice*/) { assert(0); return I_SLICE; }; |
---|
| 88 | |
---|
[2] | 89 | Void setBitstream ( TComBitIf* p ) { m_pcBitIf = p; } |
---|
| 90 | Void resetBits () { m_pcBitIf->resetBits(); } |
---|
| 91 | UInt getNumberOfWrittenBits() { return m_pcBitIf->getNumberOfWrittenBits(); } |
---|
[1313] | 92 | Void codeVPS ( const TComVPS* pcVPS ); |
---|
| 93 | #if NH_MV |
---|
| 94 | Void codeVPSExtension ( const TComVPS *pcVPS ); |
---|
| 95 | Void codeVideoSignalInfo ( const TComVideoSignalInfo* pcVideoSignalInfo ); |
---|
[738] | 96 | |
---|
[1313] | 97 | Void codeDpbSize ( const TComVPS* vps ); |
---|
[738] | 98 | |
---|
[1313] | 99 | Void codeRepFormat ( Int i, const TComRepFormat* curRepFormat, const TComRepFormat* prevRepFormat ); |
---|
| 100 | Void codeVPSVUI ( const TComVPS* pcVPS ); |
---|
| 101 | Void codeVpsVuiBspHrdParameters( const TComVPS* pcVPS ); |
---|
[622] | 102 | #endif |
---|
[1313] | 103 | |
---|
| 104 | Void codeVUI ( const TComVUI *pcVUI, const TComSPS* pcSPS ); |
---|
| 105 | #if NH_MV |
---|
| 106 | Void codeSPSExtension ( const TComSPS* pcSPS ); |
---|
[622] | 107 | #endif |
---|
[1313] | 108 | Void codeSPS ( const TComSPS* pcSPS ); |
---|
| 109 | Void codePPS ( const TComPPS* pcPPS ); |
---|
| 110 | #if NH_MV |
---|
| 111 | Void codePpsMultilayerExtension( const TComPPS* pcPPS ); |
---|
[1066] | 112 | #endif |
---|
[2] | 113 | Void codeSliceHeader ( TComSlice* pcSlice ); |
---|
[1313] | 114 | Void codePTL ( const TComPTL* pcPTL, Bool profilePresentFlag, Int maxNumSubLayersMinus1); |
---|
| 115 | Void codeProfileTier ( const ProfileTierLevel* ptl, const Bool bIsSubLayer ); |
---|
| 116 | Void codeHrdParameters ( const TComHRD *hrd, Bool commonInfPresentFlag, UInt maxNumSubLayersMinus1 ); |
---|
[56] | 117 | Void codeTilesWPPEntryPoint( TComSlice* pSlice ); |
---|
[2] | 118 | Void codeTerminatingBit ( UInt uilsLast ); |
---|
| 119 | Void codeSliceFinish (); |
---|
[1313] | 120 | |
---|
[2] | 121 | Void codeMVPIdx ( TComDataCU* pcCU, UInt uiAbsPartIdx, RefPicList eRefList ); |
---|
[1313] | 122 | Void codeSAOBlkParam(SAOBlkParam& /*saoBlkParam*/, const BitDepths& /*bitDepths*/, Bool* /*sliceEnabled*/, Bool /*leftMergeAvail*/, Bool /*aboveMergeAvail*/, Bool /*onlyEstMergeInfo*/ = false){printf("only supported in CABAC"); assert(0); exit(-1);} |
---|
[608] | 123 | Void codeCUTransquantBypassFlag( TComDataCU* pcCU, UInt uiAbsPartIdx ); |
---|
[2] | 124 | Void codeSkipFlag ( TComDataCU* pcCU, UInt uiAbsPartIdx ); |
---|
| 125 | Void codeMergeFlag ( TComDataCU* pcCU, UInt uiAbsPartIdx ); |
---|
| 126 | Void codeMergeIndex ( TComDataCU* pcCU, UInt uiAbsPartIdx ); |
---|
[1313] | 127 | |
---|
| 128 | Void codeAlfCtrlFlag ( ComponentID /*component*/, UInt /*code*/ ) {printf("Not supported\n"); assert(0);} |
---|
[2] | 129 | Void codeInterModeFlag( TComDataCU* pcCU, UInt uiAbsPartIdx, UInt uiDepth, UInt uiEncMode ); |
---|
| 130 | Void codeSplitFlag ( TComDataCU* pcCU, UInt uiAbsPartIdx, UInt uiDepth ); |
---|
[1313] | 131 | |
---|
[2] | 132 | Void codePartSize ( TComDataCU* pcCU, UInt uiAbsPartIdx, UInt uiDepth ); |
---|
| 133 | Void codePredMode ( TComDataCU* pcCU, UInt uiAbsPartIdx ); |
---|
[1313] | 134 | |
---|
[608] | 135 | Void codeIPCMInfo ( TComDataCU* pcCU, UInt uiAbsPartIdx ); |
---|
[56] | 136 | |
---|
[2] | 137 | Void codeTransformSubdivFlag( UInt uiSymbol, UInt uiCtx ); |
---|
[1313] | 138 | Void codeQtCbf ( TComTU &rTu, const ComponentID compID, const Bool lowestLevel ); |
---|
[2] | 139 | Void codeQtRootCbf ( TComDataCU* pcCU, UInt uiAbsPartIdx ); |
---|
[1313] | 140 | Void codeQtCbfZero ( TComTU &rTu, const ChannelType chType ); |
---|
| 141 | Void codeQtRootCbfZero ( ); |
---|
[608] | 142 | Void codeIntraDirLumaAng( TComDataCU* pcCU, UInt absPartIdx, Bool isMultiple); |
---|
[2] | 143 | Void codeIntraDirChroma( TComDataCU* pcCU, UInt uiAbsPartIdx ); |
---|
| 144 | Void codeInterDir ( TComDataCU* pcCU, UInt uiAbsPartIdx ); |
---|
| 145 | Void codeRefFrmIdx ( TComDataCU* pcCU, UInt uiAbsPartIdx, RefPicList eRefList ); |
---|
| 146 | Void codeMvd ( TComDataCU* pcCU, UInt uiAbsPartIdx, RefPicList eRefList ); |
---|
[1313] | 147 | |
---|
| 148 | Void codeCrossComponentPrediction( TComTU &rTu, ComponentID compID ); |
---|
| 149 | |
---|
[2] | 150 | Void codeDeltaQP ( TComDataCU* pcCU, UInt uiAbsPartIdx ); |
---|
[1313] | 151 | Void codeChromaQpAdjustment( TComDataCU* pcCU, UInt uiAbsPartIdx ); |
---|
[608] | 152 | |
---|
[1313] | 153 | Void codeCoeffNxN ( TComTU &rTu, TCoeff* pcCoef, const ComponentID compID ); |
---|
| 154 | Void codeTransformSkipFlags ( TComTU &rTu, ComponentID component ); |
---|
| 155 | |
---|
| 156 | Void estBit ( estBitsSbacStruct* pcEstBitsSbac, Int width, Int height, ChannelType chType ); |
---|
| 157 | |
---|
[56] | 158 | Void xCodePredWeightTable ( TComSlice* pcSlice ); |
---|
| 159 | |
---|
[1313] | 160 | Void codeScalingList ( const TComScalingList &scalingList ); |
---|
| 161 | Void xCodeScalingList ( const TComScalingList* scalingList, UInt sizeId, UInt listId); |
---|
| 162 | |
---|
| 163 | Void codeExplicitRdpcmMode( TComTU &rTu, const ComponentID compID ); |
---|
| 164 | |
---|
[1321] | 165 | #if NH_MV |
---|
[1179] | 166 | TEncTop* getEncTop() { return m_encTop; }; |
---|
| 167 | Void setEncTop( TEncTop* et ) { m_encTop = et; }; |
---|
| 168 | #endif |
---|
[1313] | 169 | |
---|
[2] | 170 | }; |
---|
| 171 | |
---|
[56] | 172 | //! \} |
---|
| 173 | |
---|
[2] | 174 | #endif // !defined(AFX_TENCCAVLC_H__EE8A0B30_945B_4169_B290_24D3AD52296F__INCLUDED_) |
---|
| 175 | |
---|