Changeset 1254 in SHVCSoftware for branches/SHM-dev
- Timestamp:
- 14 Jul 2015, 01:56:54 (9 years ago)
- Location:
- branches/SHM-dev/source/Lib
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/SHM-dev/source/Lib/TLibDecoder/TDecCAVLC.cpp
r1251 r1254 52 52 #if ENC_DEC_TRACE 53 53 54 Void xTraceSPSHeader ( TComSPS *pSPS)54 Void xTraceSPSHeader (const TComSPS *pSPS) 55 55 { 56 56 fprintf( g_hTrace, "=========== Sequence Parameter Set ID: %d ===========\n", pSPS->getSPSId() ); 57 57 } 58 58 59 Void xTracePPSHeader ( TComPPS *pPPS)59 Void xTracePPSHeader (const TComPPS *pPPS) 60 60 { 61 61 fprintf( g_hTrace, "=========== Picture Parameter Set ID: %d ===========\n", pPPS->getPPSId() ); 62 62 } 63 63 64 Void xTraceSliceHeader ( TComSlice *pSlice)64 Void xTraceSliceHeader (const TComSlice *pSlice) 65 65 { 66 66 fprintf( g_hTrace, "=========== Slice ===========\n"); -
branches/SHM-dev/source/Lib/TLibEncoder/TEncCavlc.cpp
r1251 r1254 45 45 #if ENC_DEC_TRACE 46 46 47 Void xTraceSPSHeader ( TComSPS *pSPS)47 Void xTraceSPSHeader (const TComSPS *pSPS) 48 48 { 49 49 fprintf( g_hTrace, "=========== Sequence Parameter Set ID: %d ===========\n", pSPS->getSPSId() ); 50 50 } 51 51 52 Void xTracePPSHeader ( TComPPS *pPPS)52 Void xTracePPSHeader (const TComPPS *pPPS) 53 53 { 54 54 fprintf( g_hTrace, "=========== Picture Parameter Set ID: %d ===========\n", pPPS->getPPSId() ); 55 55 } 56 56 57 Void xTraceSliceHeader ( TComSlice *pSlice)57 Void xTraceSliceHeader (const TComSlice *pSlice) 58 58 { 59 59 fprintf( g_hTrace, "=========== Slice ===========\n");
Note: See TracChangeset for help on using the changeset viewer.