Opened 12 years ago

Closed 12 years ago

#525 closed defect (fixed)

The size of chroma component in pcm_samle() is different from HM software.

Reported by: kchono Owned by: bbross
Priority: minor Milestone:
Component: Text Version: D6 (H1003) dI/dJ/dK
Keywords: PCM Cc: bbross, wjhan, jct-vc@…

Description

The size of chroma component in text is same as 422, not 420. Change the PCM syntax 7.3.7.2 as follows.

pcm_sample( x0, y0, log2CbSize ) {
for( i = 0; i < 1 << ( log2CbSize << 1 ); i++ )

pcm_sample_luma[ i ]

for( i = 0; i < ( 1 << ( log2CbSize << 1 ) ) >> 2; i++ )

pcm_sample_chroma[ i ]

NumPCMBlock--
}

Change History (2)

comment:1 Changed 12 years ago by DefaultCC Plugin

  • Cc bbross wjhan jct-vc@… added

comment:2 Changed 12 years ago by bbross

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

Current text is OK because Cb and Cr samples are parsed together in pcm_sample_chroma.

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

  • Benjamin Bross(Owner, Subscriber, Participant)
  • jct-vc@…(Subscriber)
  • karl.sharman@…(Always)
  • Karsten Suehring(Always)
  • Keiichi Chono(Reporter)
  • Woo-Jin Han(Subscriber)