Looks good, for the other two, I may need to check with a problematic
sample I had to see if it works
Kind regards,
Caleb Etemesi
On Thu, 3 Aug 2023, 23:58 Pierre-Anthony Lemieux, wrote:
> On Thu, Aug 3, 2023 at 1:50 PM Tomas Härdin wrote:
> >
> > tor 2023-08-03 klockan 17
Ping on this?
On Wed, Jun 7, 2023 at 10:35 AM wrote:
> From: caleb
>
> ---
> libavcodec/jpeg2000htdec.c | 18 +-
> 1 file changed, 13 insertions(+), 5 deletions(-)
>
> diff --git a/libavcodec/jpeg2000htdec.c b/libavcodec/jpeg2000htdec.c
> index 51cd9
will send updated patch with changes in a few
On Tue, 6 Jun 2023, 19:20 James Almer, wrote:
> On 6/5/2023 3:04 PM, etemesica...@gmail.com wrote:
> > From: caleb
> >
> > ---
> > libavcodec/jpeg2000htdec.c | 10 +++---
> > 1 file changed, 7 insertions(+),
if the problem you are trying to solve is upsampling, the agreed samples
are usually 422,444 and 420 (Y,Cb,Cr order) but there can be files with
sampling factors like 242, since the jfif spec isn't to restrictive on what
sampling factors are allowed,libjpeg(and it's cousin libjpeg-turbo) support
s
Ping on this
On Fri, 6 Jan 2023, 18:46 Tomas Härdin, wrote:
> ons 2022-12-28 klockan 23:20 +0300 skrev etemesica...@gmail.com:
> > From: caleb
> >
> > ---
> > libavcodec/jpeg2000dec.c | 88 +---
> >
de this
> in jpeg2000dec.c. This would allow to make this function static and
> would avoid exposing the jpeg2000dec.c structures via a header.
Sounds like a good idea,
On Fri, Dec 16, 2022 at 3:29 AM Andreas Rheinhardt <
andreas.rheinha...@outlook.com> wrote:
> etemesica...@gma
Also thanks for reviewing
On Fri, Dec 2, 2022 at 10:34 PM Caleb Etemesi
wrote:
> Hi
>
> For bit-reading,
> 1. The spec has some chunks read from back to front,I didn't see that
> functionality present in get_bits.h(which I assumed contained the bit
> reading API).
Hi
For bit-reading,
1. The spec has some chunks read from back to front,I didn't see that
functionality present in get_bits.h(which I assumed contained the bit
reading API).
2. It doesn't handle unstuffing correctly.
3. Doesn't handle EOB correctly, the spec has some arrays when there are no
more
s
On Thu, Sep 22, 2022 at 12:15 PM Tomas Härdin wrote:
> tor 2022-09-22 klockan 07:07 +0300 skrev Caleb Etemesi:
> > There is one with way better performance on its way, especially with
> > images
> > with magnitude refinement passes.
> >
> > here @https://git
There is one with way better performance on its way, especially with images
with magnitude refinement passes.
here @https://github.com/etemesi254/FFmpeg/tree/my-profile
And the associated runtime profile from running
`perf record -g -F 999 ./ffmpeg_g -i ~/jpeg2000/meridian.ht.j2c -v 32
-bench
>> Please separate struct renaming into a separate patch
Will do in the next patch
>> Corresponds to µ_start, right?
Not sure what µ_start here relates to, but this is the zero bit plane
information in *B.10.5*
of the jpeg2000 spec (ITU Rec. T.800 (06/2019))
>> Could also be called Lcup and Lr
oughts?
For the circular reference, I forgot about inclusion guards, sorry about
that.
Regards,
Caleb
On Sat, Sep 10, 2022 at 12:34 AM Andreas Rheinhardt <
andreas.rheinha...@outlook.com> wrote:
> Caleb Etemesi:
> >> This is unneeded for the encoder
> >> may
On Fri, 9 Sept 2022, 19:52 Caleb Etemesi, wrote:
> Will address in the next iteration
>
> On Fri, 9 Sept 2022, 18:46 Michael Niedermayer,
> wrote:
>
>> On Thu, Sep 08, 2022 at 11:49:53PM +0300, etemesica...@gmail.com wrote:
>> > From: caleb
>
Will address in the next iteration
On Fri, 9 Sept 2022, 18:46 Michael Niedermayer,
wrote:
> On Thu, Sep 08, 2022 at 11:49:53PM +0300, etemesica...@gmail.com wrote:
> > From: caleb
> >
> > Rebased this patch on master branch
> > ---
> > libavcodec/Makefile
et, we skip over parsing the CAP segment.
+ */
+if (s->avctx->profile & JPEG2000_RSIZ_BIT) {
+if (s->in_tile_headers) {
+av_log(s->avctx, AV_LOG_ERROR, "CAP marker can only be in
main header");
+ return
Also apologies for a really late reply,
Still learning about mail threads
Kind regards.
Caleb
On Sun, 7 Aug 2022, 22:51 Michael Niedermayer,
wrote:
> On Sun, Aug 07, 2022 at 07:46:51PM +0300, Caleb Etemesi wrote:
> > caleb is fine.
>
> ok will apply
>
> thx
>
> [..
caleb is fine.
On Sat, May 7, 2022 at 11:35 AM Michael Niedermayer
wrote:
> Hi
>
> before applying this
>
> Author: caleb
>
> If you want your full name there please resend this with your full name
> so its in git with your full name. It cannot be
> changed la
---
libavcodec/jpeg2000.h| 2 ++
libavcodec/jpeg2000dec.c | 4
2 files changed, 6 insertions(+)
diff --git a/libavcodec/jpeg2000.h b/libavcodec/jpeg2000.h
index d06313425e..e5ecb4cbf9 100644
--- a/libavcodec/jpeg2000.h
+++ b/libavcodec/jpeg2000.h
@@ -110,6 +110,8 @@ enum Jpeg2000Quantsty
---
This patch adds support for detecting Part 15 codeblocks to JPEG2000 specified
in (Rec. ITU-T T.814 | ISO/IEC 15444-15).
The decoder on detecting Part 15 codeblocks now fails gracefully with a
AVERROR_PATCHWELCOME return code
libavcodec/jpeg2000.h| 2 ++
libavcodec/jpeg2000dec.c | 9 ++
From: Caleb Whiting
This allows more precise selection of windows.
---
libavdevice/gdigrab.c | 35 +--
1 file changed, 25 insertions(+), 10 deletions(-)
diff --git a/libavdevice/gdigrab.c b/libavdevice/gdigrab.c
index c069232472..266da3414c 100644
--- a
20 matches
Mail list logo