Changeset 56 in 3DVCSoftware for trunk/source/Lib/TLibEncoder/SEIwrite.cpp
- Timestamp:
- 11 May 2012, 21:20:17 (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/source/Lib/TLibEncoder/SEIwrite.cpp
r5 r56 4 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. … … 32 32 */ 33 33 34 #include "TLibCommon/TComBitCounter.h" 35 #include "TLibCommon/TComBitStream.h" 36 #include "TLibCommon/SEI.h" 37 #include "SEIwrite.h" 34 38 35 36 #include "../TLibCommon/TComBitCounter.h" 37 #include "../TLibCommon/TComBitStream.h" 38 #include "../TLibCommon/SEI.h" 39 #include "SEIwrite.h" 39 //! \ingroup TLibEncoder 40 //! \{ 40 41 41 42 static void writeSEIuserDataUnregistered(TComBitIf& bs, const SEIuserDataUnregistered &sei); … … 58 59 59 60 /** 60 * marshal a single SEI message @sei, storing the marshalled representation61 * in bitstream @bs.61 * marshal a single SEI message sei, storing the marshalled representation 62 * in bitstream bs. 62 63 */ 63 64 void writeSEImessage(TComBitIf& bs, const SEI& sei) … … 86 87 87 88 /** 88 * marshal a user_data_unregistered SEI message @sei, storing the marshalled89 * representation in bitstream @bs.89 * marshal a user_data_unregistered SEI message sei, storing the marshalled 90 * representation in bitstream bs. 90 91 */ 91 92 static void writeSEIuserDataUnregistered(TComBitIf& bs, const SEIuserDataUnregistered &sei) … … 104 105 /** 105 106 * marshal a picture_digest SEI message, storing the marshalled 106 * representation in bitstream @bs.107 * representation in bitstream bs. 107 108 */ 108 109 static void writeSEIpictureDigest(TComBitIf& bs, const SEIpictureDigest& sei) … … 114 115 } 115 116 } 117 //! \}
Note: See TracChangeset for help on using the changeset viewer.