Custom Query (1442 matches)

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (49 - 51 of 1442)

Ticket Resolution Summary Owner Reporter
#924 fixed 8.5.3.1.7: missing bottom picture boundary check bbross stefane
Description

To match HM,

– If ( yP >> Log2CtbSizeY ) is equal to ( yPRb >> Log2CtbSizeY ), and xPRb is less than pic_width_in_luma_samples, the following applies.

would have to be changed to

– If ( yP >> Log2CtbSizeY ) is equal to ( yPRb >> Log2CtbSizeY ), yPRb is less than pic_height_in_luma_samples, and xPRb is less than pic_width_in_luma_samples, the following applies.

#910 fixed 8.5.3.1.8 Wrong operand direction when using DiffPicOrderCnt() bbross conrad.ho
Description

In the prior K1003 v10 spec, it said

"If PicOrderCnt( pic ) of every picture pic in every reference picture list of the current slice is less than or equal to PicOrderCntVal, mvCol, refIdxCol, and listCol are set equal to..."

Based on it, the text using DiffPicOrderCnt() should be DiffPicOrderCnt( pic, currPic ) not

DiffPicOrderCnt( currPic, pic ).

Is this a typo in v11?

#742 fixed 8.6.1 : incoherence in quantization group definition bbross Jing-Jing Chung
Description

My understanding of chapter 8.6.1 is that a quantization group is a set of consecutive coding units (CU) in decoding order that have the same qPy_pred. The smallest quantization group size is (1<<Log2MinCuQPDeltaSize) x (1<<Log2MinCuQPDeltaSize).

With the derivation described in J1003-d7, it occurs that the CUs that are inside a (1<<Log2MinCuQPDeltaSize) x (1<<Log2MinCuQPDeltaSize) block do not have the same qPy_pred. This happens when CU size is smaller than (1<<Log2MinCuQPDeltaSize) x (1<<Log2MinCuQPDeltaSize), and only 1 neighbor of the current quantization group is available, and in the same coding tree block (CTB).

An example illustrates the case the attached schematics.

The proposed modification concerns the value of qPY_prev when not set to SliceQPY :

"1. The variable qPY_PREV is derived as follows. – If one or more of the following conditions are true, qPY_PREV is set equal to SliceQPY. – The current quantization group is the first quantization group in a slice. – The current quantization group is the first quantization group in a tile. – The current quantization group is the first quantization group in a coding tree block row and tiles_or_entry_coding_sync_idc is equal to 2."

– Otherwise, qPY_PREV is set equal to the luma quantization parameter QPY of the last coding unit in previous quantization group in decoding order.

Note: See TracQuery for help on using queries.