Opened 10 years ago Closed 10 years ago #52 closed defect (fixed)wrong chroma upsampling scale factor
Description
In function TComUpsampleFilter::upsampleBasePic(), the vertical upsampling of chroma has an error. Variable scaleX is inocrrectly being used in place of scaleY.
Existing code looks like this: #if R0209_GENERIC_PHASE refPos16 = (((y - srlTOffsetC)*scaleX - addY) >> shiftYM4) + refOffsetYC; #else
Corrected code should look like this: #if R0209_GENERIC_PHASE refPos16 = (((y - srlTOffsetC)*scaleY - addY) >> shiftYM4) + refOffsetYC; #else Change history (2)comment:1 Changed 10 years ago by DefaultCC Plugin
comment:2 Changed 10 years ago by Vadim
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
|
fixed as suggested with rev 993