Re: [FFmpeg-devel] [PATCH] avfilter/window_func: use a constant instead of acosh()

2016-08-19 Thread Paul B Mahol
On Saturday, August 20, 2016, James Almer wrote: > Should fix compilation with non C99 compilers like msvc 2012, where > acosh() is not available. > > Signed-off-by: James Almer > > --- > A fallback function like > > static av_always_inline

[FFmpeg-devel] [PATCH] avfilter/window_func: use a constant instead of acosh()

2016-08-19 Thread James Almer
Should fix compilation with non C99 compilers like msvc 2012, where acosh() is not available. Signed-off-by: James Almer --- A fallback function like static av_always_inline double acosh(double x) { return log(x + sqrt((x * x) - 1.0)); } could be added to libm.h if

Re: [FFmpeg-devel] [PATCH] configure: force _WIN32_WINNT >= 0x0502 on mingw32 targets

2016-08-19 Thread Michael Niedermayer
On Fri, Aug 19, 2016 at 03:39:58PM -0300, James Almer wrote: > Windows versions earlier than XP are not supported. > > Should fix compilation of command line tools. > > Signed-off-by: James Almer > --- > configure | 2 ++ > 1 file changed, 2 insertions(+) Tested-by: michael

Re: [FFmpeg-devel] [PATCH] configure: force _WIN32_WINNT >= 0x0502 on mingw32 targets

2016-08-19 Thread James Almer
On 8/19/2016 6:13 PM, Hendrik Leppkes wrote: > On Fri, Aug 19, 2016 at 10:24 PM, James Almer wrote: >> On 8/19/2016 5:11 PM, Hendrik Leppkes wrote: >>> On Fri, Aug 19, 2016 at 8:39 PM, James Almer wrote: Windows versions earlier than XP are not

Re: [FFmpeg-devel] [PATCH] configure: force _WIN32_WINNT >= 0x0502 on mingw32 targets

2016-08-19 Thread Hendrik Leppkes
On Fri, Aug 19, 2016 at 10:24 PM, James Almer wrote: > On 8/19/2016 5:11 PM, Hendrik Leppkes wrote: >> On Fri, Aug 19, 2016 at 8:39 PM, James Almer wrote: >>> Windows versions earlier than XP are not supported. >>> >>> Should fix compilation of command line

Re: [FFmpeg-devel] [PATCH] configure: force _WIN32_WINNT >= 0x0502 on mingw32 targets

2016-08-19 Thread James Almer
On 8/19/2016 5:11 PM, Hendrik Leppkes wrote: > On Fri, Aug 19, 2016 at 8:39 PM, James Almer wrote: >> Windows versions earlier than XP are not supported. >> >> Should fix compilation of command line tools. >> >> Signed-off-by: James Almer >> --- >>

Re: [FFmpeg-devel] [PATCH] configure: force _WIN32_WINNT >= 0x0502 on mingw32 targets

2016-08-19 Thread Hendrik Leppkes
On Fri, Aug 19, 2016 at 8:39 PM, James Almer wrote: > Windows versions earlier than XP are not supported. > > Should fix compilation of command line tools. > > Signed-off-by: James Almer > --- > configure | 2 ++ > 1 file changed, 2 insertions(+) > > diff

Re: [FFmpeg-devel] [PATCH 1/4] V7 - Adding SCTE-35 CUI codec

2016-08-19 Thread Michael Niedermayer
On Fri, Aug 19, 2016 at 10:45:27AM -0700, Carlos Fernandez Sanz wrote: > From: Carlos Fernandez > > Signed-off-by: Carlos Fernandez > --- > libavcodec/avcodec.h| 1 + > libavcodec/codec_desc.c | 6 ++ > 2 files changed, 7 insertions(+) >

[FFmpeg-devel] [PATCH] configure: force _WIN32_WINNT >= 0x0502 on mingw32 targets

2016-08-19 Thread James Almer
Windows versions earlier than XP are not supported. Should fix compilation of command line tools. Signed-off-by: James Almer --- configure | 2 ++ 1 file changed, 2 insertions(+) diff --git a/configure b/configure index 9b92426..2a2c06e 100755 --- a/configure +++

Re: [FFmpeg-devel] Outreachy 2016 december

2016-08-19 Thread Michael Niedermayer
On Fri, Aug 19, 2016 at 11:12:20AM +0200, Paul B Mahol wrote: > On 8/18/16, Michael Niedermayer wrote: > > On Thu, Aug 18, 2016 at 11:27:49PM +0530, Umair Khan wrote: > >> On Wed, Aug 17, 2016 at 9:54 PM, Michael Niedermayer > >> wrote: > >> > On

[FFmpeg-devel] [PATCH 3/4] V7 - SCTE-35 support in hlsenc

2016-08-19 Thread Carlos Fernandez Sanz
From: Carlos Fernandez Signed-off-by: Carlos Fernandez --- libavformat/Makefile | 2 +- libavformat/hlsenc.c | 107 -- libavformat/scte_35.c | 527 ++ libavformat/scte_35.h | 86

[FFmpeg-devel] [PATCH 2/4] V7 - SCTE-35 extraction from mpegts

2016-08-19 Thread Carlos Fernandez Sanz
From: Carlos Fernandez Signed-off-by: Carlos Fernandez --- libavformat/mpegts.c | 43 ++- 1 file changed, 42 insertions(+), 1 deletion(-) diff --git a/libavformat/mpegts.c b/libavformat/mpegts.c index

[FFmpeg-devel] [PATCH 4/4] V7 - Correct Indentation

2016-08-19 Thread Carlos Fernandez Sanz
From: Carlos Fernandez Signed-off-by: Carlos Fernandez --- libavformat/hlsenc.c | 10 +- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/libavformat/hlsenc.c b/libavformat/hlsenc.c index 7c90157..a73c50d 100644 ---

[FFmpeg-devel] [PATCH 1/4] V7 - Adding SCTE-35 CUI codec

2016-08-19 Thread Carlos Fernandez Sanz
From: Carlos Fernandez Signed-off-by: Carlos Fernandez --- libavcodec/avcodec.h| 1 + libavcodec/codec_desc.c | 6 ++ 2 files changed, 7 insertions(+) diff --git a/libavcodec/avcodec.h b/libavcodec/avcodec.h index 6ac6646..6cdb579 100644

[FFmpeg-devel] [PATCH 0/4] v7 - SCTE-35

2016-08-19 Thread Carlos Fernandez Sanz
* Corrects bug that caused crash on file matrixbench_mpeg2.mpg Carlos Fernandez (4): Adding SCTE-35 CUI codec SCTE-35 extraction from mpegts SCTE-35 support in hlsenc Correct Indentation libavcodec/avcodec.h| 1 + libavcodec/codec_desc.c | 6 + libavformat/Makefile| 2 +-

Re: [FFmpeg-devel] [PATCH 4/4] lavf/mov: Add support for edit list parsing.

2016-08-19 Thread Sasi Inguva
I don't know who the owner of MOV demuxer is. If somebody could do a deeper review of this patch and approve it that would be great. Thanks, Sasi On Wed, Aug 17, 2016 at 8:59 AM, Sasi Inguva wrote: > Thanks > > On Aug 17, 2016 6:25 AM, "Clément Bœsch" wrote: >

Re: [FFmpeg-devel] [GSoC] Motion Interpolation

2016-08-19 Thread Robert Krüger
On Fri, Aug 19, 2016 at 4:17 PM, Paul B Mahol wrote: > On 8/19/16, Davinder Singh wrote: > > On Fri, Aug 19, 2016 at 3:27 AM Paul B Mahol wrote: > > > >> On 8/18/16, Paul B Mahol wrote: > >> > On 8/18/16, Davinder

Re: [FFmpeg-devel] [PATCH] cmdutils: check for SetDllDirectory() availability

2016-08-19 Thread James Almer
On 8/19/2016 5:55 AM, Hendrik Leppkes wrote: > On Fri, Aug 19, 2016 at 7:01 AM, James Almer wrote: >> It's only available on Windows XP or newer. > > We don't support anything older. > > - Hendrik Then why aren't we forcing -D_WIN32_WINNT=0x0502 as a minimum during configure

Re: [FFmpeg-devel] [GSoC] Motion Interpolation

2016-08-19 Thread Paul B Mahol
On 8/19/16, Davinder Singh wrote: > On Fri, Aug 19, 2016 at 3:27 AM Paul B Mahol wrote: > >> On 8/18/16, Paul B Mahol wrote: >> > On 8/18/16, Davinder Singh wrote: >> >> On Thu, Aug 18, 2016 at 11:52 PM Paul B Mahol

Re: [FFmpeg-devel] [GSOC][PATCH 2/4] FFV1 p frames

2016-08-19 Thread Станислав Долганов
Fix some problems. 2016-08-18 21:50 GMT+03:00 Moritz Barsnick : > On Thu, Aug 18, 2016 at 14:49:28 +0300, Станислав Долганов wrote: > > > +static int decode_q_branch(FFV1Context *f, int level, int x, int y){ > > +RangeCoder *const c = >slice_context[0]->c; > > +

Re: [FFmpeg-devel] avformat/movenc: allow rewriting extradata

2016-08-19 Thread Michael Niedermayer
On Fri, Aug 19, 2016 at 04:35:59PM +0530, Umair Khan wrote: > Hi, > > On Fri, Aug 19, 2016 at 4:46 AM, Michael Niedermayer > wrote: > > On Thu, Aug 18, 2016 at 11:21:00AM +0530, Umair Khan wrote: > >> Hi, > >> > >> On Thu, Aug 18, 2016 at 2:10 AM, Umair Khan

Re: [FFmpeg-devel] PATCH: dshow prevent some windows 10 anniv. ed crashes

2016-08-19 Thread Roger Pack
No complaints, would someone please push it for me? Sorry still haven't figured out the key thing yet. On 8/16/16, Roger Pack wrote: > Windows 10 anniversary edition screwed with how dshow video capture works. > This patch "helps" in some instances, though it still crashes

Re: [FFmpeg-devel] [GSoC] Motion Interpolation

2016-08-19 Thread Moritz Barsnick
On Fri, Aug 19, 2016 at 11:19:22 +, Davinder Singh wrote: > > Same here and many other places. "!=" is a valid operator. ;) > > yes, that would be in case of == operator, not = operator, no? D'uh, stupid me, I missed that. Sorry! > will do. can you tell which is faster? I *believe*

Re: [FFmpeg-devel] [GSoC] Motion Interpolation

2016-08-19 Thread Davinder Singh
On Fri, Aug 19, 2016 at 3:27 AM Paul B Mahol wrote: > On 8/18/16, Paul B Mahol wrote: > > On 8/18/16, Davinder Singh wrote: > >> On Thu, Aug 18, 2016 at 11:52 PM Paul B Mahol wrote: > >> > >>> [...] > >>> > >> > >> i

Re: [FFmpeg-devel] [GSoC] Motion Interpolation

2016-08-19 Thread Davinder Singh
On Fri, Aug 19, 2016 at 1:50 AM Moritz Barsnick wrote: > On Thu, Aug 18, 2016 at 19:26:39 +, Davinder Singh wrote: > > > +@table @option > > +@item algo > > +Set the algorithm to be used. Accepts one of the following values: > > + > > +@table @samp > > +@item ebma > >

Re: [FFmpeg-devel] [PATCHv5] af_hdcd: Extract generic HDCD decoder, wrap for ffmpeg

2016-08-19 Thread Burt P.
I've reconsidered and I think this change may not be a good idea at this time. -- Burt ___ ffmpeg-devel mailing list ffmpeg-devel@ffmpeg.org http://ffmpeg.org/mailman/listinfo/ffmpeg-devel

Re: [FFmpeg-devel] avformat/movenc: allow rewriting extradata

2016-08-19 Thread Umair Khan
Hi, On Fri, Aug 19, 2016 at 4:46 AM, Michael Niedermayer wrote: > On Thu, Aug 18, 2016 at 11:21:00AM +0530, Umair Khan wrote: >> Hi, >> >> On Thu, Aug 18, 2016 at 2:10 AM, Umair Khan wrote: >> > On Thu, Aug 18, 2016 at 1:28 AM, James Almer

Re: [FFmpeg-devel] Outreachy 2016 december

2016-08-19 Thread Paul B Mahol
On 8/18/16, Michael Niedermayer wrote: > On Thu, Aug 18, 2016 at 11:27:49PM +0530, Umair Khan wrote: >> On Wed, Aug 17, 2016 at 9:54 PM, Michael Niedermayer >> wrote: >> > On Wed, Aug 17, 2016 at 09:16:16PM +0530, Umair Khan wrote: >> >> Hi, >> >>

Re: [FFmpeg-devel] [PATCH] cmdutils: check for SetDllDirectory() availability

2016-08-19 Thread Hendrik Leppkes
On Fri, Aug 19, 2016 at 7:01 AM, James Almer wrote: > It's only available on Windows XP or newer. We don't support anything older. - Hendrik ___ ffmpeg-devel mailing list ffmpeg-devel@ffmpeg.org

Re: [FFmpeg-devel] [PATCH]lavf/pcmdec: Map mime_type audio/L16 to the s16le demuxer

2016-08-19 Thread Carl Eugen Hoyos
Hi James! > Am 18.08.2016 um 06:47 schrieb James Almer : > >> On 8/17/2016 1:14 PM, Carl Eugen Hoyos wrote: >> Hi! >> >> 2016-08-17 17:32 GMT+02:00 Michael Niedermayer : +av_opt_get(s->pb, "mime_type", AV_OPT_SEARCH_CHILDREN, _type); +