Changeset 1254 in SHVCSoftware


Ignore:
Timestamp:
14 Jul 2015, 01:56:54 (9 years ago)
Author:
seregin
Message:

port rev 4249

Location:
branches/SHM-dev/source/Lib
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • branches/SHM-dev/source/Lib/TLibDecoder/TDecCAVLC.cpp

    r1251 r1254  
    5252#if ENC_DEC_TRACE
    5353
    54 Void  xTraceSPSHeader (TComSPS *pSPS)
     54Void  xTraceSPSHeader (const TComSPS *pSPS)
    5555{
    5656  fprintf( g_hTrace, "=========== Sequence Parameter Set ID: %d ===========\n", pSPS->getSPSId() );
    5757}
    5858
    59 Void  xTracePPSHeader (TComPPS *pPPS)
     59Void  xTracePPSHeader (const TComPPS *pPPS)
    6060{
    6161  fprintf( g_hTrace, "=========== Picture Parameter Set ID: %d ===========\n", pPPS->getPPSId() );
    6262}
    6363
    64 Void  xTraceSliceHeader (TComSlice *pSlice)
     64Void  xTraceSliceHeader (const TComSlice *pSlice)
    6565{
    6666  fprintf( g_hTrace, "=========== Slice ===========\n");
  • branches/SHM-dev/source/Lib/TLibEncoder/TEncCavlc.cpp

    r1251 r1254  
    4545#if ENC_DEC_TRACE
    4646
    47 Void  xTraceSPSHeader (TComSPS *pSPS)
     47Void  xTraceSPSHeader (const TComSPS *pSPS)
    4848{
    4949  fprintf( g_hTrace, "=========== Sequence Parameter Set ID: %d ===========\n", pSPS->getSPSId() );
    5050}
    5151
    52 Void  xTracePPSHeader (TComPPS *pPPS)
     52Void  xTracePPSHeader (const TComPPS *pPPS)
    5353{
    5454  fprintf( g_hTrace, "=========== Picture Parameter Set ID: %d ===========\n", pPPS->getPPSId() );
    5555}
    5656
    57 Void  xTraceSliceHeader (TComSlice *pSlice)
     57Void  xTraceSliceHeader (const TComSlice *pSlice)
    5858{
    5959  fprintf( g_hTrace, "=========== Slice ===========\n");
Note: See TracChangeset for help on using the changeset viewer.