Re: [FFmpeg-devel] blended telecine... possible?

2019-09-03 Thread Kieran O Leary
Hi, On Wed, 4 Sep 2019, 04:09 Mark Filipak, < markfilipak.windows+ffm...@gmail.com> wrote: > No one has responded. What does that indicate? Lack of interest? Lack of > knowledge? Lack of time? Shunning of anyone who's not a current developer? > You didn't wait very long for a reply, also you wro

[FFmpeg-devel] [PATCH] webp: avoid trying to decode trailing junk in bitstreams

2019-09-03 Thread Pascal Massimino
Hi, this patch break the decoding loop when invalid webp chunk is encountered. We can still have a valid frame ready to be returned (*got_frame = 1). fixes trac #8107 (/#7612) skal/ 0001-webp-fix-decoding-for-trailing-junk.patch Description: Binary data

Re: [FFmpeg-devel] [PATCH 2/2 v2] avformat/matroskadec: use av_fast_realloc to reallocate ebml list arrays

2019-09-03 Thread James Almer
On 9/4/2019 1:21 AM, Carl Eugen Hoyos wrote: > > > Von meinem iPhone gesendet > >> Am 04.09.2019 um 01:03 schrieb James Almer : >> >> Speeds up the process considerably. >> >> Fixes ticket #8109. >> >> Suggested-by: nevcairiel >> Suggested-by: cehoyos >> Signed-off-by: James Almer >> --- >> lib

Re: [FFmpeg-devel] [PATCH 2/2 v2] avformat/matroskadec: use av_fast_realloc to reallocate ebml list arrays

2019-09-03 Thread Carl Eugen Hoyos
Von meinem iPhone gesendet > Am 04.09.2019 um 01:03 schrieb James Almer : > > Speeds up the process considerably. > > Fixes ticket #8109. > > Suggested-by: nevcairiel > Suggested-by: cehoyos > Signed-off-by: James Almer > --- > libavformat/matroskadec.c | 12 ++-- > 1 file changed, 10

[FFmpeg-devel] blended telecine... possible?

2019-09-03 Thread Mark Filipak
No one has responded. What does that indicate? Lack of interest? Lack of knowledge? Lack of time? Shunning of anyone who's not a current developer? Given: i30-telecast = [A][a][B][b][C][c][D][d][E][e] And given: p24 = [A/a][B/b][C/c][D/d] i30-telecine = [A][a][B][b][B][c][C][d][D][d] p30-teleci

Re: [FFmpeg-devel] [PATCH 2/2 v2] avformat/matroskadec: use av_fast_realloc to reallocate ebml list arrays

2019-09-03 Thread James Almer
On 9/3/2019 8:36 PM, Andreas Rheinhardt wrote: > James Almer: >> Speeds up the process considerably. >> >> Fixes ticket #8109. >> >> Suggested-by: nevcairiel >> Suggested-by: cehoyos >> Signed-off-by: James Almer >> --- >> libavformat/matroskadec.c | 12 ++-- >> 1 file changed, 10 inserti

Re: [FFmpeg-devel] [PATCH] avcodec/videotoolboxenc: fix encoding frame crash on iOS 11

2019-09-03 Thread Aman Gupta
On Mon, Aug 12, 2019 at 11:50 PM sharpbai wrote: > On iOS 11, encoding a frame may return error with log > "Error encoding frame 0", which means vtenc_output_callback > is called with status=0 and sample_buffer=NULL. Then the > encoding session will be crashed on next callback wether or not > clo

Re: [FFmpeg-devel] [PATCH 2/2 v2] avformat/matroskadec: use av_fast_realloc to reallocate ebml list arrays

2019-09-03 Thread Andreas Rheinhardt
James Almer: > Speeds up the process considerably. > > Fixes ticket #8109. > > Suggested-by: nevcairiel > Suggested-by: cehoyos > Signed-off-by: James Almer > --- > libavformat/matroskadec.c | 12 ++-- > 1 file changed, 10 insertions(+), 2 deletions(-) > > diff --git a/libavformat/matr

[FFmpeg-devel] [PATCH 2/2 v2] avformat/matroskadec: use av_fast_realloc to reallocate ebml list arrays

2019-09-03 Thread James Almer
Speeds up the process considerably. Fixes ticket #8109. Suggested-by: nevcairiel Suggested-by: cehoyos Signed-off-by: James Almer --- libavformat/matroskadec.c | 12 ++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/libavformat/matroskadec.c b/libavformat/matroskadec.c

Re: [FFmpeg-devel] [PATCH 2/2] avformat/matroskadec: use av_fast_realloc to reallocate ebml list arrays

2019-09-03 Thread Carl Eugen Hoyos
> Am 03.09.2019 um 23:56 schrieb James Almer : > > Speeds up the process considerably. > > Fixes ticket #8109. > > Suggested-by: nevcairiel > Suggested-by: cehoyos > Signed-off-by: James Almer > --- > libavformat/matroskadec.c | 6 -- > 1 file changed, 4 insertions(+), 2 deletions(-) > >

Re: [FFmpeg-devel] [PATCH v1 1/2] avfilter/vf_scale: split the scale_frame function from filter_frame for activate function support

2019-09-03 Thread Michael Niedermayer
On Sat, Jul 27, 2019 at 08:18:16PM +0800, lance.lmw...@gmail.com wrote: > From: Limin Wang > > Signed-off-by: Limin Wang > --- > libavfilter/vf_scale.c | 29 + > 1 file changed, 25 insertions(+), 4 deletions(-) LGTM thx [...] -- Michael GnuPG fingerprint: 9FF

[FFmpeg-devel] [PATCH 2/2] avformat/matroskadec: use av_fast_realloc to reallocate ebml list arrays

2019-09-03 Thread James Almer
Speeds up the process considerably. Fixes ticket #8109. Suggested-by: nevcairiel Suggested-by: cehoyos Signed-off-by: James Almer --- libavformat/matroskadec.c | 6 -- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/libavformat/matroskadec.c b/libavformat/matroskadec.c index 4

[FFmpeg-devel] [PATCH 1/2] avformat/matroskadec: use proper types for some EbmlSyntax fields

2019-09-03 Thread James Almer
Signed-off-by: James Almer --- libavformat/matroskadec.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libavformat/matroskadec.c b/libavformat/matroskadec.c index 1ea9b807e6..439ee462a5 100644 --- a/libavformat/matroskadec.c +++ b/libavformat/matroskadec.c @@ -97,8 +97,8

Re: [FFmpeg-devel] [PATCH] DVB EPG decoder

2019-09-03 Thread Marton Balint
Hi, I am not sure if you are interested getting only patch 1, 2 and 3 merged, but if you are, then here are my comments for patch 3. From 025ec8e8d607d02f2e5b4021783ab8f3b42d0bc1 Mon Sep 17 00:00:00 2001 From: Anthony Delannoy Date: Wed, 21 Aug 2019 11:46:56 +0200 Subject: [PATCH 03/10] lavf/m

[FFmpeg-devel] blended telecine... possible? (revised)

2019-09-03 Thread Mark Filipak
Opps... Missed p30 Given: i30-telecast = [A][a][B][b][C][c][D][d][E][e] And given: p24 = [A/a][B/b][C/c][D/d] i30-telecine = [A][a][B][b][B][c][C][d][D][d] p30-telecine = [A/a][B/b][B/c][C/d][D/d] Can ffmpeg do this: [A/a][AB/b][BC/bc][C/cd][D/d] ? If so, what lib & what args/parms? __

[FFmpeg-devel] blended telecine... possible?

2019-09-03 Thread Mark Filipak
Given: i30-telecast = [A][a][B][b][C][c][D][d][E][e] And given: p24 = [A/a][B/b][C/c][D/d] i30-telecine = [A][a][B][b][B][c][C][d][D][d] Can ffmpeg do this: [A/a][AB/b][BC/bc][C/cd][D/d] ? If so, what lib & what args/parms? ___ ffmpeg-devel mailing li

Re: [FFmpeg-devel] [PATCH] libavcodec: add editpts bitstream filter [v4]

2019-09-03 Thread Marton Balint
On Tue, 3 Sep 2019, Andreas Håkon wrote: Hi Marton, ‐‐‐ Original Message ‐‐‐ On Tuesday, 3 de September de 2019 9:57, Marton Balint wrote: On Tue, 3 Sep 2019, Andreas Håkon wrote: > Hi, > Ping, ping! (another time). > Please take note of these three points: > > 1. Lip-Syncing is

Re: [FFmpeg-devel] [PATCH 2/2] avcodec/h264: fix draw_horiz_band with slice threads

2019-09-03 Thread Michael Niedermayer
On Mon, Sep 02, 2019 at 04:28:53PM +0200, James Darnley wrote: > From: Kieran Kunhya > > --- > libavcodec/h264_slice.c | 29 +++-- > 1 file changed, 23 insertions(+), 6 deletions(-) with this: ./ffmpeg -i Deep%20Blue.ts -t 1 -vsync 1 -bitexact -an -f framecrc - output i

Re: [FFmpeg-devel] [PATCH] avformat/mpegts: check end of init before treating SCTE data

2019-09-03 Thread Marton Balint
On Tue, 3 Sep 2019, Anthony Delannoy wrote: Hi On some DVB stream ffprobe segfaulted, it was because of SCTE-35 data packet reception before the end of MpegTSContext initialization. On this patch I check for `ts->pkt` availability before trying to generate a new SCTE data packet. Thanks,

Re: [FFmpeg-devel] [PATCH 3/5] avcodec: add max_samples

2019-09-03 Thread Nicolas George
James Almer (12019-09-03): > I prefer a separate field. If the existing field was called in a more > ambiguous way I'd be ok with reusing it, but not like this. Same for me. Regards, -- Nicolas George signature.asc Description: PGP signature ___ f

Re: [FFmpeg-devel] [PATCH 3/5] avcodec: add max_samples

2019-09-03 Thread James Almer
On 9/3/2019 7:57 AM, Michael Niedermayer wrote: > On Tue, Sep 03, 2019 at 09:20:52AM +0200, Paul B Mahol wrote: >> NAK, you can use max_pixels for the same cause. > > yes, we can, its poor design though audio samples are not > pixels. > > Anyone else has an opinion on this ? > > Thanks I prefer

Re: [FFmpeg-devel] [PATCH 5/5] avcodec/apedec: Check max_samples

2019-09-03 Thread James Almer
On 9/3/2019 8:13 AM, Michael Niedermayer wrote: > On Mon, Sep 02, 2019 at 09:40:47PM -0300, James Almer wrote: >> On 9/2/2019 9:14 PM, Michael Niedermayer wrote: >>> Fixes: OOM >>> Fixes: >>> 16627/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_APE_fuzzer-5638059583864832 >>> >>> Found-by: cont

Re: [FFmpeg-devel] [PATCH/RFC] libavcodec/cinepak: Separate decoding from parsing

2019-09-03 Thread Tomas Härdin
tis 2019-09-03 klockan 13:53 +0200 skrev Michael Niedermayer: > On Sun, Sep 01, 2019 at 10:58:27PM +0200, Tomas Härdin wrote: > > libavcodec/cinepak.c| 337 --- > > - > > tests/ref/fate/cvid-palette |1 > > tests/ref/fate/cvid-partial |1 >

Re: [FFmpeg-devel] [PATCH 3/5] avcodec: add max_samples

2019-09-03 Thread Tomas Härdin
tis 2019-09-03 klockan 13:10 +0200 skrev Michael Niedermayer: > On Tue, Sep 03, 2019 at 12:21:26PM +0200, Tomas Härdin wrote: > > tis 2019-09-03 klockan 09:20 +0200 skrev Paul B Mahol: > > > On 9/3/19, Michael Niedermayer wrote: > > > > TODO: APIChanges, bump version > > > > > > > > Signed-off-by

Re: [FFmpeg-devel] [PATCH 1/5] avcodec/apedec: Fix 32bit int overflow in do_apply_filter()

2019-09-03 Thread Tomas Härdin
tis 2019-09-03 klockan 13:25 +0200 skrev Michael Niedermayer: > On Tue, Sep 03, 2019 at 12:16:47PM +0200, Tomas Härdin wrote: > > tis 2019-09-03 klockan 02:14 +0200 skrev Michael Niedermayer: > > > Fixes: signed integer overflow: 2147480546 + 4096 cannot be represented > > > in type 'int' > > > Fi

[FFmpeg-devel] [PATCH] avformat/mpegts: check end of init before treating SCTE data

2019-09-03 Thread Anthony Delannoy
Hi On some DVB stream ffprobe segfaulted, it was because of SCTE-35 data packet reception before the end of MpegTSContext initialization. On this patch I check for `ts->pkt` availability before trying to generate a new SCTE data packet. Anthony Delannoy From 6dd92519ce5f7c85ca35c7227d35ff49fa6de

Re: [FFmpeg-devel] [PATCH v2 2/2] avformat/hlsenc: avformat/hlsenc: reopen new http session for http_persistent

2019-09-03 Thread Steven Liu
> 在 2019年9月3日,22:30,Ian Klassen 写道: > > On Thu, Aug 29, 2019 at 6:15 PM Steven Liu wrote: > >> fix ticket: 7975 >> >> Signed-off-by: Steven Liu >> --- >> libavformat/hlsenc.c | 66 >> +++- >> 1 file changed, 55 insertions(+), 11 deletions(-) >>

Re: [FFmpeg-devel] [PATCH 3/4] avformat/hashenc: add option to create hash per stream

2019-09-03 Thread Paul B Mahol
I think better thing to do is to add streamhash muxer instead of doing it in hash muxer. On 8/11/19, Moritz Barsnick wrote: > Non-frame based muxers only, the frame based ones are already per > stream. > > Signed-off-by: Moritz Barsnick > --- > doc/muxers.texi | 5 + > libavformat/ha

Re: [FFmpeg-devel] [PATCH v2 2/2] avformat/hlsenc: avformat/hlsenc: reopen new http session for http_persistent

2019-09-03 Thread Ian Klassen
On Thu, Aug 29, 2019 at 6:15 PM Steven Liu wrote: > fix ticket: 7975 > > Signed-off-by: Steven Liu > --- > libavformat/hlsenc.c | 66 > +++- > 1 file changed, 55 insertions(+), 11 deletions(-) > > diff --git a/libavformat/hlsenc.c b/libavformat/hl

Re: [FFmpeg-devel] [PATCH] tools/target_dec_fuzzer: add support to fuzz bitstream filters

2019-09-03 Thread James Almer
On 8/30/2019 1:39 PM, James Almer wrote: > Signed-off-by: James Almer > --- > Untested. I'm also not sure how to add the FFMPEG_BSF define to > tools/Makefile, > and have it coexist with FFMPEG_DECODER. Assuming it's needed. > > tools/target_dec_fuzzer.c | 43 +++

Re: [FFmpeg-devel] [PATCH] avcodec/decode: add a flags parameter to ff_reget_buffer()

2019-09-03 Thread James Almer
On 8/31/2019 12:22 PM, James Almer wrote: > Some decoders may not need a writable buffer in some specific cases, but only > a reference to the existing buffer with updated frame properties instead, for > the purpose of returning duplicate frames. For this, the > FF_REGET_BUFFER_FLAG_READONLY flag i

[FFmpeg-devel] Hello

2019-09-03 Thread Mark Filipak
Hello, I'm new to this list. I have a specific development goal: To implement a non-judder 2-3 pull-down of my design if it doesn't alreay exist. Is that goal permitted here? Warm Regards, Mark. ___ ffmpeg-devel mailing list ffmpeg-devel@ffmpeg.org h

Re: [FFmpeg-devel] [PATCH] libavcodec: add editpts bitstream filter [v4]

2019-09-03 Thread Andreas Håkon
Hi Marton, ‐‐‐ Original Message ‐‐‐ On Tuesday, 3 de September de 2019 9:57, Marton Balint wrote: > On Tue, 3 Sep 2019, Andreas Håkon wrote: > > > Hi, > > Ping, ping! (another time). > > Please take note of these three points: > > > > 1. Lip-Syncing is a relevant topic in the AV editin

[FFmpeg-devel] [PATCH 2/2] avfilter/vf_v360: stop using floats in interpolation

2019-09-03 Thread Paul B Mahol
Signed-off-by: Paul B Mahol --- libavfilter/vf_v360.c | 40 1 file changed, 20 insertions(+), 20 deletions(-) diff --git a/libavfilter/vf_v360.c b/libavfilter/vf_v360.c index 2fee0016b9..dd41bb293c 100644 --- a/libavfilter/vf_v360.c +++ b/libavfilter/vf_v

[FFmpeg-devel] [PATCH 1/2] avfilter/vf_v360: rewrite storing of remap positions and interpolations

2019-09-03 Thread Paul B Mahol
In preparation of SIMD assembly. Signed-off-by: Paul B Mahol --- libavfilter/vf_v360.c | 168 ++ 1 file changed, 89 insertions(+), 79 deletions(-) diff --git a/libavfilter/vf_v360.c b/libavfilter/vf_v360.c index 627caedc01..2fee0016b9 100644 --- a/libavfi

[FFmpeg-devel] [PATCH v2] avfilter/vf_delogo: avfilter/vf_delogo: add auto set the area inside of the frame

2019-09-03 Thread Steven Liu
when the area outside of the frame, then use expr should give user warning message and auto set to the area inside of the frame. Signed-off-by: Steven Liu --- libavfilter/vf_delogo.c | 15 +++ 1 file changed, 15 insertions(+) diff --git a/libavfilter/vf_delogo.c b/libavfilter/vf_del

Re: [FFmpeg-devel] [PATCH/RFC] libavcodec/cinepak: Separate decoding from parsing

2019-09-03 Thread Michael Niedermayer
On Sun, Sep 01, 2019 at 10:58:27PM +0200, Tomas Härdin wrote: > libavcodec/cinepak.c| 337 > > tests/ref/fate/cvid-palette |1 > tests/ref/fate/cvid-partial |1 > 3 files changed, 215 insertions(+), 124 deletions(-) > 197f986bfb297c5

Re: [FFmpeg-devel] [PATCH 1/2] avformat/avformat: Introduced `AVInputFormat.read_timestamp2` to fix keyframe seeking for formats that rely on `read_timestamp` for seeking

2019-09-03 Thread Michael Niedermayer
On Mon, Sep 02, 2019 at 01:01:50PM -0700, Darren Mo wrote: > That’s true. However, I think your approach would produce incorrect results > when `AVSEEK_FLAG_BACKWARD` is used. > > The bisection would find the frame just before the target time and then we > would search for the next keyframe, whi

Re: [FFmpeg-devel] [PATCH 1/5] avcodec/apedec: Fix 32bit int overflow in do_apply_filter()

2019-09-03 Thread Michael Niedermayer
On Tue, Sep 03, 2019 at 12:16:47PM +0200, Tomas Härdin wrote: > tis 2019-09-03 klockan 02:14 +0200 skrev Michael Niedermayer: > > Fixes: signed integer overflow: 2147480546 + 4096 cannot be represented in > > type 'int' > > Fixes: > > 16280/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_APE_fu

Re: [FFmpeg-devel] [PATCH 5/5] avcodec/apedec: Check max_samples

2019-09-03 Thread Michael Niedermayer
On Mon, Sep 02, 2019 at 09:40:47PM -0300, James Almer wrote: > On 9/2/2019 9:14 PM, Michael Niedermayer wrote: > > Fixes: OOM > > Fixes: > > 16627/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_APE_fuzzer-5638059583864832 > > > > Found-by: continuous fuzzing process > > https://github.com/goo

Re: [FFmpeg-devel] [PATCH] avfilter/vf_delogo: add auto set the area inside of the frame

2019-09-03 Thread Liu Steven
> 在 2019年9月3日,下午3:24,Paul B Mahol 写道: > > On 9/2/19, Steven Liu wrote: >> when the area outside of the frame, then use expr should >> give user warning message and auto set to the area inside of the frame. >> >> Signed-off-by: Steven Liu >> --- >> libavfilter/vf_delogo.c | 14 ++

Re: [FFmpeg-devel] [PATCH 3/5] avcodec: add max_samples

2019-09-03 Thread Michael Niedermayer
On Tue, Sep 03, 2019 at 12:21:26PM +0200, Tomas Härdin wrote: > tis 2019-09-03 klockan 09:20 +0200 skrev Paul B Mahol: > > > > On 9/3/19, Michael Niedermayer wrote: > > > TODO: APIChanges, bump version > > > > > > Signed-off-by: Michael Niedermayer > > > --- > > > libavcodec/avcodec.h

Re: [FFmpeg-devel] [PATCH] lavc/qsvdec: fix the regression on linux for init_hw_device

2019-09-03 Thread Fu, Linjie
> -Original Message- > From: Li, Zhong > Sent: Tuesday, September 3, 2019 18:18 > To: FFmpeg development discussions and patches de...@ffmpeg.org> > Cc: Fu, Linjie > Subject: RE: [FFmpeg-devel] [PATCH] lavc/qsvdec: fix the regression on linux > for init_hw_device > > > diff --git a/libav

Re: [FFmpeg-devel] [PATCH] avfilter/vf_delogo: add auto set the area inside of the frame

2019-09-03 Thread Liu Steven
> 在 2019年9月3日,下午3:24,Paul B Mahol 写道: > > On 9/2/19, Steven Liu wrote: >> when the area outside of the frame, then use expr should >> give user warning message and auto set to the area inside of the frame. >> >> Signed-off-by: Steven Liu >> --- >> libavfilter/vf_delogo.c | 14 ++

Re: [FFmpeg-devel] [PATCH 3/5] avcodec: add max_samples

2019-09-03 Thread Michael Niedermayer
On Tue, Sep 03, 2019 at 09:20:52AM +0200, Paul B Mahol wrote: > NAK, you can use max_pixels for the same cause. yes, we can, its poor design though audio samples are not pixels. Anyone else has an opinion on this ? Thanks [...] -- Michael GnuPG fingerprint: 9FF2128B147EF6730BADF133611EC787

Re: [FFmpeg-devel] [PATCH 3/5] avcodec: add max_samples

2019-09-03 Thread Tomas Härdin
tis 2019-09-03 klockan 09:20 +0200 skrev Paul B Mahol: > > On 9/3/19, Michael Niedermayer wrote: > > TODO: APIChanges, bump version > > > > Signed-off-by: Michael Niedermayer > > --- > > libavcodec/avcodec.h | 8 > > libavcodec/options_table.h | 1 + > > test

Re: [FFmpeg-devel] [PATCH] lavc/qsvdec: fix the regression on linux for init_hw_device

2019-09-03 Thread Li, Zhong
> diff --git a/libavcodec/qsvdec.c b/libavcodec/qsvdec.c index eef4fe7..319b549 > 100644 > --- a/libavcodec/qsvdec.c > +++ b/libavcodec/qsvdec.c > @@ -46,6 +46,7 @@ const AVCodecHWConfigInternal *ff_qsv_hw_configs[] = { > .public = { > .pix_fmt = AV_PIX_FMT_QSV, >

Re: [FFmpeg-devel] [PATCH 1/5] avcodec/apedec: Fix 32bit int overflow in do_apply_filter()

2019-09-03 Thread Tomas Härdin
tis 2019-09-03 klockan 02:14 +0200 skrev Michael Niedermayer: > Fixes: signed integer overflow: 2147480546 + 4096 cannot be represented in > type 'int' > Fixes: > 16280/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_APE_fuzzer-5123442566758400 > > Found-by: continuous fuzzing process > https

Re: [FFmpeg-devel] [PATCH] libavcodec: add editpts bitstream filter [v4]

2019-09-03 Thread Paul B Mahol
On 9/3/19, Marton Balint wrote: > > > On Tue, 3 Sep 2019, Andreas Håkon wrote: > >> Hi, >> >> Ping, ping! (another time). >> >> Please take note of these three points: >> >> 1. Lip-Syncing is a relevant topic in the AV editing area. Almost all >> professional video editors have >> the functionalit

Re: [FFmpeg-devel] [PATCH 1/2] lavu/hwcontext_vaapi: cope with race map for YUV420P

2019-09-03 Thread Fu, Linjie
> -Original Message- > From: Fu, Linjie > Sent: Thursday, August 15, 2019 12:33 > To: ffmpeg-devel@ffmpeg.org > Cc: Fu, Linjie > Subject: [PATCH 1/2] lavu/hwcontext_vaapi: cope with race map for > YUV420P > > There is a race condition for AV_PIX_FMT_YUV420P when mapping from > pix_fmt > t

Re: [FFmpeg-devel] [PATCH] libavcodec: add editpts bitstream filter [v4]

2019-09-03 Thread Marton Balint
On Tue, 3 Sep 2019, Andreas Håkon wrote: Hi, Ping, ping! (another time). Please take note of these three points: 1. Lip-Syncing is a relevant topic in the AV editing area. Almost all professional video editors have the functionality to realign audio with video. And at time the ffmpeg proje

Re: [FFmpeg-devel] [PATCH] avfilter/vf_delogo: add auto set the area inside of the frame

2019-09-03 Thread Paul B Mahol
On 9/2/19, Steven Liu wrote: > when the area outside of the frame, then use expr should > give user warning message and auto set to the area inside of the frame. > > Signed-off-by: Steven Liu > --- > libavfilter/vf_delogo.c | 14 ++ > 1 file changed, 14 insertions(+) > > diff --git a

Re: [FFmpeg-devel] [PATCH 3/5] avcodec: add max_samples

2019-09-03 Thread Paul B Mahol
NAK, you can use max_pixels for the same cause. On 9/3/19, Michael Niedermayer wrote: > TODO: APIChanges, bump version > > Signed-off-by: Michael Niedermayer > --- > libavcodec/avcodec.h | 8 > libavcodec/options_table.h | 1 + > tests/ref/fate/api-mjpeg-codec

Re: [FFmpeg-devel] [PATCH] libavcodec: add editpts bitstream filter [v4]

2019-09-03 Thread Andreas Håkon
Hi, Ping, ping! (another time). Please take note of these three points: 1. Lip-Syncing is a relevant topic in the AV editing area. Almost all professional video editors have the functionality to realign audio with video. And at time the ffmpeg project lacks for a lipsync bitstream filter. For