Changeset 1277 in SHVCSoftware
- Timestamp:
- 16 Jul 2015, 03:05:42 (9 years ago)
- Location:
- branches/SHM-dev/source/Lib/TLibEncoder
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/SHM-dev/source/Lib/TLibEncoder/TEncGOP.cpp
r1273 r1277 49 49 #include <time.h> 50 50 #include <math.h> 51 #if SVC_EXTENSION52 #include <limits.h>53 #endif54 51 55 52 #include <deque> … … 58 55 #if ENVIRONMENT_VARIABLE_DEBUG_AND_TEST 59 56 Bool g_bFinalEncode = false; 57 #endif 58 59 #if SVC_EXTENSION 60 Bool TEncGOP::m_signalledVPS = false; 60 61 #endif 61 62 … … 216 217 Int TEncGOP::xWriteVPS (AccessUnit &accessUnit, const TComVPS *vps) 217 218 { 219 #if SVC_EXTENSION 220 if( m_signalledVPS ) 221 { 222 return 0; 223 } 224 m_signalledVPS = true; 225 #endif 218 226 OutputNALUnit nalu(NAL_UNIT_VPS); 219 227 m_pcEntropyCoder->setBitstream(&nalu.m_Bitstream); -
branches/SHM-dev/source/Lib/TLibEncoder/TEncGOP.h
r1273 r1277 164 164 Bool m_noRaslOutputFlag; 165 165 Bool m_prevPicHasEos; 166 static Bool m_signalledVPS; 166 167 #endif 167 168
Note: See TracChangeset for help on using the changeset viewer.