Changeset 1413 in 3DVCSoftware for trunk/source/Lib/TLibVideoIO
- Timestamp:
- 11 Jul 2018, 15:19:49 (7 years ago)
- Location:
- trunk/source/Lib/TLibVideoIO
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/source/Lib/TLibVideoIO/TVideoIOYuv.cpp
r1405 r1413 4 4 * granted under this license. 5 5 * 6 * Copyright (c) 2010-201 6, ITU/ISO/IEC6 * Copyright (c) 2010-2017, ITU/ISO/IEC 7 7 * All rights reserved. 8 8 * … … 186 186 * seekable, by consuming bytes. 187 187 */ 188 Void TVideoIOYuv::skipFrames( UInt numFrames, UInt width, UInt height, ChromaFormat format)189 { 190 if ( !numFrames)188 Void TVideoIOYuv::skipFrames(Int numFrames, UInt width, UInt height, ChromaFormat format) 189 { 190 if (numFrames==0) 191 191 { 192 192 return; … … 733 733 } 734 734 735 if(pPicYuvUser) 736 { 735 737 ColourSpaceConvert(*pPicYuvTrueOrg, *pPicYuvUser, ipcsc, true); 738 } 736 739 737 740 return true; -
trunk/source/Lib/TLibVideoIO/TVideoIOYuv.h
r1405 r1413 4 4 * granted under this license. 5 5 * 6 * Copyright (c) 2010-201 6, ITU/ISO/IEC6 * Copyright (c) 2010-2017, ITU/ISO/IEC 7 7 * All rights reserved. 8 8 * … … 67 67 Void close (); ///< close file 68 68 69 Void skipFrames( UInt numFrames, UInt width, UInt height, ChromaFormat format);69 Void skipFrames(Int numFrames, UInt width, UInt height, ChromaFormat format); 70 70 71 71 // if fileFormat<NUM_CHROMA_FORMAT, the format of the file is that format specified, else it is the format of the TComPicYuv.
Note: See TracChangeset for help on using the changeset viewer.