[608] | 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. |
---|
[608] | 5 | * |
---|
[1412] | 6 | * Copyright (c) 2010-2017, ITU/ISO/IEC |
---|
[608] | 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 SyntaxElementWriter.cpp |
---|
| 35 | \brief CAVLC encoder class |
---|
| 36 | */ |
---|
| 37 | |
---|
| 38 | #include "TLibCommon/CommonDef.h" |
---|
| 39 | #include "SyntaxElementWriter.h" |
---|
| 40 | |
---|
| 41 | //! \ingroup TLibEncoder |
---|
| 42 | //! \{ |
---|
| 43 | |
---|
| 44 | #if ENC_DEC_TRACE |
---|
| 45 | |
---|
[1386] | 46 | Void SyntaxElementWriter::xWriteCodeTr (UInt value, UInt length, const TChar *pSymbolName) |
---|
[608] | 47 | { |
---|
| 48 | xWriteCode (value,length); |
---|
| 49 | if( g_HLSTraceEnable ) |
---|
| 50 | { |
---|
[1386] | 51 | #if NH_MV_ENC_DEC_TRAC |
---|
[1179] | 52 | if ( !g_disableNumbering ) |
---|
| 53 | { |
---|
[1313] | 54 | incSymbolCounter(); |
---|
| 55 | fprintf( g_hTrace, "%8lld ", g_nSymbolCounter ); |
---|
| 56 | } |
---|
| 57 | #else |
---|
[608] | 58 | fprintf( g_hTrace, "%8lld ", g_nSymbolCounter++ ); |
---|
[1179] | 59 | #endif |
---|
| 60 | |
---|
[608] | 61 | if( length<10 ) |
---|
| 62 | { |
---|
[1313] | 63 | fprintf( g_hTrace, "%-50s u(%d) : %d\n", pSymbolName, length, value ); |
---|
[608] | 64 | } |
---|
| 65 | else |
---|
| 66 | { |
---|
[1313] | 67 | fprintf( g_hTrace, "%-50s u(%d) : %d\n", pSymbolName, length, value ); |
---|
[608] | 68 | } |
---|
| 69 | } |
---|
| 70 | } |
---|
| 71 | |
---|
[1386] | 72 | Void SyntaxElementWriter::xWriteUvlcTr (UInt value, const TChar *pSymbolName) |
---|
[608] | 73 | { |
---|
| 74 | xWriteUvlc (value); |
---|
| 75 | if( g_HLSTraceEnable ) |
---|
| 76 | { |
---|
[1386] | 77 | #if NH_MV_ENC_DEC_TRAC |
---|
[1179] | 78 | if ( !g_disableNumbering ) |
---|
| 79 | { |
---|
[1313] | 80 | incSymbolCounter(); |
---|
| 81 | fprintf( g_hTrace, "%8lld ", g_nSymbolCounter ); |
---|
| 82 | } |
---|
| 83 | #else |
---|
[608] | 84 | fprintf( g_hTrace, "%8lld ", g_nSymbolCounter++ ); |
---|
[1179] | 85 | #endif |
---|
| 86 | |
---|
[1313] | 87 | fprintf( g_hTrace, "%-50s ue(v) : %d\n", pSymbolName, value ); |
---|
[608] | 88 | } |
---|
| 89 | } |
---|
| 90 | |
---|
[1386] | 91 | Void SyntaxElementWriter::xWriteSvlcTr (Int value, const TChar *pSymbolName) |
---|
[608] | 92 | { |
---|
| 93 | xWriteSvlc(value); |
---|
| 94 | if( g_HLSTraceEnable ) |
---|
| 95 | { |
---|
[1386] | 96 | #if NH_MV_ENC_DEC_TRAC |
---|
[1179] | 97 | if ( !g_disableNumbering ) |
---|
| 98 | { |
---|
[1313] | 99 | incSymbolCounter(); |
---|
| 100 | fprintf( g_hTrace, "%8lld ", g_nSymbolCounter ); |
---|
| 101 | } |
---|
| 102 | #else |
---|
[608] | 103 | fprintf( g_hTrace, "%8lld ", g_nSymbolCounter++ ); |
---|
[1179] | 104 | #endif |
---|
| 105 | |
---|
[1313] | 106 | fprintf( g_hTrace, "%-50s se(v) : %d\n", pSymbolName, value ); |
---|
[608] | 107 | } |
---|
| 108 | } |
---|
| 109 | |
---|
[1386] | 110 | Void SyntaxElementWriter::xWriteFlagTr(UInt value, const TChar *pSymbolName) |
---|
[608] | 111 | { |
---|
| 112 | xWriteFlag(value); |
---|
| 113 | if( g_HLSTraceEnable ) |
---|
| 114 | { |
---|
[1386] | 115 | #if NH_MV_ENC_DEC_TRAC |
---|
[1179] | 116 | if ( !g_disableNumbering ) |
---|
| 117 | { |
---|
[1313] | 118 | incSymbolCounter(); |
---|
| 119 | fprintf( g_hTrace, "%8lld ", g_nSymbolCounter ); |
---|
[1179] | 120 | } |
---|
[1313] | 121 | #else |
---|
| 122 | fprintf( g_hTrace, "%8lld ", g_nSymbolCounter++ ); |
---|
[1179] | 123 | #endif |
---|
[1313] | 124 | |
---|
| 125 | fprintf( g_hTrace, "%-50s u(1) : %d\n", pSymbolName, value ); |
---|
[608] | 126 | } |
---|
| 127 | } |
---|
| 128 | |
---|
[1386] | 129 | #if NH_MV_ENC_DEC_TRAC |
---|
[1396] | 130 | Void SyntaxElementWriter::xWriteStringTr( UChar* value, UInt length, const TChar *pSymbolName) |
---|
[1356] | 131 | { |
---|
| 132 | xWriteString(value, length); |
---|
| 133 | if( g_HLSTraceEnable ) |
---|
| 134 | { |
---|
| 135 | fprintf( g_hTrace, "%8lld ", g_nSymbolCounter++ ); |
---|
| 136 | fprintf( g_hTrace, "%-50s st(v=%d) : %s\n", pSymbolName, length, value ); |
---|
| 137 | } |
---|
| 138 | } |
---|
[608] | 139 | #endif |
---|
[1386] | 140 | #endif |
---|
[608] | 141 | |
---|
| 142 | |
---|
| 143 | Void SyntaxElementWriter::xWriteCode ( UInt uiCode, UInt uiLength ) |
---|
| 144 | { |
---|
| 145 | assert ( uiLength > 0 ); |
---|
| 146 | m_pcBitIf->write( uiCode, uiLength ); |
---|
| 147 | } |
---|
| 148 | |
---|
| 149 | Void SyntaxElementWriter::xWriteUvlc ( UInt uiCode ) |
---|
| 150 | { |
---|
| 151 | UInt uiLength = 1; |
---|
| 152 | UInt uiTemp = ++uiCode; |
---|
[1313] | 153 | |
---|
[608] | 154 | assert ( uiTemp ); |
---|
[1313] | 155 | |
---|
[608] | 156 | while( 1 != uiTemp ) |
---|
| 157 | { |
---|
| 158 | uiTemp >>= 1; |
---|
| 159 | uiLength += 2; |
---|
| 160 | } |
---|
| 161 | // Take care of cases where uiLength > 32 |
---|
| 162 | m_pcBitIf->write( 0, uiLength >> 1); |
---|
| 163 | m_pcBitIf->write( uiCode, (uiLength+1) >> 1); |
---|
| 164 | } |
---|
| 165 | |
---|
| 166 | Void SyntaxElementWriter::xWriteSvlc ( Int iCode ) |
---|
| 167 | { |
---|
| 168 | UInt uiCode; |
---|
[1313] | 169 | |
---|
[608] | 170 | uiCode = xConvertToUInt( iCode ); |
---|
| 171 | xWriteUvlc( uiCode ); |
---|
| 172 | } |
---|
| 173 | |
---|
| 174 | Void SyntaxElementWriter::xWriteFlag( UInt uiCode ) |
---|
| 175 | { |
---|
| 176 | m_pcBitIf->write( uiCode, 1 ); |
---|
| 177 | } |
---|
| 178 | |
---|
[1386] | 179 | #if NH_MV_ENC_DEC_TRAC |
---|
[1356] | 180 | Void SyntaxElementWriter::xWriteString( UChar* sCode, UInt uiLength) |
---|
| 181 | { |
---|
| 182 | assert(m_pcBitIf->getNumberOfWrittenBits() % 8 == 0 ); |
---|
| 183 | for (Int i=0 ; i<uiLength; i++) |
---|
| 184 | { |
---|
| 185 | m_pcBitIf->write( sCode[i], 8 ); |
---|
| 186 | } |
---|
| 187 | m_pcBitIf->write( 0, 8 ); //zero-termination byte |
---|
| 188 | } |
---|
[1386] | 189 | #endif |
---|
[1313] | 190 | Void SyntaxElementWriter::xWriteRbspTrailingBits() |
---|
| 191 | { |
---|
| 192 | WRITE_FLAG( 1, "rbsp_stop_one_bit"); |
---|
| 193 | Int cnt = 0; |
---|
| 194 | while (m_pcBitIf->getNumBitsUntilByteAligned()) |
---|
| 195 | { |
---|
| 196 | WRITE_FLAG( 0, "rbsp_alignment_zero_bit"); |
---|
| 197 | cnt++; |
---|
| 198 | } |
---|
| 199 | assert(cnt<8); |
---|
| 200 | } |
---|
| 201 | |
---|
[608] | 202 | //! \} |
---|