Changeset 56 in 3DVCSoftware for trunk/source/Lib/TLibEncoder/SEIwrite.cpp


Ignore:
Timestamp:
11 May 2012, 21:20:17 (13 years ago)
Author:
hschwarz
Message:

updated trunk (move to HM6.1)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/source/Lib/TLibEncoder/SEIwrite.cpp

    r5 r56  
    44 * granted under this license.
    55 *
    6  * Copyright (c) 2010-2011, ISO/IEC
     6 * Copyright (c) 2010-2012, ITU/ISO/IEC
    77 * All rights reserved.
    88 *
     
    1515 *    this list of conditions and the following disclaimer in the documentation
    1616 *    and/or other materials provided with the distribution.
    17  *  * Neither the name of the ISO/IEC nor the names of its contributors may
     17 *  * Neither the name of the ITU/ISO/IEC nor the names of its contributors may
    1818 *    be used to endorse or promote products derived from this software without
    1919 *    specific prior written permission.
     
    3232 */
    3333
     34#include "TLibCommon/TComBitCounter.h"
     35#include "TLibCommon/TComBitStream.h"
     36#include "TLibCommon/SEI.h"
     37#include "SEIwrite.h"
    3438
    35 
    36 #include "../TLibCommon/TComBitCounter.h"
    37 #include "../TLibCommon/TComBitStream.h"
    38 #include "../TLibCommon/SEI.h"
    39 #include "SEIwrite.h"
     39//! \ingroup TLibEncoder
     40//! \{
    4041
    4142static void writeSEIuserDataUnregistered(TComBitIf& bs, const SEIuserDataUnregistered &sei);
     
    5859
    5960/**
    60  * marshal a single SEI message @sei, storing the marshalled representation
    61  * in bitstream @bs.
     61 * marshal a single SEI message sei, storing the marshalled representation
     62 * in bitstream bs.
    6263 */
    6364void writeSEImessage(TComBitIf& bs, const SEI& sei)
     
    8687
    8788/**
    88  * marshal a user_data_unregistered SEI message @sei, storing the marshalled
    89  * representation in bitstream @bs.
     89 * marshal a user_data_unregistered SEI message sei, storing the marshalled
     90 * representation in bitstream bs.
    9091 */
    9192static void writeSEIuserDataUnregistered(TComBitIf& bs, const SEIuserDataUnregistered &sei)
     
    104105/**
    105106 * marshal a picture_digest SEI message, storing the marshalled
    106  * representation in bitstream @bs.
     107 * representation in bitstream bs.
    107108 */
    108109static void writeSEIpictureDigest(TComBitIf& bs, const SEIpictureDigest& sei)
     
    114115  }
    115116}
     117//! \}
Note: See TracChangeset for help on using the changeset viewer.