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

2019-07-05 Thread Michael Niedermayer
On Sun, Jun 30, 2019 at 05:45:58PM -0300, 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 > --

Re: [FFmpeg-devel] [PATCH v4] avfilter/avf_aphasemeter: Add out-of-phase and mono detection

2019-07-05 Thread Michael Niedermayer
On Wed, Jul 03, 2019 at 03:33:46PM +0200, Romane Lafon wrote: > I've added documentation for the extension of aphasemeter filter. > Also, I'm not sure that "phasing" is the right word to describe the > detection. > doc/filters.texi | 32 ++ > libavfilter/avf_aphasemeter.c |

Re: [FFmpeg-devel] [PATCH v4] avfilter/avf_aphasemeter: Add out-of-phase and mono detection

2019-07-05 Thread Devin Heitmueller
On Wed, Jul 3, 2019 at 9:34 AM Romane Lafon wrote: > > I've added documentation for the extension of aphasemeter filter. > Also, I'm not sure that "phasing" is the right word to describe the > detection. In some commercial analyzers I've also seen audio phase presented using the term "lissajous"

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

2019-07-05 Thread Tomas Härdin
ons 2019-07-03 klockan 10:46 +0200 skrev Michael Niedermayer: > 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 Tue, Jul 02, 2019 at 08:42:43PM -0300, James Almer wrote: > > > > > > > > How many case

Re: [FFmpeg-devel] [PATCH] Ensure scaled video is divisible by n

2019-07-05 Thread Michael Niedermayer
On Wed, Jul 03, 2019 at 06:16:51PM +0200, Lars Kiesow wrote: > This patch adds a new option to the scale filter which ensures that the > output resolution is divisible by the given integer similar to using -n > in the `w` and `h` options. But this works even if the > `force_original_aspect_ratio` i

Re: [FFmpeg-devel] [PATCH 1/2] avformat/rpl: Fix detection of 8-bit linear formats

2019-07-05 Thread Michael Niedermayer
On Fri, Jun 14, 2019 at 08:51:33PM +0100, Cameron Cawley wrote: > Was previously broken by commit 8cf5f94. > Fixes ticket #7859 > > Signed-off-by: Cameron Cawley > --- > libavformat/rpl.c | 4 ++-- > 1 file changed, 2 insertions(+), 2 deletions(-) will apply patchset still a fate test should b

Re: [FFmpeg-devel] [PATCH 1/2] avcodec: Implement Acorn Replay IMA ADPCM decoder

2019-07-05 Thread Michael Niedermayer
On Thu, Jun 27, 2019 at 08:56:01PM +0100, Cameron Cawley wrote: > Signed-off-by: Cameron Cawley > --- > doc/general.texi| 1 + > libavcodec/Makefile | 1 + > libavcodec/adpcm.c | 14 ++ > libavcodec/allcodecs.c | 1 + > libavcodec/avcodec.h| 1 + > libavcodec

Re: [FFmpeg-devel] [PATCH 2/2] avformat/rpl: Calculate the duration of the video track

2019-07-05 Thread Michael Niedermayer
On Sun, Jun 30, 2019 at 12:00:44AM +0100, Cameron Cawley wrote: > --- > libavformat/rpl.c | 4 +++- > 1 file changed, 3 insertions(+), 1 deletion(-) > > diff --git a/libavformat/rpl.c b/libavformat/rpl.c > index 579ab4f57e..d31c7f09ad 100644 > --- a/libavformat/rpl.c > +++ b/libavformat/rpl.c > @

Re: [FFmpeg-devel] [PATCH 1/2] avformat/rpl: Replace strcpy with av_strlcpy

2019-07-05 Thread Michael Niedermayer
On Sun, Jun 30, 2019 at 12:00:43AM +0100, Cameron Cawley wrote: > --- > libavformat/rpl.c | 4 ++-- > 1 file changed, 2 insertions(+), 2 deletions(-) > > diff --git a/libavformat/rpl.c b/libavformat/rpl.c > index b4859320f4..579ab4f57e 100644 > --- a/libavformat/rpl.c > +++ b/libavformat/rpl.c >

Re: [FFmpeg-devel] [PATCH 1/2] avcodec: Implement Acorn Replay IMA ADPCM decoder

2019-07-05 Thread Cameron Cawley
Samples are available from http://riscos.com/ftp_space/370/files/diversions.zip (in the "AudioDemos" folder) and http://riscos.com/ftp_space/370/files/sound.zip (the files "1812" and "Enigma"). On Fri, 5 Jul 2019 at 17:16, Michael Niedermayer wrote: > On Thu, Jun 27, 2019 at 08:56:01PM +0100, Ca

[FFmpeg-devel] gdigrab: fix mouse position for multi-monitor setup with different scale settings

2019-07-05 Thread Dilshod Mukhtarov
Hi, This is the patch that fixes the drawing of cursor in incorrect position on Windows with multi-monitor setup with different scales on different monitors -- With the best regards, Dilshod >From 17f2a9b956d440bfedc38f8a6de50886de04b1dd Mon Sep 17 00:00:00 2001 From: Dilshod Muktharov Date

[FFmpeg-devel] gdigrab: fix HIDPI support for multi-monitor setup with different scale settings

2019-07-05 Thread Dilshod Mukhtarov
Hi, In Windows multi-monitor setup if there are different scales settings on different monitors then coordinates for videorecording  calculated not correct. Here is the patch that fixes this problem -- With the best regards, Dilshod >From 34ac7244b23ac2347a8e48b2ea2966cf69e1cf27 Mon Sep 17

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

2019-07-05 Thread James Almer
On 7/5/2019 11:13 AM, Michael Niedermayer wrote: > On Sun, Jun 30, 2019 at 05:45:58PM -0300, 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 -

[FFmpeg-devel] [PATCH v1] Config files for NetBeans IDE

2019-07-05 Thread Ulf Zibis
Hi, I have made excellent experience in using the NetBeans IDE for FFmpeg developement. So I like to share the customized configuration for this if people like to try it here: http://jugkoeln.de/Projects/ffmpeg/netbeans_1.patch The most impressing is the graphical debugger. The NetBeans IDE can

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

2019-07-05 Thread Michael Niedermayer
On Fri, Jul 05, 2019 at 05:01:33PM +0200, Tomas Härdin wrote: > ons 2019-07-03 klockan 10:46 +0200 skrev Michael Niedermayer: > > 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 Tue,

Re: [FFmpeg-devel] [PATCH v1] Config files for NetBeans IDE

2019-07-05 Thread Paul B Mahol
If this is meant to be applied to our tree I'm against. We do not need this bloat. On 7/5/19, Ulf Zibis wrote: > Hi, > > I have made excellent experience in using the NetBeans IDE for FFmpeg > developement. So I like to share the customized configuration for this > if people like to try it here:

Re: [FFmpeg-devel] [PATCH v1] Config files for NetBeans IDE

2019-07-05 Thread Kieran Kunhya
I would ignore what Paul says and perhaps start a Github project with your patch. I think it would be useful for developers using the NetBeans IDE. Kieran On Fri, 5 Jul 2019 at 23:33, Paul B Mahol wrote: > If this is meant to be applied to our tree I'm against. > We do not need this bloat. > >

Re: [FFmpeg-devel] [PATCH v1] Config files for NetBeans IDE

2019-07-05 Thread Ulf Zibis
It's not meant to apply to the tree, but you can put it somewhere on your site for people who like to work with NetBeans. -Ulf Am 06.07.19 um 00:03 schrieb Paul B Mahol: > If this is meant to be applied to our tree I'm against. > We do not need this bloat. > > On 7/5/19, Ulf Zibis wrote: >> Hi,

Re: [FFmpeg-devel] [PATCH] avcodec: Implement DM PAR Muxer/Demuxer

2019-07-05 Thread Andreas Rheinhardt
Tom Needham: > Samples are Available from > > https://transfernow.net/131xk9g4u0jt > > Signed-off-by: Thomas Needham <06needh...@gmail.com> > --- > Changelog |1 + > configure |7 + > libavformat/Makefile | 10 + > libavformat/adaudio.c

Re: [FFmpeg-devel] [PATCH] avcodec: Implement DM PAR Muxer/Demuxer

2019-07-05 Thread Hendrik Leppkes
On Fri, Jul 5, 2019 at 10:53 PM Tom Needham <06needh...@gmail.com> wrote: > > Samples are Available from > > https://transfernow.net/131xk9g4u0jt > > Signed-off-by: Thomas Needham <06needh...@gmail.com> > --- > Changelog |1 + > configure |7 + > lib