Changeset 125 in SHVCSoftware for trunk/source/Lib/TLibDecoder/AnnexBread.cpp
- Timestamp:
- 16 Apr 2013, 06:39:31 (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/source/Lib/TLibDecoder/AnnexBread.cpp
r2 r125 4 4 * granted under this license. 5 5 * 6 * Copyright (c) 2010-201 2, ITU/ISO/IEC6 * Copyright (c) 2010-2013, ITU/ISO/IEC 7 7 * All rights reserved. 8 8 * … … 31 31 * THE POSSIBILITY OF SUCH DAMAGE. 32 32 */ 33 34 /** 35 \file AnnexBread.cpp 36 \brief reading functions for Annex B byte streams 37 */ 38 33 39 34 40 #include <stdint.h> … … 147 153 * otherwise true. 148 154 */ 149 bool155 Bool 150 156 byteStreamNALUnit( 151 157 InputByteStream& bs, … … 153 159 AnnexBStats& stats) 154 160 { 155 bool eof = false;161 Bool eof = false; 156 162 try 157 163 { … … 162 168 eof = true; 163 169 } 164 stats.m_numBytesInNALUnit = unsigned(nalUnit.size());170 stats.m_numBytesInNALUnit = UInt(nalUnit.size()); 165 171 return eof; 166 172 }
Note: See TracChangeset for help on using the changeset viewer.