Opened 10 years ago Closed 10 years ago #1318 closed defect (invalid)Residual modification process doesn't match the spec
Description
Line 1759 of TComTrQuant.cpp (function invRdpcmNxN) says: rdpcmMode = (uiChFinalMode == VER_IDX) ? RDPCM_VER : RDPCM_HOR;
I think this should be rdpcmMode = (uiChFinalMode >= VER_IDX) ? RDPCM_VER : RDPCM_HOR;
in order to match the Q1009 v9 spec, which says this should be predModeIntra / 26. Change History (3)comment:1 Changed 10 years ago by DefaultCC Plugin
comment:2 Changed 10 years ago by jackhcomment:3 Changed 10 years ago by karlsharman
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
|
Sorry - this one isn't a bug as uiChFinalMode can only be VER_IDX or HOR_IDX in this block of code. Feel free to close this ticket.