Re: [FFmpeg-devel] [PATCH] avcodec/flac_parser: Do not loose header count in find_headers_search()

2020-02-04 Thread Paul B Mahol
probably fine On 2/3/20, Michael Niedermayer wrote: > Fixes: Timeout > Fixes: out of array access > Fixes: > 20274/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_FLAC_fuzzer-5649631988154368 > Fixes: > 19275/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_FLAC_fuzzer-5757535722405888 > > Fou

Re: [FFmpeg-devel] Reimbursement FOSDEM

2020-02-04 Thread Thilo Borgmann
Hi, > For travelling from Vienna to FOSDEM and back, I request > re-imbursement of €282,16 for the same reason I also request reimbursement for my flight of 131,21 EUR. Send the paperwork to Stefano. Thanks, Thilo ___ ffmpeg-devel mailing list ffmpeg-d

Re: [FFmpeg-devel] [PATCH] avcodec/flac_parser: Do not loose header count in find_headers_search()

2020-02-04 Thread Andreas Rheinhardt
Michael Niedermayer: > Fixes: Timeout > Fixes: out of array access > Fixes: > 20274/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_FLAC_fuzzer-5649631988154368 > Fixes: > 19275/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_FLAC_fuzzer-5757535722405888 > > Found-by: continuous fuzzing proc

[FFmpeg-devel] [PATCH] avformat/mov: Discard last STSC if its empty

2020-02-04 Thread Michael Niedermayer
Fixes: Ticket8508 --- libavformat/mov.c | 4 1 file changed, 4 insertions(+) diff --git a/libavformat/mov.c b/libavformat/mov.c index bbaf266a4b..726e69ba53 100644 --- a/libavformat/mov.c +++ b/libavformat/mov.c @@ -2665,6 +2665,10 @@ static int mov_read_stsc(MOVContext *c, AVIOContext *pb,

Re: [FFmpeg-devel] [PATCH 1/2] lavc/dvdsubdec: Move palette parsing to new function

2020-02-04 Thread Michael Kuron
I split off the documentation fix into a separate patch and sent the series of three patches yesterday. Carl Eugen Hoyos already merged the first one with the documentation fix. Can you take care of the remaining two patches? On Sun, Feb 2, 2020 at 5:08 PM Michael Niedermayer wrote: >> diff --gi

Re: [FFmpeg-devel] [PATCH] Support for Frame Duplication(Doubling/Tripling) by FFmpeg's HEVC Decoder by parsing the picture_struct SEI

2020-02-04 Thread Kieran Kunhya
On Wed, 29 Jan 2020 at 13:25, Praveen Kumar wrote: > Hi, > > Re-submitting the patch. This patch has the implementation for supporting > frame-duplication (doubling/ tripling) by FFmpeg's HEVC decoder based on > the picture_structure SEI value present in the encoded video. > picture_structure val

Re: [FFmpeg-devel] [PATCH] avcodec/flac_parser: Do not loose header count in find_headers_search()

2020-02-04 Thread Michael Niedermayer
On Tue, Feb 04, 2020 at 11:10:00AM +, Andreas Rheinhardt wrote: > Michael Niedermayer: > > Fixes: Timeout > > Fixes: out of array access > > Fixes: > > 20274/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_FLAC_fuzzer-5649631988154368 > > Fixes: > > 19275/clusterfuzz-testcase-minimized-ffmp

Re: [FFmpeg-devel] [PATCH 7/7] mlp: check huff_lsbs only when codebook is used

2020-02-04 Thread Michael Niedermayer
On Mon, Feb 03, 2020 at 12:33:00AM +0530, Jai Luthra wrote: > When no codebook is used, huff_lsbs can be more than 24 and still decode to > original values once filters are applied. huff_lsbs can but get_bits() is limited to 25, you need get_bits_long() beyond thx [...] -- Michael GnuPG fi

[FFmpeg-devel] [PATCH] avformat/hlsenc: allow a custom SDT and PAT period

2020-02-04 Thread Marton Balint
The default is not to write SDT and PAT periodically, only in the beginning of every segment. After this patch the user might override this if needed. Signed-off-by: Marton Balint --- libavformat/hlsenc.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libavformat/hlsenc.

Re: [FFmpeg-devel] [PATCH] Vulkan hwcontext and filters

2020-02-04 Thread Anton Khirnov
Quoting Lynne (2020-02-02 18:23:43) > Jan 22, 2020, 16:44 by an...@khirnov.net: > > > Quoting Lynne (2020-01-21 21:52:52) > > > >> Jan 21, 2020, 18:22 by an...@khirnov.net: > >> >> Its size too? Didn't know that. > >> >> I do think its a good idea to be able to append fields to it, so I've > >> >>

Re: [FFmpeg-devel] [PATCH] fate/adpcm: add adpcm_argo tests

2020-02-04 Thread Michael Niedermayer
On Tue, Feb 04, 2020 at 02:01:23AM +, Zane van Iperen wrote: > Signed-off-by: Zane van Iperen > --- > tests/fate/adpcm.mak | 6 ++ > tests/ref/fate/adpcm-argo-mono | 1 + > tests/ref/fate/adpcm-argo-stereo | 1 + > 3 files changed, 8 insertions(+) > create mode 100644 tests

Re: [FFmpeg-devel] [PATCH 2/3] lavc/dvdsubdec: Move palette parsing to new function

2020-02-04 Thread Michael Niedermayer
On Mon, Feb 03, 2020 at 08:42:30PM +0100, Michael Kuron wrote: > Signed-off-by: Michael Kuron > --- > libavcodec/Makefile| 1 + > libavcodec/dvdsub.c| 33 + > libavcodec/dvdsubdec.c | 22 ++ > libavcodec/internal.h | 2 ++ > 4 files c

Re: [FFmpeg-devel] [PATCH 3/3] lavc/dvdsubenc: accept palette from options

2020-02-04 Thread Michael Niedermayer
On Mon, Feb 03, 2020 at 08:42:31PM +0100, Michael Kuron wrote: > Previously, the default palette would always be used. > Now, we can accept a custom palette, just like dvdsubdec does. > > Signed-off-by: Michael Kuron > --- > doc/encoders.texi | 8 > libavcodec/Makefile| 1 + >

Re: [FFmpeg-devel] [PATCH] avformat/hlsenc: allow a custom SDT and PAT period

2020-02-04 Thread Steven Liu
Marton Balint 于 2020年2月5日周三 上午5:39写道: > The default is not to write SDT and PAT periodically, only in the > beginning of > every segment. After this patch the user might override this if needed. > > Signed-off-by: Marton Balint > --- > libavformat/hlsenc.c | 4 ++-- > 1 file changed, 2 insertio

Re: [FFmpeg-devel] [PATCH] configure: don't enable $ARCH_external if $ARCH is disabled

2020-02-04 Thread James Almer
On 1/26/2020 12:08 PM, James Almer wrote: > The check_x86asm() checks would force enable these variables on success, > bypassing any --disable-* command line option. > This is important in the case of AVX512, where the relevant define is used > to choose between different values for memory alignmen

Re: [FFmpeg-devel] [PATCH V8 1/2] libswscale/x86/yuv2rgb: Change inline assembly into nasm code

2020-02-04 Thread Fu, Ting
> -Original Message- > From: ffmpeg-devel On Behalf Of > Michael Niedermayer > Sent: Tuesday, January 21, 2020 05:04 PM > To: FFmpeg development discussions and patches > Subject: Re: [FFmpeg-devel] [PATCH V8 1/2] libswscale/x86/yuv2rgb: Change > inline assembly into nasm code > > On S

[FFmpeg-devel] [PATCH] Update HDR10+ metadata structure.

2020-02-04 Thread Mohammad Izadi
From: Mohammad Izadi Trying to read HDR10+ metadata from HEVC/SEI and pass it to packet side data in the follow-up CLs. --- libavutil/hdr_dynamic_metadata.c | 167 ++- libavutil/hdr_dynamic_metadata.h | 14 ++- libavutil/version.h | 2 +- 3 files chan

Re: [FFmpeg-devel] [PATCH] Support for Frame Duplication(Doubling/Tripling) by FFmpeg's HEVC Decoder by parsing the picture_struct SEI

2020-02-04 Thread Praveen Kumar
Yes Kieran, kindly push it to default. Many thanks for reviewing it and sharing your inputs. Regards, Praveen From: Kieran Kunhya Sent: Tuesday, February 4, 2020 10:58 PM To: Praveen Kumar Cc: ffmpeg-devel@ffmpeg.org ; Thilo Borgmann ; Kieran Kunhya ; Michael N