[FFmpeg-devel] JPEG2000 Decoder/Encoder Enhancements

2020-03-22 Thread Gautam Ramakrishnan
Hi, I saw the list of unmentored projects for GSoC and enhancements to the JPEG2000 decoder and encoder were there. I am finding it very difficult to make a proposal as the specifications are not available for free. However, I am willing to work on improving the JPEG2000 features even if it is not

Re: [FFmpeg-devel] JPEG2000 Decoder/Encoder Enhancements

2020-03-23 Thread Gautam Ramakrishnan
. Would that be a good way to start? On Mon, Mar 23, 2020 at 10:33 PM Michael Niedermayer wrote: > > On Sun, Mar 22, 2020 at 06:58:24PM +0100, Carl Eugen Hoyos wrote: > > Am So., 22. März 2020 um 18:27 Uhr schrieb Gautam Ramakrishnan > > : > > > > > I saw the list of

Re: [FFmpeg-devel] [PATCH] avcodec/jpeg2000dec: error check when processing tlm marker

2020-03-24 Thread Gautam Ramakrishnan
t; > From: Gautam Ramakrishnan > > > > Validate the value of ST field in the TLM marker of JPEG2000. > > Throw an error when ST takes value of 0x11. > > --- > > libavcodec/jpeg2000dec.c | 6 +- > > 1 file changed, 5 insertions(+), 1 deletion(-) > >

Re: [FFmpeg-devel] [PATCH] avcodec/jpeg2000dec Support for PPT marker

2020-03-27 Thread Gautam Ramakrishnan
Am Fr., 27. März 2020 um 15:29 Uhr schrieb Carl Eugen Hoyos > : > > > > Am Fr., 27. März 2020 um 14:47 Uhr schrieb : > > > > > > From: Gautam Ramakrishnan > > > > > > This patch adds support for the JPEG2000 PPT marker. This patch hence, > >

Re: [FFmpeg-devel] [PATCH] avcodec/jpeg2000dec Support for PPT marker

2020-03-27 Thread Gautam Ramakrishnan
On Fri, Mar 27, 2020 at 8:30 PM Carl Eugen Hoyos wrote: > > Am Fr., 27. März 2020 um 15:58 Uhr schrieb Gautam Ramakrishnan > : > > > I was a bit apprehensive about removing the jpeg2000_decode_packet() > > function. I had basically split that function into 2 separate on

Re: [FFmpeg-devel] [PATCH v2 1/2] libavcodec/jpeg2000dec.c: Add functions and modify structs for PPT marker support

2020-03-27 Thread Gautam Ramakrishnan
On Fri, Mar 27, 2020 at 10:59 PM Carl Eugen Hoyos wrote: > > Am Fr., 27. März 2020 um 17:21 Uhr schrieb : > > > > From: Gautam Ramakrishnan > > > > This patch modifies the Jpeg2000Tile struct and breaks the > > jpeg2000_decode_packet() function into two

Re: [FFmpeg-devel] [PATCH v2 1/2] libavcodec/jpeg2000dec.c: Add functions and modify structs for PPT marker support

2020-03-27 Thread Gautam Ramakrishnan
On Fri, Mar 27, 2020 at 11:27 PM Carl Eugen Hoyos wrote: > > Am Fr., 27. März 2020 um 18:48 Uhr schrieb Gautam Ramakrishnan > : > > > > On Fri, Mar 27, 2020 at 10:59 PM Carl Eugen Hoyos > > wrote: > > > > > > Am Fr., 27. März 2020 um 17:21 Uhr schrie

Re: [FFmpeg-devel] [PATCH v2 1/2] libavcodec/jpeg2000dec.c: Add functions and modify structs for PPT marker support

2020-03-27 Thread Gautam Ramakrishnan
On Sat, Mar 28, 2020 at 12:45 AM Carl Eugen Hoyos wrote: > > Am Fr., 27. März 2020 um 19:24 Uhr schrieb Gautam Ramakrishnan > : > > > > > > Did you already look at the sample file I pointed out? > > > > Yep, am going through the sample file. I shall try to s

Re: [FFmpeg-devel] [PATCH v2 1/2] libavcodec/jpeg2000dec.c: Add functions and modify structs for PPT marker support

2020-03-27 Thread Gautam Ramakrishnan
On Sat, Mar 28, 2020 at 1:52 AM Carl Eugen Hoyos wrote: > > Am Fr., 27. März 2020 um 20:57 Uhr schrieb Gautam Ramakrishnan > : > > > > On Sat, Mar 28, 2020 at 12:45 AM Carl Eugen Hoyos > > wrote: > > > > > > Am Fr., 27. März

Re: [FFmpeg-devel] [PATCH v2 1/2] libavcodec/jpeg2000dec.c: Add functions and modify structs for PPT marker support

2020-03-27 Thread Gautam Ramakrishnan
On Sat, Mar 28, 2020 at 1:59 AM Gautam Ramakrishnan wrote: > > On Sat, Mar 28, 2020 at 1:52 AM Carl Eugen Hoyos wrote: > > > > Am Fr., 27. März 2020 um 20:57 Uhr schrieb Gautam Ramakrishnan > > : > > > > > > On Sat, Mar 28, 2020 at 12:45 AM Carl Eugen

Re: [FFmpeg-devel] [PATCH v3 3/3] libavcodec/jpeb2000dec.c: Handle non EOC streams

2020-03-27 Thread Gautam Ramakrishnan
On Sat, Mar 28, 2020 at 9:49 AM wrote: > > From: Gautam Ramakrishnan > > This patch allows decoding of j2k streams which do > not have an EOC marker. OpenJPEG implements a similar > check. > --- > libavcodec/jpeg2000dec.c | 5 +++-- > 1 file changed, 3 insertions(

Re: [FFmpeg-devel] [PATCH v3 3/3] libavcodec/jpeb2000dec.c: Handle non EOC streams

2020-03-27 Thread Gautam Ramakrishnan
On Sat, Mar 28, 2020 at 9:59 AM Steven Liu wrote: > > > > > 2020年3月28日 下午12:24,Gautam Ramakrishnan 写道: > > > > On Sat, Mar 28, 2020 at 9:49 AM wrote: > should the title be jpeg2000dec?, it maybe is a typo if I don’t misunderstand. You are right, it is

Re: [FFmpeg-devel] [PATCH v3 3/3] libavcodec/jpeb2000dec.c: Handle non EOC streams

2020-03-28 Thread Gautam Ramakrishnan
On Sat, Mar 28, 2020 at 3:54 PM Carl Eugen Hoyos wrote: > > Am Sa., 28. März 2020 um 05:19 Uhr schrieb : > > > > From: Gautam Ramakrishnan > > > > This patch allows decoding of j2k streams which do > > not have an EOC marker. OpenJPEG implements a simila

Re: [FFmpeg-devel] [PATCH v3 3/3] libavcodec/jpeb2000dec.c: Handle non EOC streams

2020-03-28 Thread Gautam Ramakrishnan
On Sat, Mar 28, 2020 at 4:59 PM Carl Eugen Hoyos wrote: > > Am Sa., 28. März 2020 um 12:13 Uhr schrieb Gautam Ramakrishnan > : > > > > On Sat, Mar 28, 2020 at 3:54 PM Carl Eugen Hoyos wrote: > > > > > > Am Sa., 28. März 2020 um 05:19 Uhr schrieb : &g

Re: [FFmpeg-devel] [PATCH v4 2/2] libavcodec/jpeg2000dec.c: Handle non EOC streams

2020-03-28 Thread Gautam Ramakrishnan
On Sat, Mar 28, 2020 at 6:22 PM Carl Eugen Hoyos wrote: > > Am Sa., 28. März 2020 um 13:28 Uhr schrieb : > > > > From: Gautam Ramakrishnan > > > > This patch allows decoding of j2k streams which do > > not have an EOC marker. OpenJPEG implements a simila

[FFmpeg-devel] Query regarding codec parsers

2020-03-29 Thread Gautam Ramakrishnan
Hello, I had gone through ticket #7445 and it mentions about JPEG2000 parser. What exactly does a parser do and how is it different from a decoder? I am unable to understand the exact use case of a parser. -- - Gautam | ___ ffmpeg-devel mai

Re: [FFmpeg-devel] Query regarding codec parsers

2020-03-29 Thread Gautam Ramakrishnan
On Sun, Mar 29, 2020 at 6:12 PM Carl Eugen Hoyos wrote: > > Am So., 29. März 2020 um 14:23 Uhr schrieb Gautam Ramakrishnan > : > > > I had gone through ticket #7445 > > Better tickets are imo: > https://trac.ffmpeg.org/ticket/4669 > https://trac.ffmpeg.or

Re: [FFmpeg-devel] [PATCH v6 1/2] libavcodec/jpeg2000dec.c: Add functions and modify structs for PPT marker support

2020-03-29 Thread Gautam Ramakrishnan
On Mon, Mar 30, 2020 at 6:31 AM Michael Niedermayer wrote: > > On Sat, Mar 28, 2020 at 09:16:40PM +0530, gautamr...@gmail.com wrote: > > From: Gautam Ramakrishnan > > > > This patch adds support for the PPT marker. It breaks down the > > jpeg2000_decode_packet()

Re: [FFmpeg-devel] [PATCH v7 3/3] libavcodec/jpeg2000dec.c: Handle non EOC streams

2020-03-30 Thread Gautam Ramakrishnan
On Mon, Mar 30, 2020 at 7:44 PM Moritz Barsnick wrote: > > On Mon, Mar 30, 2020 at 10:36:32 +0530, gautamr...@gmail.com wrote: > > +av_log(s->avctx, AV_LOG_WARNING, "Mising EOC Marker.\n"); > > Typo: Missing > > Moritz > ___ > ffmpeg-devel ma

Re: [FFmpeg-devel] [PATCH v8 1/3] libavcodec/jpeg2000dec.c: Split function and modify structs for PPM marker support

2020-03-30 Thread Gautam Ramakrishnan
On Tue, Mar 31, 2020 at 6:10 AM Michael Niedermayer wrote: > > On Mon, Mar 30, 2020 at 09:51:53PM +0530, gautamr...@gmail.com wrote: > > From: Gautam Ramakrishnan > > > > --- > > libavcodec/jpeg2000dec.c | 48 ++-- > >

Re: [FFmpeg-devel] [PATCH v9 2/3] libavcodec/jpeg2000dec.c: Add support for PPT marker

2020-03-31 Thread Gautam Ramakrishnan
On Wed, Apr 1, 2020 at 6:17 AM Michael Niedermayer wrote: > > On Tue, Mar 31, 2020 at 05:32:41PM +0530, gautamr...@gmail.com wrote: > > From: Gautam Ramakrishnan > > > > This patch adds functional changes to support the > > PPT marker. > > --

Re: [FFmpeg-devel] [PATCH v9 2/3] libavcodec/jpeg2000dec.c: Add support for PPT marker

2020-04-01 Thread Gautam Ramakrishnan
On Thu, Apr 2, 2020 at 12:58 AM Michael Niedermayer wrote: > > On Wed, Apr 01, 2020 at 08:01:48AM +0530, Gautam Ramakrishnan wrote: > > On Wed, Apr 1, 2020 at 6:17 AM Michael Niedermayer > > wrote: > > > > > > On Tue, Mar 31, 2020 at 05:32:41PM +0530, gaut

Re: [FFmpeg-devel] [PATCH v12] libavcodec/jpeg2000dec.c: Add support for PPT marker

2020-04-05 Thread Gautam Ramakrishnan
On Sun, Apr 5, 2020 at 3:13 PM Moritz Barsnick wrote: > > On Sun, Apr 05, 2020 at 10:28:17 +0530, gautamr...@gmail.com wrote: > > +tile->has_ppt = 1; // this tile has a ppt marker > > +/*Zppt = */ bytestream2_get_byte(&s->g); // Zppt is skipped and not > > used > > I don't know what othe

Re: [FFmpeg-devel] [PATCH v13] libavcodec/jpeg2000dec.c: Add support for PPT marker

2020-04-05 Thread Gautam Ramakrishnan
On Mon, Apr 6, 2020 at 1:16 AM Michael Niedermayer wrote: > > On Sun, Apr 05, 2020 at 04:13:28PM +0530, gautamr...@gmail.com wrote: > > From: Gautam Ramakrishnan > > > > This patch adds functional changes to support the > > PPT marker. This patch fixes bug ticket

Re: [FFmpeg-devel] [PATCH v13] libavcodec/jpeg2000dec.c: Add support for PPT marker

2020-04-06 Thread Gautam Ramakrishnan
On Mon, Apr 6, 2020 at 5:41 PM Michael Niedermayer wrote: > > On Mon, Apr 06, 2020 at 09:23:26AM +0530, Gautam Ramakrishnan wrote: > > On Mon, Apr 6, 2020 at 1:16 AM Michael Niedermayer > > wrote: > > > > > > On Sun, Apr 05, 2020 at 04:13:28PM +0530, gaut

Re: [FFmpeg-devel] [PATCH] libavcodec/jpeg2000dec.c: Fix cblk decode error check

2020-04-10 Thread Gautam Ramakrishnan
On Wed, Apr 1, 2020 at 5:48 PM Paul B Mahol wrote: > > LGTM > > On 4/1/20, gautamr...@gmail.com wrote: > > From: Gautam Ramakrishnan > > > > bpno becoming negative is not an error. This check has > > been verified with openjpeg, where the loop ends safely >

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 > > CO

Re: [FFmpeg-devel] Query regarding codec parsers

2020-04-13 Thread Gautam Ramakrishnan
On Sun, Mar 29, 2020 at 8:34 PM Carl Eugen Hoyos wrote: > > Am So., 29. März 2020 um 16:45 Uhr schrieb Gautam Ramakrishnan > : > > > > > What exactly does a parser do and how is it different from a decoder? > > > > I am unable to understand the exact use c

Re: [FFmpeg-devel] Query regarding codec parsers

2020-04-16 Thread Gautam Ramakrishnan
On Mon, Apr 13, 2020 at 11:00 PM Carl Eugen Hoyos wrote: > > Am Mo., 13. Apr. 2020 um 17:27 Uhr schrieb Gautam Ramakrishnan > : > > > > On Sun, Mar 29, 2020 at 8:34 PM Carl Eugen Hoyos wrote: > > > > > > Am So., 29. März 2020 u

Re: [FFmpeg-devel] Query regarding codec parsers

2020-04-16 Thread Gautam Ramakrishnan
On Fri, Apr 17, 2020 at 3:28 AM Carl Eugen Hoyos wrote: > > Am Do., 16. Apr. 2020 um 12:24 Uhr schrieb Gautam Ramakrishnan > : > > > > On Mon, Apr 13, 2020 at 11:00 PM Carl Eugen Hoyos > > wrote: > > > > > > Am Mo., 13. Apr.

Re: [FFmpeg-devel] [RFC PATCH] libavcodec/jpeg2000_parser: Add jpeg2000 parser

2020-04-19 Thread Gautam Ramakrishnan
On Sun, Apr 19, 2020 at 8:20 AM Carl Eugen Hoyos wrote: > > Am Sa., 18. Apr. 2020 um 21:54 Uhr schrieb : > > > > From: Gautam Ramakrishnan > > > > I have attempted to write a JPEG2000 Parser. > > Does it work both for format j2k and jp2 as written > by FFmp

Re: [FFmpeg-devel] [RFC PATCH] libavcodec/jpeg2000_parser: Add jpeg2000 parser

2020-04-19 Thread Gautam Ramakrishnan
On Sun, Apr 19, 2020 at 3:17 PM Michael Niedermayer wrote: > > On Sun, Apr 19, 2020 at 01:00:02AM +0530, gautamr...@gmail.com wrote: > > From: Gautam Ramakrishnan > > > > I have attempted to write a JPEG2000 Parser. Need > > help on testing the code and some tips on

Re: [FFmpeg-devel] [RFC PATCH v2] libavcodec/jpeg2000_parser: Add jpeg2000 parser

2020-04-20 Thread Gautam Ramakrishnan
On Mon, Apr 20, 2020 at 3:38 PM Michael Niedermayer wrote: > > On Mon, Apr 20, 2020 at 01:36:47AM +0530, gautamr...@gmail.com wrote: > > From: Gautam Ramakrishnan > > > > I have attempted to write a JPEG2000 Parser. Need > > help on testing the code and some tips on

Re: [FFmpeg-devel] [RFC PATCH v2] libavcodec/jpeg2000_parser: Add jpeg2000 parser

2020-04-20 Thread Gautam Ramakrishnan
On Mon, Apr 20, 2020 at 4:18 PM Kieran O Leary wrote: > > Hi, > > Forgive my ignorance ,but what is the difference between a parser and a > decoder in this context? What does this parser add that wasn't covered in > the decoder? > Quoting Carl from a previous thread: Try the following: $ cat 1.jpg

Re: [FFmpeg-devel] [PATCH 1/2] libavcodec/jpeg2000dec.c: Support for CRG marker

2020-04-20 Thread Gautam Ramakrishnan
On Tue, Apr 21, 2020 at 1:12 AM Carl Eugen Hoyos wrote: > > Am Mo., 20. Apr. 2020 um 21:38 Uhr schrieb : > > > > From: Gautam Ramakrishnan > > > > This patch adds support for CRG marker. Allows > > samples such as p0_03.j2k to be decoded. > > The patc

Re: [FFmpeg-devel] [PATCH 2/2] libavcodec/jpeg2000dec.c: ROI marker support

2020-04-21 Thread Gautam Ramakrishnan
On Wed, Apr 22, 2020 at 3:04 AM Michael Niedermayer wrote: > > On Tue, Apr 21, 2020 at 01:07:39AM +0530, gautamr...@gmail.com wrote: > > From: Gautam Ramakrishnan > > > > This patch adds support for decoding images > > with a Region of Interest. Allows decoding

Re: [FFmpeg-devel] [PATCH 1/2] avcodec/jpeg2000dec: Free packed_headers

2020-05-16 Thread Gautam Ramakrishnan
On Thu, May 14, 2020 at 2:19 AM Michael Niedermayer wrote: > > Fixes: memleak > Fixes: > 21784/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_JPEG2000_fuzzer-565256551058636 > > Found-by: continuous fuzzing process > https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg > Signed-off-

Re: [FFmpeg-devel] [RFC PATCH v2] libavcodec/jpeg2000_parser: Add jpeg2000 parser

2020-05-20 Thread Gautam Ramakrishnan
On Tue, Apr 21, 2020 at 3:41 AM Michael Niedermayer wrote: > > On Mon, Apr 20, 2020 at 04:13:44PM +0530, Gautam Ramakrishnan wrote: > > On Mon, Apr 20, 2020 at 3:38 PM Michael Niedermayer > > wrote: > > > > > > On Mon, Apr 20, 2020 at 01:36:47AM +0530, gaut

Re: [FFmpeg-devel] [RFC PATCH v2] libavcodec/jpeg2000_parser: Add jpeg2000 parser

2020-05-21 Thread Gautam Ramakrishnan
On Thu, May 21, 2020 at 1:51 AM Michael Niedermayer wrote: > > On Wed, May 20, 2020 at 08:48:41PM +0530, Gautam Ramakrishnan wrote: > > On Tue, Apr 21, 2020 at 3:41 AM Michael Niedermayer > > wrote: > > > > > > On Mon, Apr 20, 2020 at 04:13:44PM +0530, Gauta

Re: [FFmpeg-devel] [RFC PATCH v2] libavcodec/jpeg2000_parser: Add jpeg2000 parser

2020-05-23 Thread Gautam Ramakrishnan
On Sat, May 23, 2020 at 1:08 AM Michael Niedermayer wrote: > > On Thu, May 21, 2020 at 09:42:18PM +0200, Carl Eugen Hoyos wrote: > > Am Mi., 20. Mai 2020 um 22:21 Uhr schrieb Michael Niedermayer > > : > > > > > > On Wed, May 20, 2020 at 08:48:41PM +0530, Gauta

Re: [FFmpeg-devel] [RFC PATCH] libavcodec/jpeg2000_parser: Add jpeg2000 parser

2020-05-29 Thread Gautam Ramakrishnan
On Fri, May 29, 2020 at 5:01 AM Michael Niedermayer wrote: > > On Fri, May 29, 2020 at 12:33:01AM +0530, gautamr...@gmail.com wrote: > > From: Gautam Ramakrishnan > > > > I have attempted to write a JPEG2000 Parser. Have tested > > by generating a file containing

Re: [FFmpeg-devel] [RFC PATCH] libavcodec/jpeg2000_parser: Add jpeg2000 parser

2020-05-29 Thread Gautam Ramakrishnan
On Fri, May 29, 2020 at 5:01 AM Michael Niedermayer wrote: > > On Fri, May 29, 2020 at 12:33:01AM +0530, gautamr...@gmail.com wrote: > > From: Gautam Ramakrishnan > > > > I have attempted to write a JPEG2000 Parser. Have tested > > by generating a file containing

Re: [FFmpeg-devel] [PATCH 1/4] avcodec/jpeg2000dec: clear pointer which become stale in get_ppt()

2020-05-31 Thread Gautam Ramakrishnan
On Sun, May 31, 2020 at 7:21 PM Michael Niedermayer wrote: > > Fixes: use after free > Fixes: > 22484/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_JPEG2000_fuzzer-5671488765296640 > > Found-by: continuous fuzzing process > https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg > Sig

Re: [FFmpeg-devel] [PATCH 1/4] avcodec/jpeg2000dec: clear pointer which become stale in get_ppt()

2020-05-31 Thread Gautam Ramakrishnan
On Sun, May 31, 2020 at 10:12 PM Michael Niedermayer wrote: > > On Sun, May 31, 2020 at 09:22:46PM +0530, Gautam Ramakrishnan wrote: > > On Sun, May 31, 2020 at 7:21 PM Michael Niedermayer > > wrote: > > > > > > Fixes: use after free > > > Fixes

Re: [FFmpeg-devel] [PATCH 1/4] avcodec/jpeg2000dec: clear pointer which become stale in get_ppt()

2020-05-31 Thread Gautam Ramakrishnan
On Sun, May 31, 2020 at 7:21 PM Michael Niedermayer wrote: > > Fixes: use after free > Fixes: > 22484/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_JPEG2000_fuzzer-5671488765296640 > > Found-by: continuous fuzzing process > https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg > Sig

Re: [FFmpeg-devel] [RFC PATCH] libavcodec/jpeg2000_parser: Add jpeg2000 parser

2020-06-01 Thread Gautam Ramakrishnan
On Fri, May 29, 2020 at 11:54 PM Michael Niedermayer wrote: > > On Fri, May 29, 2020 at 11:23:20PM +0530, Gautam Ramakrishnan wrote: > > On Fri, May 29, 2020 at 5:01 AM Michael Niedermayer > > wrote: > > > > > > On Fri, May 29, 2020 at 12:33:01AM +0530, gaut

Re: [FFmpeg-devel] [RFC PATCH] libavcodec/jpeg2000_parser: Add jpeg2000 parser

2020-06-02 Thread Gautam Ramakrishnan
On Tue, Jun 2, 2020 at 1:55 AM Carl Eugen Hoyos wrote: > > Am Mo., 1. Juni 2020 um 21:26 Uhr schrieb Gautam Ramakrishnan > : > > > > > > can you add some test to fate for this ? > > > > > (doesnt need to be related to the tests you did, but can of course

Re: [FFmpeg-devel] [RFC PATCH] libavcodec/jpeg2000_parser: Add jpeg2000 parser

2020-06-03 Thread Gautam Ramakrishnan
On Wed, Jun 3, 2020 at 3:27 AM Michael Niedermayer wrote: > > On Wed, Jun 03, 2020 at 12:49:10AM +0530, Gautam Ramakrishnan wrote: > > On Tue, Jun 2, 2020 at 1:55 AM Carl Eugen Hoyos wrote: > > > > > > Am Mo., 1. Juni 2020 um 21:26 Uhr schrieb Gautam Ramakrishnan &

Re: [FFmpeg-devel] [RFC PATCH 1/2] libavcodec/jpeg2000_parser: Add jpeg2000 parser

2020-06-04 Thread Gautam Ramakrishnan
On Fri, Jun 5, 2020 at 3:21 AM Michael Niedermayer wrote: > > On Thu, Jun 04, 2020 at 01:24:42PM +0530, gautamr...@gmail.com wrote: > > From: Gautam Ramakrishnan > > > > I have attempted to write a JPEG2000 Parser. Have tested > > by generating a file containing

Re: [FFmpeg-devel] [RFC PATCH 1/2] libavcodec/jpeg2000_parser: Add jpeg2000 parser

2020-06-05 Thread Gautam Ramakrishnan
On Fri, Jun 5, 2020 at 8:23 AM Gautam Ramakrishnan wrote: > > On Fri, Jun 5, 2020 at 3:21 AM Michael Niedermayer > wrote: > > > > On Thu, Jun 04, 2020 at 01:24:42PM +0530, gautamr...@gmail.com wrote: > > > From: Gautam Ramakrishnan > > > > > > I

[FFmpeg-devel] Error while using libopenjpeg

2020-06-07 Thread Gautam Ramakrishnan
Hi, I am trying to decode the p1_03.j2k reference file. However, while trying to use libopenjpeg instead of the native decoder, I get the following error, [libopenjpeg @ 0x55f249d7e180] Unable to determine pixel format. The exact command run was: ffmpeg -vcodec libopenjpeg -i p1_03.j2k -f framec

Re: [FFmpeg-devel] Error while using libopenjpeg

2020-06-07 Thread Gautam Ramakrishnan
On Mon, Jun 8, 2020 at 1:25 AM Michael Niedermayer wrote: > > On Sun, Jun 07, 2020 at 10:36:38PM +0530, Gautam Ramakrishnan wrote: > > Hi, > > > > I am trying to decode the p1_03.j2k reference file. However, while > > trying to use libopenjpeg instead of

Re: [FFmpeg-devel] Error while using libopenjpeg

2020-06-09 Thread Gautam Ramakrishnan
On Mon, Jun 8, 2020 at 1:25 AM Michael Niedermayer wrote: > > On Sun, Jun 07, 2020 at 10:36:38PM +0530, Gautam Ramakrishnan wrote: > > Hi, > > > > I am trying to decode the p1_03.j2k reference file. However, while > > trying to use libopenjpeg instead of

Re: [FFmpeg-devel] [RFC PATCH] libavcodec/libopenjpeg: pix fmt selection change

2020-06-09 Thread Gautam Ramakrishnan
On Tue, Jun 9, 2020 at 10:24 PM Carl Eugen Hoyos wrote: > > Am Di., 9. Juni 2020 um 14:07 Uhr schrieb : > > > > From: Gautam Ramakrishnan > > > > This patch makes selection of pix_fmt similar to > > that in the native decoder. This makes samples such > &g

Re: [FFmpeg-devel] [RFC PATCH] libavcodec/libopenjpeg: pix fmt selection change

2020-06-10 Thread Gautam Ramakrishnan
On Tue, Jun 9, 2020 at 11:55 PM Carl Eugen Hoyos wrote: > > Am Di., 9. Juni 2020 um 19:12 Uhr schrieb Gautam Ramakrishnan > : > > > > On Tue, Jun 9, 2020 at 10:24 PM Carl Eugen Hoyos wrote: > > > > > > Am Di., 9. Juni 2020 um 14:07 Uhr schrieb : &g

Re: [FFmpeg-devel] [RFC PATCH] libavcodec/libopenjpeg: pix fmt selection change

2020-06-11 Thread Gautam Ramakrishnan
On Thu, Jun 11, 2020 at 11:42 AM Michael Bradshaw wrote: > > On Wed, Jun 10, 2020 at 9:35 PM Gautam Ramakrishnan > wrote: > > > The reference file has 4 components, Whereas all the Bayer formats > > have 3 components. Are we missing any Bayer pixel format in ffmpeg? >

Re: [FFmpeg-devel] [RFC PATCH] libavcodec/libopenjpeg: pix fmt selection change

2020-06-12 Thread Gautam Ramakrishnan
On Thu, Jun 11, 2020 at 9:41 PM Michael Bradshaw wrote: > > On Thu, Jun 11, 2020 at 9:42 AM Gautam Ramakrishnan > wrote: > > > Got it. In that case we can safely ignore the patch to fix libopenjpeg. > > However, p1_03.j2k is one of the 2 files to have ppm marker. How coul

[FFmpeg-devel] query on pixel formats

2020-06-17 Thread Gautam Ramakrishnan
Hi all, I am working on the JPEG2000 decoder. However I am having trouble understanding pixel formats correctly. For example, from my understanding, the reference file p1_01.j2k pixel format does not get recognized by the native decoder. When I force a gray8 format on it, I am able to get output s

Re: [FFmpeg-devel] [RFC PATCH] libavcodec/jpeg2000: Make corrections jpeg2000 decoder

2020-06-18 Thread Gautam Ramakrishnan
On Fri, Jun 19, 2020 at 1:34 AM Carl Eugen Hoyos wrote: > > Am Do., 18. Juni 2020 um 21:50 Uhr schrieb : > > > > From: Gautam Ramakrishnan > > > > This is with reference to my previous email on the mailing list > > with subject: "query on pixel formats&q

Re: [FFmpeg-devel] [RFC PATCH] libavcodec/jpeg2000: Make corrections jpeg2000 decoder

2020-06-19 Thread Gautam Ramakrishnan
On Sat, Jun 20, 2020 at 1:29 AM Michael Niedermayer wrote: > > On Thu, Jun 18, 2020 at 11:55:20PM +0530, gautamr...@gmail.com wrote: > > From: Gautam Ramakrishnan > > > > This is with reference to my previous email on the mailing list > > with subject: "que

Re: [FFmpeg-devel] query on pixel formats

2020-06-20 Thread Gautam Ramakrishnan
On Thu, Jun 18, 2020 at 3:06 AM Carl Eugen Hoyos wrote: > > Am Mi., 17. Juni 2020 um 23:30 Uhr schrieb Carl Eugen Hoyos > : > > > (A wild guess is that gray8 has to be added to RGB_PIXEL_FORMATS) > > If this is the issue, GRAY_PIXEL_FORMATS have to be added to > yuv_pix_fmts[] > > Carl Eugen > ___

Re: [FFmpeg-devel] [RFC PATCH] libavcodec/jpeg2000: Make corrections jpeg2000 decoder

2020-06-21 Thread Gautam Ramakrishnan
On Sat, Jun 20, 2020 at 9:48 AM Gautam Ramakrishnan wrote: > > On Sat, Jun 20, 2020 at 1:29 AM Michael Niedermayer > wrote: > > > > On Thu, Jun 18, 2020 at 11:55:20PM +0530, gautamr...@gmail.com wrote: > > > From: Gautam Ramakrishnan > > > > > >

Re: [FFmpeg-devel] [PATCH 5/5] libavcodec/jpeg2000dec.c: Remove log2_chroma check in pixel format selection

2020-06-21 Thread Gautam Ramakrishnan
On Mon, Jun 22, 2020 at 12:12 AM wrote: > > From: Gautam Ramakrishnan > > The log2_chroma_wh is derived from the sample separations of the > codestream if the file is a j2k codestream. Not sure if sample > separation is same is subsampling and whether using sample > separ

Re: [FFmpeg-devel] [PATCH 5/5] libavcodec/jpeg2000dec.c: Remove log2_chroma check in pixel format selection

2020-06-21 Thread Gautam Ramakrishnan
On Mon, Jun 22, 2020 at 1:54 AM Carl Eugen Hoyos wrote: > > Am So., 21. Juni 2020 um 21:11 Uhr schrieb : > > > > From: Gautam Ramakrishnan > > > > The log2_chroma_wh is derived from the sample separations of the > > codestream if the file is a j2k codestream.

[FFmpeg-devel] Support for dumping pgx for JPEG2000

2020-06-21 Thread Gautam Ramakrishnan
Hello, JPEG2000 uses .pgx format for conformance testing. Is it a good idea to allow the ffmpeg native decoder to have an option to dump .pgx files? This would help with testing additions to the code. -- - Gautam | ___ ffmpeg-devel mailing

Re: [FFmpeg-devel] Support for dumping pgx for JPEG2000

2020-06-22 Thread Gautam Ramakrishnan
On Mon, Jun 22, 2020 at 12:38 PM Carl Eugen Hoyos wrote: > > > > > Am 22.06.2020 um 07:32 schrieb Gautam Ramakrishnan : > > > > Hello, > > > > JPEG2000 uses .pgx format for conformance testing. Is it a good idea > > to allow the ffmpeg > > native

Re: [FFmpeg-devel] Support for dumping pgx for JPEG2000

2020-06-22 Thread Gautam Ramakrishnan
On Mon, Jun 22, 2020 at 8:07 PM Carl Eugen Hoyos wrote: > > > > > Am 22.06.2020 um 12:42 schrieb Moritz Barsnick : > > > >> On Mon, Jun 22, 2020 at 12:47:11 +0530, Gautam Ramakrishnan wrote: > >> On Mon, Jun 22, 2020 at 12:38 PM Carl Eugen Hoyos > >&

Re: [FFmpeg-devel] Support for dumping pgx for JPEG2000

2020-06-22 Thread Gautam Ramakrishnan
On Mon, Jun 22, 2020 at 11:30 PM Carl Eugen Hoyos wrote: > > Am Mo., 22. Juni 2020 um 19:40 Uhr schrieb Gautam Ramakrishnan > : > > > > On Mon, Jun 22, 2020 at 8:07 PM Carl Eugen Hoyos wrote: > > > > > > > > > > > > > Am 22.06.2020 um

Re: [FFmpeg-devel] Support for dumping pgx for JPEG2000

2020-06-22 Thread Gautam Ramakrishnan
On Mon, Jun 22, 2020 at 11:37 PM Gautam Ramakrishnan wrote: > > On Mon, Jun 22, 2020 at 11:30 PM Carl Eugen Hoyos wrote: > > > > Am Mo., 22. Juni 2020 um 19:40 Uhr schrieb Gautam Ramakrishnan > > : > > > > > > On Mon, Jun 22, 2020

Re: [FFmpeg-devel] [PATCH 3/5] libavcodec/jpeg2000dec.c Fixed WRITE_FRAME and tile co-ordinates:

2020-06-22 Thread Gautam Ramakrishnan
On Tue, Jun 23, 2020 at 2:48 AM Michael Niedermayer wrote: > > On Mon, Jun 22, 2020 at 12:12:06AM +0530, gautamr...@gmail.com wrote: > > From: Gautam Ramakrishnan > > > > libopenjpeg2000 uses ceiling division while dividing tile > > co-ordinates with the sample

Re: [FFmpeg-devel] [PATCH 5/5] libavcodec/jpeg2000dec.c: Remove log2_chroma check in pixel format selection

2020-06-22 Thread Gautam Ramakrishnan
On Tue, Jun 23, 2020 at 2:55 AM Carl Eugen Hoyos wrote: > > Am Mo., 22. Juni 2020 um 04:57 Uhr schrieb Gautam Ramakrishnan > : > > > > On Mon, Jun 22, 2020 at 1:54 AM Carl Eugen Hoyos wrote: > > > > > > Am So., 21. Juni 2020 um 21:11 Uhr schrieb : &g

Re: [FFmpeg-devel] [PATCH] libavcodec/pgx: Added pgx decoder

2020-06-24 Thread Gautam Ramakrishnan
On Wed, Jun 24, 2020 at 11:54 PM wrote: > > From: Gautam Ramakrishnan > > This patch support to read and decode > pgx files. > --- > libavcodec/Makefile | 1 + > libavcodec/allcodecs.c | 1 + > libavcodec/codec_id.h| 1 + > libavcodec/pgx.h

Re: [FFmpeg-devel] [PATCH] libavcodec/pgx: Added pgx decoder

2020-06-24 Thread Gautam Ramakrishnan
On Thu, Jun 25, 2020 at 12:43 AM Nicolas George wrote: > > Thanks for the patch. Here are a few preliminary remarks. > > gautamr...@gmail.com (12020-06-24): > > From: Gautam Ramakrishnan > > > > This patch support to read and decode > > pgx files. > &g

Re: [FFmpeg-devel] [PATCH] libavcodec/pgx: Added pgx decoder

2020-06-25 Thread Gautam Ramakrishnan
On Thu, Jun 25, 2020 at 12:50 AM Carl Eugen Hoyos wrote: > > Am Mi., 24. Juni 2020 um 20:55 Uhr schrieb : > > > > From: Gautam Ramakrishnan > > > > This patch support to read and decode > > pgx files. > > --- > > libavcodec/Makefile

Re: [FFmpeg-devel] [PATCH 5/5] libavcodec/jpeg2000dec.c: Remove log2_chroma check in pixel format selection

2020-06-25 Thread Gautam Ramakrishnan
On Tue, Jun 23, 2020 at 8:04 AM Gautam Ramakrishnan wrote: > > On Tue, Jun 23, 2020 at 2:55 AM Carl Eugen Hoyos wrote: > > > > Am Mo., 22. Juni 2020 um 04:57 Uhr schrieb Gautam Ramakrishnan > > : > > > > > > On Mon, Jun 22, 2020 at 1:54 AM Carl Eugen

Re: [FFmpeg-devel] [PATCH 5/5] libavcodec/jpeg2000dec.c: Remove log2_chroma check in pixel format selection

2020-06-25 Thread Gautam Ramakrishnan
On Fri, Jun 26, 2020 at 3:14 AM Michael Niedermayer wrote: > > On Fri, Jun 26, 2020 at 12:22:22AM +0530, Gautam Ramakrishnan wrote: > > On Tue, Jun 23, 2020 at 8:04 AM Gautam Ramakrishnan > > wrote: > > > > > > On Tue, Jun 23, 2020 at 2:55 AM Carl Eugen Hoyos

Re: [FFmpeg-devel] [PATCH] libavcodec/pgx: Added pgx decoder

2020-06-26 Thread Gautam Ramakrishnan
On Fri, Jun 26, 2020 at 3:50 AM Carl Eugen Hoyos wrote: > > Am Do., 25. Juni 2020 um 09:23 Uhr schrieb Gautam Ramakrishnan > : > > > > On Thu, Jun 25, 2020 at 12:50 AM Carl Eugen Hoyos > > wrote: > > > > > +for (i = 0; i < 6; i++) {

Re: [FFmpeg-devel] [RFC PATCH 1/2] libavcodec/pgxdec: Add PGX decoder

2020-06-26 Thread Gautam Ramakrishnan
On Sat, Jun 27, 2020 at 2:17 AM Carl Eugen Hoyos wrote: > > > > > Am 26.06.2020 um 21:37 schrieb gautamr...@gmail.com: > > > > +.long_name = NULL_IF_CONFIG_SMALL("AVFrame to AVPacket > > passthrough"), > > This seems wrong as long description for the “pgx (jpeg2000 test format)”. > Thanks

Re: [FFmpeg-devel] [RFC PATCH 1/2] libavcodec/pgxdec: Add PGX decoder

2020-06-26 Thread Gautam Ramakrishnan
On Sat, Jun 27, 2020 at 2:20 AM Gautam Ramakrishnan wrote: > > On Sat, Jun 27, 2020 at 2:17 AM Carl Eugen Hoyos wrote: > > > > > > > > > Am 26.06.2020 um 21:37 schrieb gautamr...@gmail.com: > > > > > > +.long_name = NULL_IF_C

Re: [FFmpeg-devel] [PATCH 5/5] libavcodec/jpeg2000dec.c: Remove log2_chroma check in pixel format selection

2020-06-26 Thread Gautam Ramakrishnan
On Sat, Jun 27, 2020 at 5:04 AM Michael Niedermayer wrote: > > On Mon, Jun 22, 2020 at 12:12:08AM +0530, gautamr...@gmail.com wrote: > > From: Gautam Ramakrishnan > > > > The log2_chroma_wh is derived from the sample separations of the > > codestream if the file is

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

Re: [FFmpeg-devel] [PATCH] libavcodec/pgx: Added pgx decoder

2020-06-27 Thread Gautam Ramakrishnan
On Sat, Jun 27, 2020 at 5:45 PM Nicolas George wrote: > > Gautam Ramakrishnan (12020-06-25): > > The type conversions confused me a bit. I will remove them. > > Please be sure you have the basics about C type promotions right. C will > automatically convert types whenever

Re: [FFmpeg-devel] [PATCH] libavcodec/pgx: Added pgx decoder

2020-06-27 Thread Gautam Ramakrishnan
On Sat, Jun 27, 2020 at 6:06 PM Nicolas George wrote: > > Gautam Ramakrishnan (12020-06-27): > > This will require me to remove the decode_header() function and add the > > logic directly into the decode_frame function. If that is fine, I shall > > remove > > PGX

Re: [FFmpeg-devel] [PATCH 1/2] libavcodec/pgxdec: Add PGX decoder

2020-06-27 Thread Gautam Ramakrishnan
On Sat, Jun 27, 2020 at 7:55 PM Michael Niedermayer wrote: > > On Sat, Jun 27, 2020 at 12:35:17PM +0530, gautamr...@gmail.com wrote: > > From: Gautam Ramakrishnan > > > > This patch adds a pgx decoder. > > --- > > Changelog | 1

Re: [FFmpeg-devel] [PATCH 1/2] libavcodec/pgxdec: Add PGX decoder

2020-06-27 Thread Gautam Ramakrishnan
On Sat, Jun 27, 2020 at 7:58 PM Nicolas George wrote: > > Michael Niedermayer (12020-06-27): > > this could overflow > > The original code had a test to limit the size of numbers to 9 digits, > guaranteeing no overflow. I wonder where it went. > I used 9 digits because I was using a fixed size str

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, gaut

Re: [FFmpeg-devel] [PATCH v2 1/2] libavcodec/pgxdec: Add PGX decoder

2020-06-28 Thread Gautam Ramakrishnan
On Sun, Jun 28, 2020 at 12:41 AM Carl Eugen Hoyos wrote: > > Am Sa., 27. Juni 2020 um 20:11 Uhr schrieb : > > > +static int ff_pgx_decode_header(AVCodecContext *avctx, PGXContext * s, > > +int *depth, int *width, int *height, > > +int

Re: [FFmpeg-devel] [PATCH v2 1/2] libavcodec/pgxdec: Add PGX decoder

2020-06-28 Thread Gautam Ramakrishnan
On Sun, Jun 28, 2020 at 4:21 PM Nicolas George wrote: > > Gautam Ramakrishnan (12020-06-28): > > I shall change this. I do not understand how the check can be > > removed. It is compulsory that a PGX file must have these bytes > > In case it was not clear, I think Carl

Re: [FFmpeg-devel] [PATCH v2 1/2] libavcodec/pgxdec: Add PGX decoder

2020-06-28 Thread Gautam Ramakrishnan
On Sun, Jun 28, 2020 at 6:09 PM Nicolas George wrote: > > Gautam Ramakrishnan (12020-06-28): > > This is what I do not understand. Suppose the file does not start > > with the bytes "PG ML ", how is that to be handled? > > The same way as if it did. > >

Re: [FFmpeg-devel] [PATCH v3 2/2] libavformat/img2dec: Added pgx demuxer

2020-06-28 Thread Gautam Ramakrishnan
On Sun, Jun 28, 2020 at 8:16 PM Carl Eugen Hoyos wrote: > > Am So., 28. Juni 2020 um 16:43 Uhr schrieb : > > > > From: Gautam Ramakrishnan > > > > This patch adds support to demux pgx file > > format. > > Has anything changed compared to earlier versi

Re: [FFmpeg-devel] [PATCH 1/2] libavcodec/pgxdec: Add PGX decoder

2020-06-29 Thread Gautam Ramakrishnan
On Mon, Jun 29, 2020 at 6:28 PM Nicolas George wrote: > > Gautam Ramakrishnan (12020-06-27): > > I used 9 digits because I was using a fixed size string to store the number > > and then used strol. Now as I removed the usage of strol, it wasnt > > necessary. > >

Re: [FFmpeg-devel] [PATCH v3 1/2] libavcodec/pgxdec: Add PGX decoder

2020-06-29 Thread Gautam Ramakrishnan
On Mon, Jun 29, 2020 at 2:14 AM Michael Niedermayer wrote: > > On Sun, Jun 28, 2020 at 08:13:28PM +0530, gautamr...@gmail.com wrote: > > From: Gautam Ramakrishnan > > > > This patch adds a pgx decoder. > > --- > > Changelog | 1

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, Gauta

Re: [FFmpeg-devel] [PATCH v4 2/2] libavformat/img2dec: Added pgx demuxer

2020-06-29 Thread Gautam Ramakrishnan
On Tue, Jun 30, 2020 at 12:28 AM Nicolas George wrote: > > gautamr...@gmail.com (12020-06-30): > > From: Gautam Ramakrishnan > > > > This patch adds support to demux pgx file > > format. > > --- > > libavformat/allformats.c | 1 + > > libavfo

Re: [FFmpeg-devel] [PATCH v4 1/2] libavcodec/pgxdec: Add PGX decoder

2020-06-29 Thread Gautam Ramakrishnan
On Tue, Jun 30, 2020 at 5:49 AM Michael Niedermayer wrote: > > On Tue, Jun 30, 2020 at 12:26:17AM +0530, gautamr...@gmail.com wrote: > > From: Gautam Ramakrishnan > > > > This patch adds a pgx decoder. > > --- > > Changelog | 1

[FFmpeg-devel] Unable to submit patches

2020-02-07 Thread Gautam Ramakrishnan
Hello, I wish to contribute to ffmpeg and though of submitting a small patch to fix a bug listed on the bug tracker. However, my patch submission does not reach the mailing list. I have checked all the instructions and use git format-path with git send-email. What should I do? -- - G

Re: [FFmpeg-devel] [FFmpeg][PATCH] libswscale/utils.c: Fix bug #8255

2020-02-10 Thread Gautam Ramakrishnan
On Mon, Feb 10, 2020 at 5:38 PM Anton Khirnov wrote: > > Commit message summaries like "fix bug [$whatever external identifier] > are evil and should not be accepted IMO. They provide zero useful > information to someone reading the mailing list subjects or git > shortlog. > > The commit message s

Re: [FFmpeg-devel] [PATCH] libavformat/utils.c: Fixed URL parsing

2020-02-12 Thread Gautam Ramakrishnan
On Thu, Feb 13, 2020 at 12:31 AM Marton Balint wrote: > > > > On Wed, 12 Feb 2020, gautamr...@gmail.com wrote: > > > From: Gautam Ramakrishnan > > > > This commit fixes bug #8466 wherein URLs with query string > > not preceeded by the '/' s

Re: [FFmpeg-devel] [PATCH v6 1/2] libavcodec/pgxdec: Add PGX decoder

2020-07-01 Thread Gautam Ramakrishnan
On Wed, Jul 1, 2020 at 6:10 PM Nicolas George wrote: > > gautamr...@gmail.com (12020-06-30): > > From: Gautam Ramakrishnan > > > > This patch adds a pgx decoder. > > --- > > Changelog | 1 + > > doc/general.texi| 2 + > >

Re: [FFmpeg-devel] [PATCH 1/2] libavcodec/jpeg2000dec: Enhance pix fmt selection

2020-07-01 Thread Gautam Ramakrishnan
On Thu, Jul 2, 2020 at 3:42 AM Carl Eugen Hoyos wrote: > > Am Mi., 1. Juli 2020 um 20:34 Uhr schrieb : > > > > From: Gautam Ramakrishnan > > > > This patch assigns default pix format values when > > a match does not take place. > > --- > > li

  1   2   >