Re: [FFmpeg-devel] [PATCH] libavcodec/jpeg2000dec.c: fix error in cod marker

2020-04-10 Thread Gautam Ramakrishnan
On Sat, Apr 11, 2020 at 2:25 AM Carl Eugen Hoyos wrote: > > Am Fr., 10. Apr. 2020 um 20:28 Uhr schrieb : > > > > From: Gautam Ramakrishnan > > > > This patch fixes an error where the COC marker > > overrides all data of the SPcod field of the > > COD marker. It must override only one bit of > > S

Re: [FFmpeg-devel] [PATCH] libavcodec/jpeg2000dec.c: fix error in cod marker

2020-04-10 Thread Carl Eugen Hoyos
Am Fr., 10. Apr. 2020 um 20:28 Uhr schrieb : > > From: Gautam Ramakrishnan > > This patch fixes an error where the COC marker > overrides all data of the SPcod field of the > COD marker. It must override only one bit of > SPcod field. This now allows p0_08.j2k to be > decoded correctly (mentioned

[FFmpeg-devel] [PATCH] libavcodec/jpeg2000dec.c: fix error in cod marker

2020-04-10 Thread gautamramk
From: Gautam Ramakrishnan This patch fixes an error where the COC marker overrides all data of the SPcod field of the COD marker. It must override only one bit of SPcod field. This now allows p0_08.j2k to be decoded correctly (mentioned in #4679). --- libavcodec/jpeg2000dec.c | 3 +++ 1 file cha