source: SHVCSoftware/branches/SHM-dev/source/Lib/TLibCommon/TComBitStream.h @ 1302

Last change on this file since 1302 was 1262, checked in by seregin, 9 years ago

port rev 4259

  • Property svn:eol-style set to native
File size: 8.4 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-2015, 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     TComBitStream.h
35    \brief    class for handling bitstream (header)
36*/
37
38#ifndef __TCOMBITSTREAM__
39#define __TCOMBITSTREAM__
40
41#if _MSC_VER > 1000
42#pragma once
43#endif // _MSC_VER > 1000
44
45#include <stdint.h>
46#include <vector>
47#include <stdio.h>
48#include "CommonDef.h"
49
50//! \ingroup TLibCommon
51//! \{
52
53// ====================================================================================================================
54// Class definition
55// ====================================================================================================================
56
57/// pure virtual class for basic bit handling
58class TComBitIf
59{
60public:
61  virtual Void        writeAlignOne         () {};
62  virtual Void        writeAlignZero        () {};
63  virtual Void        write                 ( UInt uiBits, UInt uiNumberOfBits )  = 0;
64  virtual Void        resetBits             ()                                    = 0;
65  virtual UInt getNumberOfWrittenBits() const = 0;
66  virtual ~TComBitIf() {}
67};
68
69/**
70 * Model of a writable bitstream that accumulates bits to produce a
71 * bytestream.
72 */
73class TComOutputBitstream : public TComBitIf
74{
75  /**
76   * FIFO for storage of bytes.  Use:
77   *  - fifo.push_back(x) to append words
78   *  - fifo.clear() to empty the FIFO
79   *  - &fifo.front() to get a pointer to the data array.
80   *    NB, this pointer is only valid until the next push_back()/clear()
81   */
82  std::vector<uint8_t> m_fifo;
83
84  UInt m_num_held_bits; /// number of bits not flushed to bytestream.
85  UChar m_held_bits; /// the bits held and not flushed to bytestream.
86                             /// this value is always msb-aligned, bigendian.
87public:
88  // create / destroy
89  TComOutputBitstream();
90  ~TComOutputBitstream();
91
92  // interface for encoding
93  /**
94   * append uiNumberOfBits least significant bits of uiBits to
95   * the current bitstream
96   */
97  Void        write           ( UInt uiBits, UInt uiNumberOfBits );
98
99  /** insert one bits until the bitstream is byte-aligned */
100  Void        writeAlignOne   ();
101
102  /** insert zero bits until the bitstream is byte-aligned */
103  Void        writeAlignZero  ();
104
105  /** this function should never be called */
106  Void resetBits() { assert(0); }
107
108  // utility functions
109
110  /**
111   * Return a pointer to the start of the byte-stream buffer.
112   * Pointer is valid until the next write/flush/reset call.
113   * NB, data is arranged such that subsequent bytes in the
114   * bytestream are stored in ascending addresses.
115   */
116  Char* getByteStream() const;
117
118  /**
119   * Return the number of valid bytes available from  getByteStream()
120   */
121  UInt getByteStreamLength();
122
123  /**
124   * Reset all internal state.
125   */
126  Void clear();
127
128  /**
129   * returns the number of bits that need to be written to
130   * achieve byte alignment.
131   */
132  Int getNumBitsUntilByteAligned() { return (8 - m_num_held_bits) & 0x7; }
133
134  /**
135   * Return the number of bits that have been written since the last clear()
136   */
137  UInt getNumberOfWrittenBits() const { return UInt(m_fifo.size()) * 8 + m_num_held_bits; }
138
139  Void insertAt(const TComOutputBitstream& src, UInt pos);
140
141  /**
142   * Return a reference to the internal fifo
143   */
144  std::vector<uint8_t>& getFIFO() { return m_fifo; }
145
146  UChar getHeldBits  ()          { return m_held_bits;          }
147
148  //TComOutputBitstream& operator= (const TComOutputBitstream& src);
149  /** Return a reference to the internal fifo */
150  const std::vector<uint8_t>& getFIFO() const { return m_fifo; }
151
152  Void          addSubstream    ( TComOutputBitstream* pcSubstream );
153  Void writeByteAlignment();
154
155  //! returns the number of start code emulations contained in the current buffer
156  Int countStartCodeEmulations();
157};
158
159/**
160 * Model of an input bitstream that extracts bits from a predefined
161 * bytestream.
162 */
163class TComInputBitstream
164{
165  std::vector<uint8_t> *m_fifo; /// FIFO for storage of complete bytes
166  std::vector<UInt> m_emulationPreventionByteLocation;
167
168protected:
169  UInt m_fifo_idx; /// Read index into m_fifo
170
171  UInt m_num_held_bits;
172  UChar m_held_bits;
173  UInt  m_numBitsRead;
174
175public:
176  /**
177   * Create a new bitstream reader object that reads from buf.  Ownership
178   * of buf remains with the callee, although the constructed object
179   * will hold a reference to buf
180   */
181  TComInputBitstream(std::vector<uint8_t>* buf);
182  ~TComInputBitstream();
183
184  // interface for decoding
185  Void        pseudoRead      ( UInt uiNumberOfBits, UInt& ruiBits );
186  Void        read            ( UInt uiNumberOfBits, UInt& ruiBits );
187  Void        readByte        ( UInt &ruiBits )
188  {
189    assert(m_fifo_idx < m_fifo->size());
190    ruiBits = (*m_fifo)[m_fifo_idx++];
191  }
192
193  Void        peekPreviousByte( UInt &byte )
194  {
195    assert(m_fifo_idx > 0);
196    byte = (*m_fifo)[m_fifo_idx - 1];
197  }
198
199  UInt        readOutTrailingBits ();
200  UChar getHeldBits  ()          { return m_held_bits;          }
201  TComOutputBitstream& operator= (const TComOutputBitstream& src);
202  UInt  getByteLocation              ( )                     { return m_fifo_idx                    ; }
203
204  // Peek at bits in word-storage. Used in determining if we have completed reading of current bitstream and therefore slice in LCEC.
205  UInt        peekBits (UInt uiBits) { UInt tmp; pseudoRead(uiBits, tmp); return tmp; }
206
207  // utility functions
208  UInt read(UInt numberOfBits) { UInt tmp; read(numberOfBits, tmp); return tmp; }
209  UInt     readByte() { UInt tmp; readByte( tmp ); return tmp; }
210  UInt getNumBitsUntilByteAligned() { return m_num_held_bits & (0x7); }
211  UInt getNumBitsLeft() { return 8*((UInt)m_fifo->size() - m_fifo_idx) + m_num_held_bits; }
212  TComInputBitstream *extractSubstream( UInt uiNumBits ); // Read the nominated number of bits, and return as a bitstream.
213  Void                deleteFifo(); // Delete internal fifo of bitstream.
214  UInt  getNumBitsRead() { return m_numBitsRead; }
215  UInt readByteAlignment();
216
217  Void      pushEmulationPreventionByteLocation ( UInt pos )                  { m_emulationPreventionByteLocation.push_back( pos ); }
218  UInt      numEmulationPreventionBytesRead     ()                            { return (UInt) m_emulationPreventionByteLocation.size();    }
219  std::vector<UInt>  getEmulationPreventionByteLocation  ()                   { return m_emulationPreventionByteLocation;           }
220  UInt      getEmulationPreventionByteLocation  ( UInt idx )                  { return m_emulationPreventionByteLocation[ idx ];    }
221  Void      clearEmulationPreventionByteLocation()                            { m_emulationPreventionByteLocation.clear();          }
222  Void      setEmulationPreventionByteLocation  ( std::vector<UInt> vec )     { m_emulationPreventionByteLocation = vec;            }
223
224  const std::vector<uint8_t> *getFifo() const { return m_fifo; }
225};
226
227//! \}
228
229#endif
Note: See TracBrowser for help on using the repository browser.