Changeset 810 in SHVCSoftware
- Timestamp:
- 27 Jun 2014, 11:55:03 (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/SHM-6-dev/source/Lib/TLibCommon/TComRom.cpp
r595 r810 527 527 { 528 528 case NAL_UNIT_CODED_SLICE_TRAIL_N: 529 return "TRAIL_N"; 529 530 case NAL_UNIT_CODED_SLICE_TRAIL_R: 530 return "TRAIL ";531 return "TRAIL_R"; 531 532 532 533 case NAL_UNIT_CODED_SLICE_TSA_N: 534 return " TSA_N"; 533 535 case NAL_UNIT_CODED_SLICE_TSA_R: 534 return " TSA ";536 return " TSA_R"; 535 537 536 538 case NAL_UNIT_CODED_SLICE_STSA_N: 539 return " STSA_N"; 537 540 case NAL_UNIT_CODED_SLICE_STSA_R: 538 return " STSA ";541 return " STSA_R"; 539 542 540 543 case NAL_UNIT_CODED_SLICE_RADL_N: 544 return " RADL_N"; 541 545 case NAL_UNIT_CODED_SLICE_RADL_R: 542 return " RADL ";546 return " RADL_R"; 543 547 544 548 case NAL_UNIT_CODED_SLICE_RASL_N: 549 return " RASL_N"; 545 550 case NAL_UNIT_CODED_SLICE_RASL_R: 546 return " RASL ";551 return " RASL_R"; 547 552 548 553 case NAL_UNIT_CODED_SLICE_BLA_W_LP: 549 554 case NAL_UNIT_CODED_SLICE_BLA_W_RADL: 550 555 case NAL_UNIT_CODED_SLICE_BLA_N_LP: 551 return " BLA";556 return " BLA"; 552 557 553 558 case NAL_UNIT_CODED_SLICE_IDR_W_RADL: 554 559 case NAL_UNIT_CODED_SLICE_IDR_N_LP: 555 return " IDR";560 return " IDR"; 556 561 557 562 case NAL_UNIT_CODED_SLICE_CRA: 558 return " CRA";563 return " CRA"; 559 564 560 565 default: 561 return " ";566 return " "; 562 567 }; 563 568 }
Note: See TracChangeset for help on using the changeset viewer.