Changeset 56 in 3DVCSoftware for trunk/source/Lib/TLibDecoder/SEIread.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/TLibDecoder/SEIread.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 
    35 
    36 #include "../TLibCommon/TComBitStream.h"
    37 #include "../TLibCommon/SEI.h"
     34#include "TLibCommon/TComBitStream.h"
     35#include "TLibCommon/SEI.h"
    3836#include "SEIread.h"
    3937
    40 static void parseSEIuserDataUnregistered(TComBitstream& bs, SEIuserDataUnregistered &sei, unsigned payloadSize);
    41 static void parseSEIpictureDigest(TComBitstream& bs, SEIpictureDigest& sei, unsigned payloadSize);
     38//! \ingroup TLibDecoder
     39//! \{
     40
     41static void parseSEIuserDataUnregistered(TComInputBitstream& bs, SEIuserDataUnregistered &sei, unsigned payloadSize);
     42static void parseSEIpictureDigest(TComInputBitstream& bs, SEIpictureDigest& sei, unsigned payloadSize);
    4243
    4344/**
    44  * unmarshal a single SEI message from bitstream @bs
     45 * unmarshal a single SEI message from bitstream bs
    4546 */
    46 void parseSEImessage(TComBitstream& bs, SEImessages& seis)
     47void parseSEImessage(TComInputBitstream& bs, SEImessages& seis)
    4748{
    4849  unsigned payloadType = 0;
     
    7475
    7576/**
    76  * parse bitstream @bs and unpack a user_data_unregistered SEI message
    77  * of @payloasSize bytes into @sei.
     77 * parse bitstream bs and unpack a user_data_unregistered SEI message
     78 * of payloasSize bytes into sei.
    7879 */
    79 static void parseSEIuserDataUnregistered(TComBitstream& bs, SEIuserDataUnregistered &sei, unsigned payloadSize)
     80static void parseSEIuserDataUnregistered(TComInputBitstream& bs, SEIuserDataUnregistered &sei, unsigned payloadSize)
    8081{
    8182  assert(payloadSize >= 16);
     
    100101
    101102/**
    102  * parse bitstream @bs and unpack a picture_digest SEI message
    103  * of @payloadSize bytes into @sei.
     103 * parse bitstream bs and unpack a picture_digest SEI message
     104 * of payloadSize bytes into sei.
    104105 */
    105 static void parseSEIpictureDigest(TComBitstream& bs, SEIpictureDigest& sei, unsigned payloadSize)
     106static void parseSEIpictureDigest(TComInputBitstream& bs, SEIpictureDigest& sei, unsigned payloadSize)
    106107{
    107108  assert(payloadSize >= 17);
     
    114115}
    115116
     117//! \}
Note: See TracChangeset for help on using the changeset viewer.