[FFmpeg-devel] [PATCH] libavcodec/libx265.c: support for the x265 loglevel configured with ffmpeg loglevel option

2018-10-14 Thread lance . lmwang
From: Limin Wang --- libavcodec/libx265.c | 18 ++ 1 file changed, 18 insertions(+) diff --git a/libavcodec/libx265.c b/libavcodec/libx265.c index 27c90b3..3a08767 100644 --- a/libavcodec/libx265.c +++ b/libavcodec/libx265.c @@ -108,6 +108,24 @@ static av_cold int

[FFmpeg-devel] [PATCH] doc: change OS X to macOS

2018-10-14 Thread Helmut K. C. Tessarek
--- src/download | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/download b/src/download index 0bda5a0..40f4706 100644 --- a/src/download +++ b/src/download @@ -95,7 +95,7 @@ https://evermeet.cx/ffmpeg/;> -Static builds for OS

Re: [FFmpeg-devel] [PATCH 02/12] avformat/mxfenc: write index delta entry array needed by sony vegas pro 11

2018-10-14 Thread Michael Niedermayer
On Sun, Oct 14, 2018 at 03:05:38PM -0700, Baptiste Coudurier wrote: > On Sat, Oct 13, 2018 at 7:13 PM Michael Niedermayer > wrote: > > > On Sat, Oct 13, 2018 at 06:24:52PM +0200, Martin Vignali wrote: > > > > > > > > Applied > > > > > > > > > > > Seems like fate-mxf-reel_name doesn't pass after

Re: [FFmpeg-devel] [PATCH 1/2] ffmpeg: log corrupted packets and frames

2018-10-14 Thread Marton Balint
On Thu, 11 Oct 2018, Michael Niedermayer wrote: On Wed, Oct 10, 2018 at 01:32:13AM +0200, Marton Balint wrote: Signed-off-by: Marton Balint --- fftools/ffmpeg.c | 16 ++-- 1 file changed, 10 insertions(+), 6 deletions(-) maybe this should also print some time information so

Re: [FFmpeg-devel] [PATCH 02/12] avformat/mxfenc: write index delta entry array needed by sony vegas pro 11

2018-10-14 Thread Baptiste Coudurier
On Sat, Oct 13, 2018 at 7:13 PM Michael Niedermayer wrote: > On Sat, Oct 13, 2018 at 06:24:52PM +0200, Martin Vignali wrote: > > > > > > Applied > > > > > > > > Seems like fate-mxf-reel_name doesn't pass after your patchs > > make fate-mxf-reel_name SAMPLES=fate-suite > > this also broke 2 other

Re: [FFmpeg-devel] [PATCH]lavc/sinewin: Do not declare tables as const

2018-10-14 Thread Carl Eugen Hoyos
2018-10-14 22:30 GMT+02:00, Hendrik Leppkes : > On Sun, Oct 14, 2018 at 10:18 PM Carl Eugen Hoyos > wrote: >> >> Attached patch is supposed to fix ticket #7491, I currently >> don't have gcc 8 to test myself. > > Only the 120 and 960 tables are affected by this bug because > they are not being

[FFmpeg-devel] [PATCH] MAINTAINERS: remove myself as hls demuxer maintainer

2018-10-14 Thread Anssi Hannula
--- Unfortunately I haven't really had the time lately to maintain the HLS demuxer properly and I don't see that changing in the near future. So I intend to apply this removal tomorrow. If anyone is interested in taking over, please do :) I'll continue to maintain the lower-traffic spdif

Re: [FFmpeg-devel] [PATCH]lavc/sinewin: Do not declare tables as const

2018-10-14 Thread Hendrik Leppkes
On Sun, Oct 14, 2018 at 10:18 PM Carl Eugen Hoyos wrote: > > Hi! > > Attached patch is supposed to fix ticket #7491, I currently don't have > gcc 8 to test myself. > Only the 120 and 960 tables are affected by this bug because they are not being created by the hardcoded tables logic, yet this

[FFmpeg-devel] [PATCH]lavc/sinewin: Do not declare tables as const

2018-10-14 Thread Carl Eugen Hoyos
Hi! Attached patch is supposed to fix ticket #7491, I currently don't have gcc 8 to test myself. Please comment, Carl Eugen From 90ac3c2b931d060e918a66047ff76c7d45f2274a Mon Sep 17 00:00:00 2001 From: Carl Eugen Hoyos Date: Sun, 14 Oct 2018 22:13:34 +0200 Subject: [PATCH] lavc/sinewin: Do not

Re: [FFmpeg-devel] [PATCH] avcodec/av1_parse: Check obu_size

2018-10-14 Thread James Almer
On 10/14/2018 2:56 PM, Michael Niedermayer wrote: > Fixes: out of array read > Fixes: SIGSEGV_get_obu_bit_length_av1_parse > > Found-by: keval shah > Signed-off-by: Michael Niedermayer > --- > libavcodec/av1_parse.h | 4 ++-- > 1 file changed, 2 insertions(+), 2 deletions(-) > > diff --git

[FFmpeg-devel] [PATCH] avcodec/av1_parse: Check obu_size

2018-10-14 Thread Michael Niedermayer
Fixes: out of array read Fixes: SIGSEGV_get_obu_bit_length_av1_parse Found-by: keval shah Signed-off-by: Michael Niedermayer --- libavcodec/av1_parse.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libavcodec/av1_parse.h b/libavcodec/av1_parse.h index

[FFmpeg-devel] swscale : add YA16 LE/BE output

2018-10-14 Thread Martin Vignali
Hello, Patch in attach add YA16 le/be output for swscale (only available as input before this patch) Martin 0001-swscale-add-YA16-LE-BE-output.patch Description: Binary data ___ ffmpeg-devel mailing list ffmpeg-devel@ffmpeg.org

Re: [FFmpeg-devel] [PATCH] avcodec/av1_parse: Check obu_size

2018-10-14 Thread James Almer
On 10/14/2018 12:18 PM, Michael Niedermayer wrote: > On Sun, Oct 14, 2018 at 11:03:29AM -0300, James Almer wrote: >> On 10/14/2018 10:43 AM, Michael Niedermayer wrote: >>> Fixes: out of array read >>> Fixes: SIGSEGV_get_obu_bit_length_av1_parse >>> >>> Found-by: keval shah >>> Signed-off-by:

Re: [FFmpeg-devel] [PATCH] avcodec/av1_parse: Check obu_size

2018-10-14 Thread Michael Niedermayer
On Sun, Oct 14, 2018 at 11:03:29AM -0300, James Almer wrote: > On 10/14/2018 10:43 AM, Michael Niedermayer wrote: > > Fixes: out of array read > > Fixes: SIGSEGV_get_obu_bit_length_av1_parse > > > > Found-by: keval shah > > Signed-off-by: Michael Niedermayer > > --- > > libavcodec/av1_parse.h

Re: [FFmpeg-devel] [PATCH] avcodec/av1_parse: Check obu_size

2018-10-14 Thread James Almer
On 10/14/2018 10:43 AM, Michael Niedermayer wrote: > Fixes: out of array read > Fixes: SIGSEGV_get_obu_bit_length_av1_parse > > Found-by: keval shah > Signed-off-by: Michael Niedermayer > --- > libavcodec/av1_parse.h | 3 +++ > 1 file changed, 3 insertions(+) > > diff --git

[FFmpeg-devel] [PATCH] avcodec/av1_parse: Check obu_size

2018-10-14 Thread Michael Niedermayer
Fixes: out of array read Fixes: SIGSEGV_get_obu_bit_length_av1_parse Found-by: keval shah Signed-off-by: Michael Niedermayer --- libavcodec/av1_parse.h | 3 +++ 1 file changed, 3 insertions(+) diff --git a/libavcodec/av1_parse.h b/libavcodec/av1_parse.h index 276af33ba9..312d8825e1 100644 ---

Re: [FFmpeg-devel] [PATCH] avformat: add H264 and HEVC support in IVF muxer

2018-10-14 Thread James Almer
On 10/14/2018 9:59 AM, Michael Niedermayer wrote: > On Sun, Oct 14, 2018 at 01:29:53PM +0300, Jan Ekström wrote: >> On Sun, Oct 14, 2018 at 1:27 PM Jan Ekström wrote: >>> >>> On Sun, Oct 14, 2018 at 3:17 AM Michael Niedermayer >>> wrote: On Fri, Oct 12, 2018 at 01:13:45AM +0100, Derek

Re: [FFmpeg-devel] [PATCH] avformat: add H264 and HEVC support in IVF muxer

2018-10-14 Thread Michael Niedermayer
On Sun, Oct 14, 2018 at 01:29:53PM +0300, Jan Ekström wrote: > On Sun, Oct 14, 2018 at 1:27 PM Jan Ekström wrote: > > > > On Sun, Oct 14, 2018 at 3:17 AM Michael Niedermayer > > wrote: > > > > > > On Fri, Oct 12, 2018 at 01:13:45AM +0100, Derek Buitenhuis wrote: > > > > On 11/10/2018 23:39, Alex

Re: [FFmpeg-devel] [PATCH] avformat: add H264 and HEVC support in IVF muxer

2018-10-14 Thread Jan Ekström
On Sun, Oct 14, 2018 at 3:17 AM Michael Niedermayer wrote: > > On Fri, Oct 12, 2018 at 01:13:45AM +0100, Derek Buitenhuis wrote: > > On 11/10/2018 23:39, Alex Sukhanov wrote: > > > The only "spec" I'm aware of:https://wiki.multimedia.cx/index.php/IVF > > > > Yeah, not really a spec. > > > > I

Re: [FFmpeg-devel] [PATCH V2 1/2] lavf/vc1test: fix vc1test can't probe some RCV file.

2018-10-14 Thread myp...@gmail.com
On Sun, Oct 14, 2018 at 3:07 AM Michael Niedermayer wrote: > > On Fri, Oct 12, 2018 at 09:41:04PM +0800, Jun Zhao wrote: > > case 1: > > use the hexdump -C SMM0005.rcv get: > > size skip (size - 4) > > || > >