Opened 6 years ago
Closed 6 years ago
#63 closed defect (fixed)
Bug fix of the case when both WCG_EXT and FULL_NBIT macro is 1.
Reported by: | chujoh | Owned by: | |
---|---|---|---|
Priority: | minor | Milestone: | BMS-2.0 |
Component: | BMS | Version: | VTM-1.1 |
Keywords: | FULL_NBIT | Cc: | ksuehring, XiangLi, fbossen, jvet@… |
Description
The following codes should be changed around line 608 in EncCu.cpp.
From
Int bitdepth_luma_qp_scale = 0;
to
#if FULL_NBIT
Int bitdepth_luma_qp_scale = 6 * (slice->getSPS()->getBitDepth(CHANNEL_TYPE_LUMA) - 8);
#else
Int bitdepth_luma_qp_scale = 0;
#endif
Change history (3)
comment:1 Changed 6 years ago by ksuehring
comment:2 Changed 6 years ago by chujoh
Yes.
comment:3 Changed 6 years ago by ksuehring
- Milestone set to BMS-2.0
- Resolution set to fixed
- Status changed from new to closed
Then I'm closing this as fixed in BMS/VTM 2.0
Note: See TracTickets for help on using tickets.
Is this resolved with the adoption of K0154?