source: SHVCSoftware/branches/SHM-dev/source/Lib/TLibDecoder/SyntaxElementParser.cpp @ 1005

Last change on this file since 1005 was 912, checked in by seregin, 10 years ago

Overlay SEI with macro Q0096_OVERLAY_SEI, patch was provided by Nikolce Stefanoski <stefanos@…>

  • Property svn:eol-style set to native
File size: 5.3 KB
Line 
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-2014, ITU/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 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     SyntaxElementParser.cpp
35    \brief    Parsing functionality high level syntax
36*/
37
38//! \ingroup TLibDecoder
39//! \{
40
41#include "TLibCommon/CommonDef.h"
42#include "TLibCommon/TComRom.h"
43#include "TLibCommon/TComBitStream.h"
44#include "SyntaxElementParser.h"
45
46#if ENC_DEC_TRACE
47
48Void  SyntaxElementParser::xReadCodeTr           (UInt length, UInt& rValue, const Char *pSymbolName)
49{
50  xReadCode (length, rValue);
51  fprintf( g_hTrace, "%8lld  ", g_nSymbolCounter++ );
52  if (length < 10)
53  {
54    fprintf( g_hTrace, "%-50s u(%d)  : %u\n", pSymbolName, length, rValue ); 
55  }
56  else
57  {
58    fprintf( g_hTrace, "%-50s u(%d) : %u\n", pSymbolName, length, rValue ); 
59  }
60  fflush ( g_hTrace );
61}
62
63Void  SyntaxElementParser::xReadUvlcTr           (UInt& rValue, const Char *pSymbolName)
64{
65  xReadUvlc (rValue);
66  fprintf( g_hTrace, "%8lld  ", g_nSymbolCounter++ );
67  fprintf( g_hTrace, "%-50s ue(v) : %u\n", pSymbolName, rValue ); 
68  fflush ( g_hTrace );
69}
70
71Void  SyntaxElementParser::xReadSvlcTr           (Int& rValue, const Char *pSymbolName)
72{
73  xReadSvlc(rValue);
74  fprintf( g_hTrace, "%8lld  ", g_nSymbolCounter++ );
75  fprintf( g_hTrace, "%-50s se(v) : %d\n", pSymbolName, rValue ); 
76  fflush ( g_hTrace );
77}
78
79Void  SyntaxElementParser::xReadFlagTr           (UInt& rValue, const Char *pSymbolName)
80{
81  xReadFlag(rValue);
82  fprintf( g_hTrace, "%8lld  ", g_nSymbolCounter++ );
83  fprintf( g_hTrace, "%-50s u(1)  : %d\n", pSymbolName, rValue ); 
84  fflush ( g_hTrace );
85}
86
87#if Q0096_OVERLAY_SEI
88Void  SyntaxElementParser::xReadStringTr        (UInt buSize, UChar *pValue, UInt& rLength, const Char *pSymbolName)
89{
90  xReadString(buSize, pValue, rLength);
91  fprintf( g_hTrace, "%8lld  ", g_nSymbolCounter++ );
92  fprintf( g_hTrace, "%-50s st(v=%d)  : %s\n", pSymbolName, rLength, pValue );
93  fflush ( g_hTrace );
94}
95#endif
96
97#endif
98
99
100// ====================================================================================================================
101// Protected member functions
102// ====================================================================================================================
103
104Void SyntaxElementParser::xReadCode (UInt uiLength, UInt& ruiCode)
105{
106  assert ( uiLength > 0 );
107  m_pcBitstream->read (uiLength, ruiCode);
108}
109
110Void SyntaxElementParser::xReadUvlc( UInt& ruiVal)
111{
112  UInt uiVal = 0;
113  UInt uiCode = 0;
114  UInt uiLength;
115  m_pcBitstream->read( 1, uiCode );
116
117  if( 0 == uiCode )
118  {
119    uiLength = 0;
120
121    while( ! ( uiCode & 1 ))
122    {
123      m_pcBitstream->read( 1, uiCode );
124      uiLength++;
125    }
126
127    m_pcBitstream->read( uiLength, uiVal );
128
129    uiVal += (1 << uiLength)-1;
130  }
131
132  ruiVal = uiVal;
133}
134
135Void SyntaxElementParser::xReadSvlc( Int& riVal)
136{
137  UInt uiBits = 0;
138  m_pcBitstream->read( 1, uiBits );
139  if( 0 == uiBits )
140  {
141    UInt uiLength = 0;
142
143    while( ! ( uiBits & 1 ))
144    {
145      m_pcBitstream->read( 1, uiBits );
146      uiLength++;
147    }
148
149    m_pcBitstream->read( uiLength, uiBits );
150
151    uiBits += (1 << uiLength);
152    riVal = ( uiBits & 1) ? -(Int)(uiBits>>1) : (Int)(uiBits>>1);
153  }
154  else
155  {
156    riVal = 0;
157  }
158}
159
160Void SyntaxElementParser::xReadFlag (UInt& ruiCode)
161{
162  m_pcBitstream->read( 1, ruiCode );
163}
164
165#if Q0096_OVERLAY_SEI
166Void  SyntaxElementParser::xReadString  (UInt bufSize, UChar *pVal, UInt& rLength)
167{
168  assert( m_pcBitstream->getNumBitsRead() % 8 == 0 ); //always start reading at a byte-aligned position
169  assert ( bufSize > 1 ); //last byte always used for null-termination
170  UInt val;
171  UInt i;
172  for (i=0 ; i<bufSize ; ++i ) 
173  {
174    m_pcBitstream->readByte( val );
175    pVal[i] = val;
176    if ( val == 0)
177    {
178      break;
179    }
180  }
181  rLength = i;
182  assert( pVal[rLength] == 0 );
183}
184#endif
185
186//! \}
187
Note: See TracBrowser for help on using the repository browser.