Custom query (105 matches)

Filters
 
or
 
  
 
Columns

Show under each result:


Results (28 - 30 of 105)

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
Ticket Resolution Summary Owner Reporter
#29 fixed On all_layers_idr_aligned_flag Vadim adarsh
Description

In the decoder, after parsing the syntax element all_layers_idr_aligned_flag, the value is allocated to a wrong variable as follows

READ_FLAG(uiCode, "all_layers_idr_aligned_flag" ); vps->setCrossLayerIrapAlignFlag(uiCode);

It should be assigned as below.

READ_FLAG(uiCode, "all_layers_idr_aligned_flag" ); vps->setCrossLayerAlignedIdrOnlyFlag(uiCode);

#30 fixed Correction of vertical reference layer sample location in luma resampling - draft 6 jlchen kiranmisra
Description

It seems that the horizontal luma resampling operation uses incorrect support in draft 6 (JCTVC-Q1008_v2). The vertical sample location for the reference layer picture is incorrect in equation H-47

yPosRL = Clip3( 0, RefLayerPicHeightInSamplesY − 1, yRef + n − 1 )

The correct equation should be:

yPosRL = Clip3( 0, RefLayerPicHeightInSamplesY − 1, yRef + n − 3 )

#31 fixed Inaccurate note related to IRAP picture definition jlchen jonatan
Description

The term "IRAP picture" is not redefined in SHVC draft (relative to HEVC v1), which I think is correct, the following text from HEVC v1 is still valid for SHVC:

"3.65 intra random access point (IRAP) picture: A coded picture for which each VCL NAL unit has nal_unit_type in the range of BLA_W_LP to RSV_IRAP_VCL23, inclusive."

However, the note that follows the definition of IRAP picture in HEVC v1 is not valid for SHVC:

"NOTE – An IRAP picture contains only I slices, and may be a BLA picture, a CRA picture or an IDR picture. The first picture in the bitstream in decoding order must be an IRAP picture. Provided the necessary parameter sets are available when they need to be activated, the IRAP picture and all subsequent non-RASL pictures in decoding order can be correctly decoded without performing the decoding process of any pictures that precede the IRAP picture in decoding order. There may be pictures in a bitstream that contain only I slices that are not IRAP pictures."

since IRAP pictures with nuh_layer_id > 0 may contain P and/or B slices.

The note can be updated as follows:

"NOTE – An IRAP picture with nuh_layer_id equal to 0 contains only I slices, and may be a BLA picture, a CRA picture or an IDR picture. The first picture in the bitstream in decoding order must be an IRAP picture. Provided the necessary parameter sets are available when they need to be activated, the IRAP picture and all subsequent non-RASL pictures in decoding order can be correctly decoded without performing the decoding process of any pictures that precede the IRAP picture in decoding order. There may be pictures in a bitstream that contain only I slices that are not IRAP pictures."

Similar changes would also be needed for notes related to IDR, BLA and CRA picture definitions.

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
Note: See TracQuery for help on using queries.