Re: [FFmpeg-devel] [PATCH] avcodec/hevc_ps: fix valid range of num_tile_{columns, rows}_minus1

2019-07-05 Thread James Almer
On 7/5/2019 11:13 AM, Michael Niedermayer wrote: > On Sun, Jun 30, 2019 at 05:45:58PM -0300, James Almer wrote: >> From 7.4.3.3.1: >> >> num_tile_columns_minus1 shall be in the range of 0 to PicWidthInCtbsY - 1, >> inclusive. >> num_tile_rows_minus1 shall be in the range of 0 to PicHeightInCtbsY -

Re: [FFmpeg-devel] [PATCH] avcodec/hevc_ps: fix valid range of num_tile_{columns, rows}_minus1

2019-07-05 Thread Michael Niedermayer
On Sun, Jun 30, 2019 at 05:45:58PM -0300, James Almer wrote: > From 7.4.3.3.1: > > num_tile_columns_minus1 shall be in the range of 0 to PicWidthInCtbsY - 1, > inclusive. > num_tile_rows_minus1 shall be in the range of 0 to PicHeightInCtbsY - 1, > inclusive. > > Signed-off-by: James Almer > --

Re: [FFmpeg-devel] [PATCH] avcodec/hevc_ps: fix valid range of num_tile_{columns, rows}_minus1

2019-07-04 Thread James Almer
On 6/30/2019 5:45 PM, James Almer wrote: > From 7.4.3.3.1: > > num_tile_columns_minus1 shall be in the range of 0 to PicWidthInCtbsY - 1, > inclusive. > num_tile_rows_minus1 shall be in the range of 0 to PicHeightInCtbsY - 1, > inclusive. > > Signed-off-by: James Almer > --- > Sorry for not no

[FFmpeg-devel] [PATCH] avcodec/hevc_ps: fix valid range of num_tile_{columns, rows}_minus1

2019-06-30 Thread James Almer
From 7.4.3.3.1: num_tile_columns_minus1 shall be in the range of 0 to PicWidthInCtbsY - 1, inclusive. num_tile_rows_minus1 shall be in the range of 0 to PicHeightInCtbsY - 1, inclusive. Signed-off-by: James Almer --- Sorry for not noticing it when reviewing c692051252 and 3b2082c663. libavco