[313] | 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 |
---|
[1029] | 4 | * granted under this license. |
---|
[313] | 5 | * |
---|
[1259] | 6 | * Copyright (c) 2010-2015, ITU/ISO/IEC |
---|
[313] | 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 | |
---|
[1442] | 46 | Void SyntaxElementWriter::xWriteCodeTr (UInt value, UInt length, const TChar *pSymbolName) |
---|
[313] | 47 | { |
---|
| 48 | xWriteCode (value,length); |
---|
| 49 | if( g_HLSTraceEnable ) |
---|
| 50 | { |
---|
| 51 | fprintf( g_hTrace, "%8lld ", g_nSymbolCounter++ ); |
---|
| 52 | if( length<10 ) |
---|
| 53 | { |
---|
[1029] | 54 | fprintf( g_hTrace, "%-50s u(%d) : %d\n", pSymbolName, length, value ); |
---|
[313] | 55 | } |
---|
| 56 | else |
---|
| 57 | { |
---|
[1029] | 58 | fprintf( g_hTrace, "%-50s u(%d) : %d\n", pSymbolName, length, value ); |
---|
[313] | 59 | } |
---|
| 60 | } |
---|
| 61 | } |
---|
| 62 | |
---|
[1442] | 63 | Void SyntaxElementWriter::xWriteUvlcTr (UInt value, const TChar *pSymbolName) |
---|
[313] | 64 | { |
---|
| 65 | xWriteUvlc (value); |
---|
| 66 | if( g_HLSTraceEnable ) |
---|
| 67 | { |
---|
| 68 | fprintf( g_hTrace, "%8lld ", g_nSymbolCounter++ ); |
---|
[1029] | 69 | fprintf( g_hTrace, "%-50s ue(v) : %d\n", pSymbolName, value ); |
---|
[313] | 70 | } |
---|
| 71 | } |
---|
| 72 | |
---|
[1442] | 73 | Void SyntaxElementWriter::xWriteSvlcTr (Int value, const TChar *pSymbolName) |
---|
[313] | 74 | { |
---|
| 75 | xWriteSvlc(value); |
---|
| 76 | if( g_HLSTraceEnable ) |
---|
| 77 | { |
---|
| 78 | fprintf( g_hTrace, "%8lld ", g_nSymbolCounter++ ); |
---|
[1029] | 79 | fprintf( g_hTrace, "%-50s se(v) : %d\n", pSymbolName, value ); |
---|
[313] | 80 | } |
---|
| 81 | } |
---|
| 82 | |
---|
[1442] | 83 | Void SyntaxElementWriter::xWriteFlagTr(UInt value, const TChar *pSymbolName) |
---|
[313] | 84 | { |
---|
| 85 | xWriteFlag(value); |
---|
| 86 | if( g_HLSTraceEnable ) |
---|
| 87 | { |
---|
| 88 | fprintf( g_hTrace, "%8lld ", g_nSymbolCounter++ ); |
---|
[1029] | 89 | fprintf( g_hTrace, "%-50s u(1) : %d\n", pSymbolName, value ); |
---|
[313] | 90 | } |
---|
| 91 | } |
---|
| 92 | |
---|
[912] | 93 | #if Q0096_OVERLAY_SEI |
---|
[1457] | 94 | Void SyntaxElementWriter::xWriteStringTr( UChar* value, UInt length, const TChar *pSymbolName) |
---|
[912] | 95 | { |
---|
| 96 | xWriteString(value, length); |
---|
| 97 | if( g_HLSTraceEnable ) |
---|
| 98 | { |
---|
| 99 | fprintf( g_hTrace, "%8lld ", g_nSymbolCounter++ ); |
---|
| 100 | fprintf( g_hTrace, "%-50s st(v=%d) : %s\n", pSymbolName, length, value ); |
---|
| 101 | } |
---|
| 102 | } |
---|
[313] | 103 | #endif |
---|
| 104 | |
---|
[912] | 105 | #endif |
---|
[313] | 106 | |
---|
[912] | 107 | |
---|
[313] | 108 | Void SyntaxElementWriter::xWriteCode ( UInt uiCode, UInt uiLength ) |
---|
| 109 | { |
---|
| 110 | assert ( uiLength > 0 ); |
---|
| 111 | m_pcBitIf->write( uiCode, uiLength ); |
---|
| 112 | } |
---|
| 113 | |
---|
| 114 | Void SyntaxElementWriter::xWriteUvlc ( UInt uiCode ) |
---|
| 115 | { |
---|
| 116 | UInt uiLength = 1; |
---|
| 117 | UInt uiTemp = ++uiCode; |
---|
[1029] | 118 | |
---|
[313] | 119 | assert ( uiTemp ); |
---|
[1029] | 120 | |
---|
[313] | 121 | while( 1 != uiTemp ) |
---|
| 122 | { |
---|
| 123 | uiTemp >>= 1; |
---|
| 124 | uiLength += 2; |
---|
| 125 | } |
---|
| 126 | // Take care of cases where uiLength > 32 |
---|
| 127 | m_pcBitIf->write( 0, uiLength >> 1); |
---|
| 128 | m_pcBitIf->write( uiCode, (uiLength+1) >> 1); |
---|
| 129 | } |
---|
| 130 | |
---|
| 131 | Void SyntaxElementWriter::xWriteSvlc ( Int iCode ) |
---|
| 132 | { |
---|
| 133 | UInt uiCode; |
---|
[1029] | 134 | |
---|
[313] | 135 | uiCode = xConvertToUInt( iCode ); |
---|
| 136 | xWriteUvlc( uiCode ); |
---|
| 137 | } |
---|
| 138 | |
---|
| 139 | Void SyntaxElementWriter::xWriteFlag( UInt uiCode ) |
---|
| 140 | { |
---|
| 141 | m_pcBitIf->write( uiCode, 1 ); |
---|
| 142 | } |
---|
| 143 | |
---|
[1352] | 144 | Void SyntaxElementWriter::xWriteRbspTrailingBits() |
---|
| 145 | { |
---|
| 146 | WRITE_FLAG( 1, "rbsp_stop_one_bit"); |
---|
| 147 | Int cnt = 0; |
---|
| 148 | while (m_pcBitIf->getNumBitsUntilByteAligned()) |
---|
| 149 | { |
---|
| 150 | WRITE_FLAG( 0, "rbsp_alignment_zero_bit"); |
---|
| 151 | cnt++; |
---|
| 152 | } |
---|
| 153 | assert(cnt<8); |
---|
| 154 | } |
---|
| 155 | |
---|
[912] | 156 | #if Q0096_OVERLAY_SEI |
---|
| 157 | Void SyntaxElementWriter::xWriteString( UChar* sCode, UInt uiLength) |
---|
| 158 | { |
---|
| 159 | assert(m_pcBitIf->getNumberOfWrittenBits() % 8 == 0 ); |
---|
| 160 | for (Int i=0 ; i<uiLength; i++) |
---|
| 161 | { |
---|
| 162 | m_pcBitIf->write( sCode[i], 8 ); |
---|
| 163 | } |
---|
| 164 | m_pcBitIf->write( 0, 8 ); //zero-termination byte |
---|
| 165 | } |
---|
| 166 | #endif |
---|
| 167 | |
---|
[313] | 168 | //! \} |
---|