Opened 13 years ago Closed 13 years ago #341 closed defect (fixed)Clipping value for scaled motion vector predictor is not appropriate
Description
In JCTVC-H1003_dK, motion vector is treated as an integer value even though it sometimes shows half or quarter pel position.
expression (8-138)
mvLXA = Clip3( -8192, 8191.75, Sign( DistScaleFactor * mvLXA ) *
mvLXA = Clip3( -32768, 32767, Sign( DistScaleFactor * mvLXA ) *
mvLXB =Clip3( -8192, 8191.75, Sign( DistScaleFactor * mvLXA ) *
mvLXB =Clip3( -32768, 32767, Sign( DistScaleFactor * mvLXB ) *
mvLXCol = Clip3( -8192, 8191.75, Sign( DistScaleFactor * mvCol ) *
mvLXCol = Clip3( -32768, 32767, Sign( DistScaleFactor * mvCol ) * Change History (3)comment:1 Changed 13 years ago by DefaultCC Plugin
comment:2 Changed 13 years ago by bbross
comment:3 Changed 13 years ago by bbross
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 in JCTVC-I1003_d6.