Re: [FFmpeg-devel] [PATCH V1 2/2] doc/filters: Document missing options for scale in/out color matrix

2019-07-04 Thread Gyan
On 05-07-2019 10:06 AM, Jun Zhao wrote: From: Jun Zhao Document missing options for scale in/out color matrix Signed-off-by: Jun Zhao --- doc/filters.texi |5 + 1 files changed, 5 insertions(+), 0 deletions(-) diff --git a/doc/filters.texi b/doc/filters.texi index

Re: [FFmpeg-devel] [PATCH v4] vf_drawtext: Add pkt_pos, pkt_duration, pkt_size as variables

2019-07-04 Thread Gyan
On 05-07-2019 07:32 AM, greg Luce wrote: If the joined version is preferred it's been submitted at http://ffmpeg.org/pipermail/ffmpeg-devel/2019-June/245662.html Pinging. Would it be possible to get one of these two versions applied, if no other changes are required? Will test and apply.

[FFmpeg-devel] [PATCH V1 2/2] doc/filters: Document missing options for scale in/out color matrix

2019-07-04 Thread Jun Zhao
From: Jun Zhao Document missing options for scale in/out color matrix Signed-off-by: Jun Zhao --- doc/filters.texi |5 + 1 files changed, 5 insertions(+), 0 deletions(-) diff --git a/doc/filters.texi b/doc/filters.texi index 700a76f..b7dec47 100644 --- a/doc/filters.texi +++

[FFmpeg-devel] [PATCH V1 1/2] lavfi/scale: Add sub-options for in_color_matrix/out_color_matrix

2019-07-04 Thread Jun Zhao
From: Jun Zhao Add sub-options for in_color_matrix/out_color_matrix Signed-off-by: Jun Zhao --- libavfilter/vf_scale.c | 12 ++-- 1 files changed, 10 insertions(+), 2 deletions(-) diff --git a/libavfilter/vf_scale.c b/libavfilter/vf_scale.c index f741419..7aebf56 100644 ---

Re: [FFmpeg-devel] [PATCH v4] vf_drawtext: Add pkt_pos, pkt_duration, pkt_size as variables

2019-07-04 Thread greg Luce
> If the joined version is preferred it's been submitted at > http://ffmpeg.org/pipermail/ffmpeg-devel/2019-June/245662.html Pinging. Would it be possible to get one of these two versions applied, if no other changes are required? ___ ffmpeg-devel

Re: [FFmpeg-devel] [PATCH v1] lavc/libdavs2.c: optimize frame copy

2019-07-04 Thread Song, Ruiling
> -Original Message- > From: ffmpeg-devel [mailto:ffmpeg-devel-boun...@ffmpeg.org] On Behalf > Of hwrenx > Sent: Wednesday, July 3, 2019 11:24 AM > To: ffmpeg-devel@ffmpeg.org > Subject: [FFmpeg-devel] [PATCH v1] lavc/libdavs2.c: optimize frame copy > I think it's better to use "correct

Re: [FFmpeg-devel] [PATCH] MAINTAINERS: add myself to the AMF section

2019-07-04 Thread Song, Ruiling
> -Original Message- > From: ffmpeg-devel [mailto:ffmpeg-devel-boun...@ffmpeg.org] On Behalf > Of Marton Balint > Sent: Friday, July 5, 2019 2:27 AM > To: FFmpeg development discussions and patches de...@ffmpeg.org> > Subject: Re: [FFmpeg-devel] [PATCH] MAINTAINERS: add myself to the AMF

[FFmpeg-devel] [PATCH 1/3] avformat/utils: Check rfps_duration_sum for overflow

2019-07-04 Thread Michael Niedermayer
Fixes: signed integer overflow: 9151595917793558550 + 297519050751678697 cannot be represented in type 'long' Fixes: 15496/clusterfuzz-testcase-minimized-ffmpeg_DEMUXER_fuzzer-5722866475073536 Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg

[FFmpeg-devel] [PATCH 2/3] avcodec/vc1_block: Fix integer overflow in ff_vc1_pred_dc()

2019-07-04 Thread Michael Niedermayer
Fixes: signed integer overflow: 32796 * 65536 cannot be represented in type 'int' Fixes: 15430/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_VC1IMAGE_fuzzer-5735424087031808 Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg Signed-off-by:

[FFmpeg-devel] [PATCH 3/3] avcodec/utils: fix leak of subtitle_header on error path

2019-07-04 Thread Michael Niedermayer
Fixes: memleak Fixes: 15528/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_STL_fuzzer-5735993371525120 Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg Signed-off-by: Michael Niedermayer --- libavcodec/utils.c | 1 + 1 file changed, 1

Re: [FFmpeg-devel] [PATCH] avcodec/hevc_ps: fix valid range of num_tile_{columns, rows}_minus1

2019-07-04 Thread James Almer
On 6/30/2019 5:45 PM, James Almer wrote: > From 7.4.3.3.1: > > num_tile_columns_minus1 shall be in the range of 0 to PicWidthInCtbsY - 1, > inclusive. > num_tile_rows_minus1 shall be in the range of 0 to PicHeightInCtbsY - 1, > inclusive. > > Signed-off-by: James Almer > --- > Sorry for not

Re: [FFmpeg-devel] [PATCH] MAINTAINERS: add myself to the AMF section

2019-07-04 Thread Alexander Kravchenko
Hi everybody. Let me explain reasons here. About AMF: 1) AMF is a light-weight, portable multimedia framework that provides access to AMD hardware accelerated encoder, decoder, converters/filters. 2) AMF abstracts away most of the platform and API-specific details and allows for easy

Re: [FFmpeg-devel] [PATCH] avutil: add av_memcpy() to avoid undefined behavior with NULL, NULL, 0

2019-07-04 Thread Hendrik Leppkes
On Thu, Jul 4, 2019 at 8:45 PM Michael Niedermayer wrote: > > On Wed, Jul 03, 2019 at 12:50:59PM +0200, Hendrik Leppkes wrote: > > On Wed, Jul 3, 2019 at 10:46 AM Michael Niedermayer > > wrote: > > > > > > On Wed, Jul 03, 2019 at 09:41:41AM +0200, Reimar Döffinger wrote: > > > > > > > > > > > >

Re: [FFmpeg-devel] [PATCH] avutil: add av_memcpy() to avoid undefined behavior with NULL, NULL, 0

2019-07-04 Thread Michael Niedermayer
On Wed, Jul 03, 2019 at 12:50:59PM +0200, Hendrik Leppkes wrote: > On Wed, Jul 3, 2019 at 10:46 AM Michael Niedermayer > wrote: > > > > On Wed, Jul 03, 2019 at 09:41:41AM +0200, Reimar Döffinger wrote: > > > > > > > > > On 03.07.2019, at 08:29, Michael Niedermayer > > > wrote: > > > > > > > On

Re: [FFmpeg-devel] [PATCH] MAINTAINERS: add myself to the AMF section

2019-07-04 Thread Marton Balint
On Thu, 4 Jul 2019, Hendrik Leppkes wrote: On Thu, Jul 4, 2019 at 12:42 AM Lynne wrote: NAK for reasons said on IRC For everyones benefit, why don't you actually formulate your reasons here instead of asking people to piece them together from some chat history, that way people can

Re: [FFmpeg-devel] [PATCH 0/4] lavd/avfoundation: Support muxed device types

2019-07-04 Thread Thilo Borgmann
Am 30.06.19 um 14:11 schrieb Thilo Borgmann: > Hi, > > some cleanup and $SUBJECT. > > Documentation and reindent follows afterwards. Will add docs and push with remarks from Moritz soonish - if there are no more comments coming in. -Thilo ___

Re: [FFmpeg-devel] [PATCH 1/4] avcodec/mediacodec_wrapper: add missing include

2019-07-04 Thread Matthieu Bouron
On Thu, Jul 04, 2019 at 04:03:42PM +0200, Nicolas George wrote: > Matthieu Bouron (12019-07-04): > > --- > > libavcodec/mediacodec_wrapper.h | 2 ++ > > 1 file changed, 2 insertions(+) > > > > diff --git a/libavcodec/mediacodec_wrapper.h > > b/libavcodec/mediacodec_wrapper.h > > index

Re: [FFmpeg-devel] [PATCH 1/4] avcodec/mediacodec_wrapper: add missing include

2019-07-04 Thread James Almer
On 7/4/2019 10:43 AM, Matthieu Bouron wrote: > --- > libavcodec/mediacodec_wrapper.h | 2 ++ > 1 file changed, 2 insertions(+) > > diff --git a/libavcodec/mediacodec_wrapper.h b/libavcodec/mediacodec_wrapper.h > index f0de16d669..58e5dc7d39 100644 > --- a/libavcodec/mediacodec_wrapper.h > +++

Re: [FFmpeg-devel] [PATCH 1/4] avcodec/mediacodec_wrapper: add missing include

2019-07-04 Thread Nicolas George
Matthieu Bouron (12019-07-04): > --- > libavcodec/mediacodec_wrapper.h | 2 ++ > 1 file changed, 2 insertions(+) > > diff --git a/libavcodec/mediacodec_wrapper.h b/libavcodec/mediacodec_wrapper.h > index f0de16d669..58e5dc7d39 100644 > --- a/libavcodec/mediacodec_wrapper.h > +++

[FFmpeg-devel] [PATCH 4/4] avcodec/mediacodec_wrapper: remove unused local variables in ff_AMediaCodec_getCodecNameByType()

2019-07-04 Thread Matthieu Bouron
--- libavcodec/mediacodec_wrapper.c | 10 -- 1 file changed, 10 deletions(-) diff --git a/libavcodec/mediacodec_wrapper.c b/libavcodec/mediacodec_wrapper.c index 70e1e7cae1..5213cf640a 100644 --- a/libavcodec/mediacodec_wrapper.c +++ b/libavcodec/mediacodec_wrapper.c @@ -392,8 +392,6 @@

[FFmpeg-devel] [PATCH 2/4] avcodec/mediacodec_wrapper: fix a local reference leak in ff_AMediaCodec_getName()

2019-07-04 Thread Matthieu Bouron
--- libavcodec/mediacodec_wrapper.c | 4 1 file changed, 4 insertions(+) diff --git a/libavcodec/mediacodec_wrapper.c b/libavcodec/mediacodec_wrapper.c index a024e3bdb1..e2df07cb41 100644 --- a/libavcodec/mediacodec_wrapper.c +++ b/libavcodec/mediacodec_wrapper.c @@ -1337,6 +1337,10 @@ char

[FFmpeg-devel] [PATCH 1/4] avcodec/mediacodec_wrapper: add missing include

2019-07-04 Thread Matthieu Bouron
--- libavcodec/mediacodec_wrapper.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/libavcodec/mediacodec_wrapper.h b/libavcodec/mediacodec_wrapper.h index f0de16d669..58e5dc7d39 100644 --- a/libavcodec/mediacodec_wrapper.h +++ b/libavcodec/mediacodec_wrapper.h @@ -26,6 +26,8 @@ #include

[FFmpeg-devel] [PATCH 3/4] avcodec/mediacodec_wrapper: fix a potential local reference leak in ff_AMediaCodec_getCodecNameByType()

2019-07-04 Thread Matthieu Bouron
--- libavcodec/mediacodec_wrapper.c | 5 + 1 file changed, 5 insertions(+) diff --git a/libavcodec/mediacodec_wrapper.c b/libavcodec/mediacodec_wrapper.c index e2df07cb41..70e1e7cae1 100644 --- a/libavcodec/mediacodec_wrapper.c +++ b/libavcodec/mediacodec_wrapper.c @@ -469,6 +469,11 @@ char

Re: [FFmpeg-devel] [PATCH V2 1/2] doc/muxers: fix and update docs for HLS muxer

2019-07-04 Thread Steven Liu
> 在 2019年7月4日,下午7:35,Gyan 写道: > > > >> On 04-07-2019 03:50 PM, Liu Steven wrote: >> >>> 在 2019年7月4日,下午6:15,Gyan 写道: >>> >>> >>> >>> On 04-07-2019 02:37 PM, Liu Steven wrote: > 在 2019年7月4日,下午4:49,Gyan 写道: > > > >> On 28-06-2019 08:36 PM, Jun Zhao wrote: >>

Re: [FFmpeg-devel] [PATCH V2 2/2] doc/muxers: fix docs format for DASH muxer

2019-07-04 Thread myp...@gmail.com
On Thu, Jul 4, 2019 at 4:52 PM Gyan wrote: > > > > On 28-06-2019 08:36 PM, Jun Zhao wrote: > > From: Jun Zhao > > > > fix docs format for DASH muxer > > > > Signed-off-by: Jun Zhao > > --- > > doc/muxers.texi | 62 > > -- > > 1 files

Re: [FFmpeg-devel] [PATCH V2 1/2] doc/muxers: fix and update docs for HLS muxer

2019-07-04 Thread Gyan
On 04-07-2019 03:50 PM, Liu Steven wrote: 在 2019年7月4日,下午6:15,Gyan 写道: On 04-07-2019 02:37 PM, Liu Steven wrote: 在 2019年7月4日,下午4:49,Gyan 写道: On 28-06-2019 08:36 PM, Jun Zhao wrote: From: Jun Zhao fix and update docs for HLS muxer Signed-off-by: Jun Zhao --- doc/muxers.texi |

Re: [FFmpeg-devel] [PATCH V2 1/2] doc/muxers: fix and update docs for HLS muxer

2019-07-04 Thread Liu Steven
> 在 2019年7月4日,下午6:15,Gyan 写道: > > > > On 04-07-2019 02:37 PM, Liu Steven wrote: >> >>> 在 2019年7月4日,下午4:49,Gyan 写道: >>> >>> >>> >>> On 28-06-2019 08:36 PM, Jun Zhao wrote: From: Jun Zhao fix and update docs for HLS muxer Signed-off-by: Jun Zhao ---

Re: [FFmpeg-devel] [PATCH V2 1/2] doc/muxers: fix and update docs for HLS muxer

2019-07-04 Thread Gyan
On 04-07-2019 02:37 PM, Liu Steven wrote: 在 2019年7月4日,下午4:49,Gyan 写道: On 28-06-2019 08:36 PM, Jun Zhao wrote: From: Jun Zhao fix and update docs for HLS muxer Signed-off-by: Jun Zhao --- doc/muxers.texi | 24 1 files changed, 16 insertions(+), 8

Re: [FFmpeg-devel] [PATCH V2 1/2] doc/muxers: fix and update docs for HLS muxer

2019-07-04 Thread Liu Steven
> 在 2019年7月4日,下午4:49,Gyan 写道: > > > > On 28-06-2019 08:36 PM, Jun Zhao wrote: >> From: Jun Zhao >> >> fix and update docs for HLS muxer >> >> Signed-off-by: Jun Zhao >> --- >> doc/muxers.texi | 24 >> 1 files changed, 16 insertions(+), 8 deletions(-) >> >>

Re: [FFmpeg-devel] [PATCH V2 2/2] doc/muxers: fix docs format for DASH muxer

2019-07-04 Thread Gyan
On 28-06-2019 08:36 PM, Jun Zhao wrote: From: Jun Zhao fix docs format for DASH muxer Signed-off-by: Jun Zhao --- doc/muxers.texi | 62 -- 1 files changed, 32 insertions(+), 30 deletions(-) diff --git a/doc/muxers.texi

Re: [FFmpeg-devel] [PATCH V2 1/2] doc/muxers: fix and update docs for HLS muxer

2019-07-04 Thread Gyan
On 28-06-2019 08:36 PM, Jun Zhao wrote: From: Jun Zhao fix and update docs for HLS muxer Signed-off-by: Jun Zhao --- doc/muxers.texi | 24 1 files changed, 16 insertions(+), 8 deletions(-) diff --git a/doc/muxers.texi b/doc/muxers.texi index dd64672..d179584

Re: [FFmpeg-devel] [PATCH] movenc: fix warning if CONFIG_AC3_PARSER not defined

2019-07-04 Thread Alfred E. Heggestad
On 03/07/2019 21:28, Michael Niedermayer wrote: On Tue, Jul 02, 2019 at 02:19:37PM +0200, Alfred E. Heggestad wrote: this patch fixes a compiler warning if CONFIG_AC3_PARSER is not defined. The label 'end' is removed and all the code use the label 'err' instead. What compiler warning (this