Re: [FFmpeg-devel] [PATCH 1/5] libavcodec/jpeg2000.c: Precinct size check removed

2020-06-29 Thread Gautam Ramakrishnan
On Mon, Jun 29, 2020 at 12:26 AM Michael Niedermayer wrote: > > On Sat, Jun 27, 2020 at 09:14:26PM +0530, Gautam Ramakrishnan wrote: > > On Sat, Jun 27, 2020 at 7:36 PM Michael Niedermayer > > wrote: > > > > > > On Sat, Jun 27, 2020 at 04:49:49PM +0530, Gautam Ramakrishnan wrote: > > > > On Sat,

Re: [FFmpeg-devel] [PATCH 1/5] libavcodec/jpeg2000.c: Precinct size check removed

2020-06-28 Thread Michael Niedermayer
On Sat, Jun 27, 2020 at 09:14:26PM +0530, Gautam Ramakrishnan wrote: > On Sat, Jun 27, 2020 at 7:36 PM Michael Niedermayer > wrote: > > > > On Sat, Jun 27, 2020 at 04:49:49PM +0530, Gautam Ramakrishnan wrote: > > > On Sat, Jun 27, 2020 at 3:13 PM Michael Niedermayer > > > wrote: > > > > > > > > O

Re: [FFmpeg-devel] [PATCH 1/5] libavcodec/jpeg2000.c: Precinct size check removed

2020-06-27 Thread Gautam Ramakrishnan
On Sat, Jun 27, 2020 at 7:36 PM Michael Niedermayer wrote: > > On Sat, Jun 27, 2020 at 04:49:49PM +0530, Gautam Ramakrishnan wrote: > > On Sat, Jun 27, 2020 at 3:13 PM Michael Niedermayer > > wrote: > > > > > > On Mon, Jun 22, 2020 at 12:12:04AM +0530, gautamr...@gmail.com wrote: > > > > From: Ga

Re: [FFmpeg-devel] [PATCH 1/5] libavcodec/jpeg2000.c: Precinct size check removed

2020-06-27 Thread Michael Niedermayer
On Sat, Jun 27, 2020 at 04:49:49PM +0530, Gautam Ramakrishnan wrote: > On Sat, Jun 27, 2020 at 3:13 PM Michael Niedermayer > wrote: > > > > On Mon, Jun 22, 2020 at 12:12:04AM +0530, gautamr...@gmail.com wrote: > > > From: Gautam Ramakrishnan > > > > > > This patch removes a check which throws an

Re: [FFmpeg-devel] [PATCH 1/5] libavcodec/jpeg2000.c: Precinct size check removed

2020-06-27 Thread Gautam Ramakrishnan
On Sat, Jun 27, 2020 at 3:13 PM Michael Niedermayer wrote: > > On Mon, Jun 22, 2020 at 12:12:04AM +0530, gautamr...@gmail.com wrote: > > From: Gautam Ramakrishnan > > > > This patch removes a check which throws an error if > > the log2 precinct width/height is 0. The standard allows > > the first

Re: [FFmpeg-devel] [PATCH 1/5] libavcodec/jpeg2000.c: Precinct size check removed

2020-06-27 Thread Michael Niedermayer
On Mon, Jun 22, 2020 at 12:12:04AM +0530, gautamr...@gmail.com wrote: > From: Gautam Ramakrishnan > > This patch removes a check which throws an error if > the log2 precinct width/height is 0. The standard allows > the first component to have 0 as the log2 width/height. > --- > libavcodec/jpeg20

[FFmpeg-devel] [PATCH 1/5] libavcodec/jpeg2000.c: Precinct size check removed

2020-06-21 Thread gautamramk
From: Gautam Ramakrishnan This patch removes a check which throws an error if the log2 precinct width/height is 0. The standard allows the first component to have 0 as the log2 width/height. --- libavcodec/jpeg2000.c | 3 --- 1 file changed, 3 deletions(-) diff --git a/libavcodec/jpeg2000.c b/l