Changeset 1265 in SHVCSoftware for branches/SHM-dev/source/Lib/TLibEncoder
- Timestamp:
- 14 Jul 2015, 03:43:14 (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/SHM-dev/source/Lib/TLibEncoder/TEncCavlc.cpp
r1261 r1265 300 300 WRITE_UVLC(pcPPS->getChromaQpAdjTableSize() - 1, "chroma_qp_offset_list_len_minus1"); 301 301 /* skip zero index */ 302 for (Int c hromaQpAdjustmentIndex = 1; chromaQpAdjustmentIndex <= pcPPS->getChromaQpAdjTableSize(); chromaQpAdjustmentIndex++)302 for (Int cuChromaQpOffsetIdx = 0; cuChromaQpOffsetIdx < pcPPS->getChromaQpAdjTableSize(); cuChromaQpOffsetIdx++) 303 303 { 304 WRITE_SVLC(pcPPS->getChromaQpAdjTableAt(c hromaQpAdjustmentIndex).u.comp.CbOffset, "cb_qp_offset_list[i]");305 WRITE_SVLC(pcPPS->getChromaQpAdjTableAt(c hromaQpAdjustmentIndex).u.comp.CrOffset, "cr_qp_offset_list[i]");304 WRITE_SVLC(pcPPS->getChromaQpAdjTableAt(cuChromaQpOffsetIdx+1).u.comp.CbOffset, "cb_qp_offset_list[i]"); 305 WRITE_SVLC(pcPPS->getChromaQpAdjTableAt(cuChromaQpOffsetIdx+1).u.comp.CrOffset, "cr_qp_offset_list[i]"); 306 306 } 307 307 }
Note: See TracChangeset for help on using the changeset viewer.