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 > > > : > > > > > > > > > > can

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

2020-06-02 Thread Michael Niedermayer
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 > > : > > > > > > > > can you add some test to fate for this ? > > > > > > (doesnt need to be related

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) > > > > > such a test would also make it

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

2020-06-01 Thread Carl Eugen Hoyos
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) > > > > such a test would also make it easy for others to test the code on > > > > less common hardware like

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, gautamr...@gmail.com wrote: > > > > From:

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

2020-05-29 Thread Michael Niedermayer
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, gautamr...@gmail.com wrote: > > > From: Gautam Ramakrishnan > > > > > > I have attempted to write a JPEG2000

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 14 frames, as mentioned > > by

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 14 frames, as mentioned > > by

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

2020-05-28 Thread Michael Niedermayer
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 14 frames, as mentioned > by Micheal. Have also tried testing with various packet > sizes by setting

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

2020-05-28 Thread gautamramk
From: Gautam Ramakrishnan I have attempted to write a JPEG2000 Parser. Have tested by generating a file containing 14 frames, as mentioned by Micheal. Have also tried testing with various packet sizes by setting -frame_size option. Need feedback on the code and on further testing. ---

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 how to > > document this

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 FFmpeg's encoder? > I have tried to make it

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

2020-04-19 Thread Michael Niedermayer
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 how to > document this code. The variable names are also > a bit hard to understand. Would

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

2020-04-18 Thread Carl Eugen Hoyos
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 FFmpeg's encoder? Carl Eugen ___ ffmpeg-devel mailing list

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

2020-04-18 Thread gautamramk
From: Gautam Ramakrishnan I have attempted to write a JPEG2000 Parser. Need help on testing the code and some tips on how to document this code. The variable names are also a bit hard to understand. Would appreciate some tips. The sample from #7445 seems to get decoded now. ---