Opened 12 years ago

Closed 10 years ago

Last modified 10 years ago

#296 closed defect (fixed)

X- and Y-positions are calculated wrong in TComPattern::initPattern

Reported by: Heribert Brust Owned by:
Priority: minor Milestone: HM-16.1
Component: HM Version: HM-5.1
Keywords: Cc: fbossen, ksuehring, davidf, jct-vc@…

Description

in TComPattern.cpp:
initPattern( TComDataCU* pcCU, UInt uiPartDepth, UInt uiAbsPartIdx )
lines 177 and 178; uiCurrPicPelX and uiCurrPicPelY are calculated wrong.
Instead of:
UInt uiCurrPicPelX = pcCU->getCUPelX() + g_auiRasterToPelX[ g_auiZscanToRaster[uiAbsZorderIdx] ];
UInt uiCurrPicPelY = pcCU->getCUPelY() + g_auiRasterToPelY[ g_auiZscanToRaster[uiAbsZorderIdx] ];
the code should be:
UInt uiCurrPicPelX = pcCU->getCUPelX() + g_auiRasterToPelX[ g_auiZscanToRaster[uiAbsPartIdx] ];
UInt uiCurrPicPelY = pcCU->getCUPelY() + g_auiRasterToPelY[ g_auiZscanToRaster[uiAbsPartIdx] ];

Change History (3)

comment:1 Changed 12 years ago by DefaultCC Plugin

  • Cc fbossen ksuehring davidf jct-vc@… added

comment:2 Changed 10 years ago by karlsharman

  • Resolution set to fixed
  • Status changed from new to closed

Code no longer present due to merger with RExt.

comment:3 Changed 10 years ago by ksuehring

  • Milestone set to HM-16.1
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

  • David Flynn(Subscriber)
  • Frank Bossen(Subscriber)
  • Heribert Brust(Reporter)
  • jct-vc@…(Subscriber)
  • Karl Sharman(Participant)
  • karl.sharman@…(Always)
  • Karsten Suehring(Subscriber, Participant, Always)