Opened 10 years ago Closed 10 years ago #1356 closed defect (invalid)duplicate reading of the same syntax
Description
TDecCAVLC.cpp @ 776 has: READ_FLAG( uiCode, "residual_dpcm_implicit_enabled_flag"); pcSPS->setUseResidualDPCM(RDPCM_SIGNAL_IMPLICIT, (uiCode != 0)); READ_FLAG( uiCode, "residual_dpcm_explicit_enabled_flag"); pcSPS->setUseResidualDPCM(RDPCM_SIGNAL_EXPLICIT, (uiCode != 0));
Change History (4)comment:1 Changed 10 years ago by DefaultCC Plugin
comment:2 follow-up: ↓ 3 Changed 10 years ago by tung.nguyencomment:3 in reply to: ↑ 2 Changed 10 years ago by kolya
Yes, this is my mistake, the input is different. Sorry about that.
Replying to tung.nguyen:
comment:4 Changed 10 years ago by ksuehring
Note: See
TracTickets for help on using
tickets. | This list contains all users that will be notified about changes made to this ticket. These roles will be notified: Reporter, Owner, Subscriber, Participant
|
I think it's correct, please check.
residual_dpcm_implicit_enabled_flag
residual_dpcm_explicit_enabled_flag
pcSPS->setUseResidualDPCM(RDPCM_SIGNAL_IMPLICIT, (uiCode != 0));
pcSPS->setUseResidualDPCM(RDPCM_SIGNAL_EXPLICIT, (uiCode != 0));