Re: [FFmpeg-devel] [PATCH] libavcodec: fix building without asm

2016-02-05 Thread Michael Bradshaw
On Friday, February 5, 2016, Hendrik Leppkes wrote: > On Fri, Feb 5, 2016 at 9:33 PM, Michael Bradshaw > wrote: > > Hi, > > > > Attached patch fixes building ffmpeg on OS X with the following > > configuration: --disable-optimizations --disable-asm > > >

[FFmpeg-devel] [PATCH] Return EOF for ICO when the end is reached

2015-09-24 Thread Michael Bradshaw
Hello! Attached patch makes the ICO demuxer return EOF instead of EIO when the end of the file is reached. Currently, if you try to parse an ICO file, it will always result in ffmpeg outputting an error because of this. --Michael Bradshaw 0001-Return-EOF-for-ICO-when-the-end-is-reached.patch

Re: [FFmpeg-devel] [PATCH] acvodec/lipopenjpeg: Improve XYZ color space detection

2015-03-02 Thread Michael Bradshaw
On Mon, Mar 2, 2015 at 7:08 AM, Vilius Grigaliūnas < vilius.grigaliu...@gmail.com> wrote: > Input files in XYZ color space are incorrecly detected as RGB which results > in incorrect output colors. > > This changes pixel format detection to try XYZ before RGB when > color space provided by libopen

Re: [FFmpeg-devel] [PATCH] acvodec/lipopenjpeg: Improve XYZ color space detection

2015-03-02 Thread Michael Bradshaw
ou can use the -pix_fmt option to specify the pixel format of the source. The openjpeg decoder will try that pixel format first before iterating through its (prioritized) list of pixel formats. That should provide a way to work around this (until it's fixed). > > On Tue, Mar 3, 2015 at 12

Re: [FFmpeg-devel] [PATCH 2/2] acvodec/lipopenjpeg: Improve XYZ color space detection

2015-03-03 Thread Michael Bradshaw
On Tue, Mar 3, 2015 at 3:04 AM, Vilius Grigaliūnas < vilius.grigaliu...@gmail.com> wrote: > On Tue, Mar 3, 2015 at 11:40 AM, Carl Eugen Hoyos > wrote: > > Doesn't this break rgb48 images? > > No, it does not break rgb48. They are not affected by this change. Due > to the way libopenjpeg_matches_p

Re: [FFmpeg-devel] [PATCH] acvodec/lipopenjpeg: Improve XYZ color space detection

2015-03-03 Thread Michael Bradshaw
On Mon, Mar 2, 2015 at 11:56 PM, Vilius Grigaliūnas < vilius.grigaliu...@gmail.com> wrote: > On Tue, Mar 3, 2015 at 4:35 AM, Michael Bradshaw > wrote: > > You can use the -pix_fmt option to specify the pixel format of the > source. > > The openjpeg decoder will try tha

Re: [FFmpeg-devel] [PATCH 2/2] acvodec/lipopenjpeg: Improve XYZ color space detection

2015-03-03 Thread Michael Bradshaw
On Tue, Mar 3, 2015 at 1:19 AM, Vilius Grigaliūnas < vilius.grigaliu...@gmail.com> wrote: > Input files in XYZ color space are incorrecly detected as RGB which results > in incorrect output colors. > > This fixes pixel format detection order (in increasing bit depth to > match libopenjpeg_matches_

Re: [FFmpeg-devel] [PATCH 1/2] acvodec/lipopenjpeg: Fix pixel value shift for 12-bit pixel formats

2015-03-03 Thread Michael Bradshaw
On Tue, Mar 3, 2015 at 1:19 AM, Vilius Grigaliūnas < vilius.grigaliu...@gmail.com> wrote: > This fixes pixel values not being properly shifted in > libopenjpeg_copyto16 and libopenjpeg_copy_to_packed16 methods. > > Pixel formats like xyz12le need to be shifted by > AVComponentDescriptor::shift > t

Re: [FFmpeg-devel] [PATCH] avformat/movenc: write the colr atom by default

2020-08-19 Thread Michael Bradshaw
On Mon, Apr 13, 2020 at 4:14 PM Michael Bradshaw wrote: > Attached is an updated patch that passes fate. > I completely forgot about this patch. If no one objects over the next few days I plan on pushing this. FATE still passes. ___ ffmpeg

[FFmpeg-devel] [PATCH] avcodec/proresenc: add support for PQ and HLG

2020-08-19 Thread Michael Bradshaw
Signed-off-by: Michael Bradshaw --- libavcodec/proresenc_anatoliy.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/libavcodec/proresenc_anatoliy.c b/libavcodec/proresenc_anatoliy.c index 1128978330..3aa18a3ca4 100644 --- a/libavcodec/proresenc_anatoliy.c +++ b/libavcodec

Re: [FFmpeg-devel] [PATCH] avcodec/proresenc: add support for PQ and HLG

2020-08-19 Thread Michael Bradshaw
On Wed, Aug 19, 2020 at 8:24 PM Michael Bradshaw wrote: > Signed-off-by: Michael Bradshaw > --- > libavcodec/proresenc_anatoliy.c | 3 ++- > 1 file changed, 2 insertions(+), 1 deletion(-) > > diff --git a/libavcodec/proresenc_anatoliy.c > b/libavcodec/proresenc_anatoliy

[FFmpeg-devel] [PATCH] avcodec/proresenc: add support for PQ and HLG

2020-08-19 Thread Michael Bradshaw
Signed-off-by: Michael Bradshaw --- libavcodec/proresenc_anatoliy.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/libavcodec/proresenc_anatoliy.c b/libavcodec/proresenc_anatoliy.c index 1128978330..3005db0bb4 100644 --- a/libavcodec/proresenc_anatoliy.c +++ b/libavcodec

Re: [FFmpeg-devel] [PATCH] avcodec/proresenc: add support for PQ and HLG

2020-08-20 Thread Michael Bradshaw
On Wed, Aug 19, 2020 at 9:23 PM zhilizhao wrote: > > -static const int valid_trc[4]= { AVCOL_TRC_RESERVED0, > AVCOL_TRC_BT709, AVCOL_TRC_UNSPECIFIED, INT_MAX }; > > +static const int valid_trc[6]= { AVCOL_TRC_RESERVED0, > AVCOL_TRC_BT709, AVCOL_TRC_UNSPECIFIED, AVCOL_TRC_SMPTE2084

Re: [FFmpeg-devel] [PATCH] avformat/movenc: write the colr atom by default

2020-08-21 Thread Michael Bradshaw
On Wed, Aug 19, 2020 at 2:19 PM Paul B Mahol wrote: > On 8/19/20, Michael Bradshaw wrote: > > I completely forgot about this patch. If no one objects over the next few > > days I plan on pushing this. FATE still passes. > > Fine by

[FFmpeg-devel] [PATCH] avcodec/proresenc: infer array lengths

2020-08-21 Thread Michael Bradshaw
Signed-off-by: Michael Bradshaw --- libavcodec/proresenc_anatoliy.c | 18 +- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/libavcodec/proresenc_anatoliy.c b/libavcodec/proresenc_anatoliy.c index 1128978330..d1623e142c 100644 --- a/libavcodec/proresenc_anatoliy.c

Re: [FFmpeg-devel] [PATCH] avcodec/proresenc: add support for PQ and HLG

2020-08-21 Thread Michael Bradshaw
On Thu, Aug 20, 2020 at 10:45 AM Michael Bradshaw wrote: > On Wed, Aug 19, 2020 at 9:23 PM zhilizhao wrote: > >> > -static const int valid_trc[4]= { AVCOL_TRC_RESERVED0, >> AVCOL_TRC_BT709, AVCOL_TRC_UNSPECIFIED, INT_MAX }; >> >

Re: [FFmpeg-devel] [PATCH]lavc/libopenjpeg: Support GRAY10, GRAY12 and GRAY14

2018-06-22 Thread Michael Bradshaw
Hey, Carl Eugen! Thanks for the patch. On Thu, Jun 21, 2018 at 3:12 AM, Carl Eugen Hoyos wrote: > > Attached patch allows to create (and read) gray1x samples with libopenjpeg. Looks good to me. I have a few very small nits below. I won't block the patch based on these small nits, so feel free t

Re: [FFmpeg-devel] [PATCH 4/5] avcodec/libopenjpegenc: Don't clone AVFrame unnecessarily

2022-02-24 Thread Michael Bradshaw
On Thu, Feb 24, 2022 at 2:44 AM Andreas Rheinhardt < andreas.rheinha...@outlook.com> wrote: > Will apply this tomorrow unless there are objections. > No objections from me. Thanks for the improvement! ___ ffmpeg-devel mailing list ffmpeg-devel@ffmpeg.or

<    1   2