Changeset 810 in SHVCSoftware


Ignore:
Timestamp:
27 Jun 2014, 11:55:03 (11 years ago)
Author:
seregin
Message:

update printing of NAL unit types

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/SHM-6-dev/source/Lib/TLibCommon/TComRom.cpp

    r595 r810  
    527527  {
    528528  case NAL_UNIT_CODED_SLICE_TRAIL_N:
     529    return "TRAIL_N";
    529530  case NAL_UNIT_CODED_SLICE_TRAIL_R:
    530     return "TRAIL";
     531    return "TRAIL_R";
    531532 
    532533  case NAL_UNIT_CODED_SLICE_TSA_N:
     534    return "  TSA_N";
    533535  case NAL_UNIT_CODED_SLICE_TSA_R:
    534     return "  TSA";
     536    return "  TSA_R";
    535537 
    536538  case NAL_UNIT_CODED_SLICE_STSA_N:
     539    return " STSA_N";
    537540  case NAL_UNIT_CODED_SLICE_STSA_R:
    538     return " STSA";
     541    return " STSA_R";
    539542
    540543  case NAL_UNIT_CODED_SLICE_RADL_N:
     544    return " RADL_N";
    541545  case NAL_UNIT_CODED_SLICE_RADL_R:
    542     return " RADL";
     546    return " RADL_R";
    543547 
    544548  case NAL_UNIT_CODED_SLICE_RASL_N:
     549    return " RASL_N";
    545550  case NAL_UNIT_CODED_SLICE_RASL_R:
    546     return " RASL";
     551    return " RASL_R";
    547552
    548553  case NAL_UNIT_CODED_SLICE_BLA_W_LP:
    549554  case NAL_UNIT_CODED_SLICE_BLA_W_RADL:
    550555  case NAL_UNIT_CODED_SLICE_BLA_N_LP:
    551     return "  BLA";
     556    return "    BLA";
    552557
    553558  case NAL_UNIT_CODED_SLICE_IDR_W_RADL:
    554559  case NAL_UNIT_CODED_SLICE_IDR_N_LP:
    555     return "  IDR";
     560    return "    IDR";
    556561 
    557562  case NAL_UNIT_CODED_SLICE_CRA:
    558     return "  CRA";
     563    return "    CRA";
    559564
    560565  default:
    561     return "     ";
     566    return "       ";
    562567  };
    563568}
Note: See TracChangeset for help on using the changeset viewer.