Changeset 56 in 3DVCSoftware for trunk/source/Lib/TLibVideoIO/TVideoIOYuv.h
- Timestamp:
- 11 May 2012, 21:20:17 (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/source/Lib/TLibVideoIO/TVideoIOYuv.h
r5 r56 2 2 * License, included below. This software may be subject to other third party 3 3 * and contributor rights, including patent rights, and no such rights are 4 * granted under this license. 4 * granted under this license. 5 5 * 6 * Copyright (c) 2010-201 1,ISO/IEC6 * Copyright (c) 2010-2012, ITU/ISO/IEC 7 7 * All rights reserved. 8 8 * … … 15 15 * this list of conditions and the following disclaimer in the documentation 16 16 * and/or other materials provided with the distribution. 17 * * Neither the name of the I SO/IEC nor the names of its contributors may17 * * Neither the name of the ITU/ISO/IEC nor the names of its contributors may 18 18 * be used to endorse or promote products derived from this software without 19 19 * specific prior written permission. … … 31 31 * THE POSSIBILITY OF SUCH DAMAGE. 32 32 */ 33 34 35 33 36 34 /** \file TVideoIOYuv.h … … 70 68 void skipFrames(unsigned int numFrames, unsigned int width, unsigned int height); 71 69 72 Void read ( TComPicYuv*& rpcPicYuv, Int aiPad[2], Bool bRewind = false ); ///< read one YUV frame with padding parameter 73 Void write ( TComPicYuv* pcPicYuv, Int aiPad[2] ); ///< write one YUV frame with padding parameter 70 bool read ( TComPicYuv* pPicYuv, Int aiPad[2], Bool bRewind = false ); ///< read one YUV frame with padding parameter 71 #if PIC_CROPPING 72 Bool write( TComPicYuv* pPicYuv, Int cropLeft=0, Int cropRight=0, Int cropTop=0, Int cropBottom=0 ); 73 #else 74 bool write ( TComPicYuv* pPicYuv, Int aiPad[2] ); ///< write one YUV frame with padding parameter 75 #endif 74 76 75 Bool isEof (); ///< check end-of-file 77 bool isEof (); ///< check for end-of-file 78 bool isFail(); ///< check for failure 76 79 77 80 };
Note: See TracChangeset for help on using the changeset viewer.