[FFmpeg-devel] [PATCH] Ignore expired cookies

2017-02-11 Thread Micah Galizia
--- libavformat/http.c | 36 +++- 1 file changed, 35 insertions(+), 1 deletion(-) diff --git a/libavformat/http.c b/libavformat/http.c index 944a6cf..24368aa 100644 --- a/libavformat/http.c +++ b/libavformat/http.c @@ -682,12 +682,46 @@ static int

[FFmpeg-devel] [PATCH] Ignore expired cookies

2017-02-11 Thread Micah Galizia
This one fixes the memory leak -- sorry for all the spam. ___ ffmpeg-devel mailing list ffmpeg-devel@ffmpeg.org http://ffmpeg.org/mailman/listinfo/ffmpeg-devel

[FFmpeg-devel] [PATCH] Ignore expired cookies

2017-02-11 Thread Micah Galizia
Signed-off-by: Micah Galizia --- libavformat/http.c | 34 +- 1 file changed, 33 insertions(+), 1 deletion(-) diff --git a/libavformat/http.c b/libavformat/http.c index 944a6cf..e7b8ac3 100644 --- a/libavformat/http.c +++

[FFmpeg-devel] [PATCH] Ignore expired cookies

2017-02-11 Thread Micah Galizia
Appologies, gmail screwed up the patch. ___ ffmpeg-devel mailing list ffmpeg-devel@ffmpeg.org http://ffmpeg.org/mailman/listinfo/ffmpeg-devel

[FFmpeg-devel] [PATCH] Ignore expired cookies

2017-02-11 Thread Micah Galizia
Hello, On some authenticated Neulion streams, they send a cookie from the past, like so: Set-Cookie: nlqptid=""; Domain=.neulion.com; Expires=Thu, 01-Jan-1970 00:00:10 GMT; Path=/ As a result, the good cookie value is overwritten and authentication breaks immediately. I realise disqualifying a

Re: [FFmpeg-devel] [PATCH] avformat/hlsenc: fix stream level metadata handling

2017-02-11 Thread Steven Liu
2017-02-12 5:31 GMT+08:00 Bodecs Bela : > Dear All, > > hls-encoder currently does not provide stream level metadata to mpegts > muxer. This patch also fixes track #3848 bug. > > Please review this bug fix. Thank you in advance. > > > best regards, > > Bela Bodecs > > >

Re: [FFmpeg-devel] [PATCH] lavc/libzvbi: remove deprecated API usage

2017-02-11 Thread Carl Eugen Hoyos
2017-02-12 0:23 GMT+01:00 Josh de Kock : > -if (!vbi_event_handler_add(ctx->vbi, VBI_EVENT_TTX_PAGE, handler, > ctx)) { > +if (!vbi_event_handler_register(ctx->vbi, VBI_EVENT_TTX_PAGE, > handler, ctx)) { > vbi_decoder_delete(ctx->vbi); >

[FFmpeg-devel] [PATCH] lavc/libzvbi: remove deprecated API usage

2017-02-11 Thread Josh de Kock
Signed-off-by: Josh de Kock --- libavcodec/libzvbi-teletextdec.c | 10 +++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/libavcodec/libzvbi-teletextdec.c b/libavcodec/libzvbi-teletextdec.c index d1f0a9f..2ed4a82 100644 ---

[FFmpeg-devel] [PATCH] avformat/hlsenc: fix stream level metadata handling

2017-02-11 Thread Bodecs Bela
Dear All, hls-encoder currently does not provide stream level metadata to mpegts muxer. This patch also fixes track #3848 bug. Please review this bug fix. Thank you in advance. best regards, Bela Bodecs >From 06a5e2dff962d0e2127ddbb00f6bd8a3d03d3e51 Mon Sep 17 00:00:00 2001 From: Bela

[FFmpeg-devel] deduplicated [PATCH] Cinepak: speed up decoding several-fold, depending on the scenario, by supporting multiple output pixel formats.

2017-02-11 Thread u-9iep
Hello, This is my best effort attempt to make the patch acceptable by the upstream's criteria. Daniel, do you mind that I referred to your message in the commit? I believe is is best to indicate numbers from a third party measurement. The code seems to be equvalent to the previous patch, with

Re: [FFmpeg-devel] [PATCH] MAINTAINERS: Add ffmpeg-security alias members

2017-02-11 Thread Paul B Mahol
On 2/10/17, Michael Niedermayer wrote: > Iam listing the reason for each, this is mostly my oppinion and i didnt ask > most > if they agree with the listed reason to be listed with their name, so its > largly > my oppinion. Which is why i will remove the reasons before

Re: [FFmpeg-devel] [RFC/PATCH]lavf/omadec: Fix timestamps for Atrac 3 lossless

2017-02-11 Thread Carl Eugen Hoyos
2017-02-11 18:58 GMT+01:00 Paul B Mahol : > On 2/11/17, Carl Eugen Hoyos wrote: >> 2017-02-11 18:25 GMT+01:00 Paul B Mahol : >>> On 2/11/17, Carl Eugen Hoyos wrote: 2017-02-11 14:32 GMT+01:00 Paul B Mahol

Re: [FFmpeg-devel] [RFC/PATCH]lavf/omadec: Fix timestamps for Atrac 3 lossless

2017-02-11 Thread Paul B Mahol
On 2/11/17, Carl Eugen Hoyos wrote: > 2017-02-11 18:25 GMT+01:00 Paul B Mahol : >> On 2/11/17, Carl Eugen Hoyos wrote: >>> 2017-02-11 14:32 GMT+01:00 Paul B Mahol : On 2/11/17, Carl Eugen Hoyos

Re: [FFmpeg-devel] [RFC/PATCH]lavf/omadec: Fix timestamps for Atrac 3 lossless

2017-02-11 Thread Carl Eugen Hoyos
2017-02-11 18:25 GMT+01:00 Paul B Mahol : > On 2/11/17, Carl Eugen Hoyos wrote: >> 2017-02-11 14:32 GMT+01:00 Paul B Mahol : >>> On 2/11/17, Carl Eugen Hoyos wrote: >> Attached patch fixes timestamps and duration for

Re: [FFmpeg-devel] [PATCH] avformat/mpl2dec: skip BOM when probing

2017-02-11 Thread Clément Bœsch
On Sat, Feb 11, 2017 at 11:56:07AM +0100, Paul B Mahol wrote: > Signed-off-by: Paul B Mahol > --- > libavformat/mpl2dec.c | 8 > 1 file changed, 8 insertions(+) > > diff --git a/libavformat/mpl2dec.c b/libavformat/mpl2dec.c > index 59589d5..0e30cb0 100644 > ---

Re: [FFmpeg-devel] [RFC/PATCH]lavf/omadec: Fix timestamps for Atrac 3 lossless

2017-02-11 Thread Paul B Mahol
On 2/11/17, Carl Eugen Hoyos wrote: > 2017-02-11 14:32 GMT+01:00 Paul B Mahol : >> On 2/11/17, Carl Eugen Hoyos wrote: > >>> Attached patch fixes timestamps and duration for >>> atrac_3_lossless_132kbps.aa3 >>> from ticket #5334, the only

Re: [FFmpeg-devel] [PATCH 1/2] AVFrame: add an opaque_ref field

2017-02-11 Thread Michael Niedermayer
On Sat, Feb 11, 2017 at 02:17:36PM +0100, wm4 wrote: > This is an extended version of the AVFrame.opaque field, which can be > used to attach arbitrary user information to an AVFrame. > > The usefulness of the opaque field is rather limited, because it can > store only up to 32 bits of

Re: [FFmpeg-devel] [RFC/PATCH]lavf/omadec: Fix timestamps for Atrac 3 lossless

2017-02-11 Thread Carl Eugen Hoyos
2017-02-11 14:32 GMT+01:00 Paul B Mahol : > On 2/11/17, Carl Eugen Hoyos wrote: >> Attached patch fixes timestamps and duration for >> atrac_3_lossless_132kbps.aa3 >> from ticket #5334, the only Atrac 3 lossless sample I have. >> >> Please comment, Carl Eugen

[FFmpeg-devel] [PATCH]lavf/mpegts: Make a pointer cast explicit to silence a warning

2017-02-11 Thread Carl Eugen Hoyos
Hi! Attached patch silences a warning, don't know what is preferred here. Please comment, Carl Eugen From a196a316697eae495ffe51a917bd0a813bb944f4 Mon Sep 17 00:00:00 2001 From: Carl Eugen Hoyos Date: Sat, 11 Feb 2017 16:53:34 +0100 Subject: [PATCH] lavf/mpegts: Make a pointer

Re: [FFmpeg-devel] [PATCH v2 5/5] opus: add a native Opus encoder

2017-02-11 Thread Rostislav Pehlivanov
On 11 February 2017 at 00:25, Rostislav Pehlivanov wrote: > This marks the first time anyone has written an Opus encoder without > using any libopus code. The aim of the encoder is to prove how far > the format can go by writing the craziest encoder for it. > > Right now the

Re: [FFmpeg-devel] [PATCH]lavf/omadec: Remove an unused variable

2017-02-11 Thread Carl Eugen Hoyos
2017-02-11 14:32 GMT+01:00 Paul B Mahol : > On 2/11/17, Carl Eugen Hoyos wrote: >> Hi! >> >> Attached patch fixes a compilation warning. >> >> Please comment, Carl Eugen >> > > patch lgtm Patch applied. Thank you, Carl Eugen

Re: [FFmpeg-devel] [RFC/PATCH]lavf/omadec: Fix timestamps for Atrac 3 lossless

2017-02-11 Thread Paul B Mahol
On 2/11/17, Carl Eugen Hoyos wrote: > Hi! > > Attached patch fixes timestamps and duration for > atrac_3_lossless_132kbps.aa3 > from ticket #5334, the only Atrac 3 lossless sample I have. > > Please comment, Carl Eugen > This is wrong thing to do, packets duration should be

Re: [FFmpeg-devel] [PATCH]lavf/omadec: Remove an unused variable

2017-02-11 Thread Paul B Mahol
On 2/11/17, Carl Eugen Hoyos wrote: > Hi! > > Attached patch fixes a compilation warning. > > Please comment, Carl Eugen > patch lgtm ___ ffmpeg-devel mailing list ffmpeg-devel@ffmpeg.org

[FFmpeg-devel] [PATCH 2/2] hwcontext_dxva2: support D3D9Ex

2017-02-11 Thread wm4
D3D9Ex uses different driver paths. This helps with "headless" configurations when no user logs in. Plain D3D9 device creation will fail if no user is logged in, while it works with D3D9Ex. Signed-off-by: Anton Khirnov Merges Libav commit c2f97f0508708. ---

[FFmpeg-devel] [PATCH 1/2] AVFrame: add an opaque_ref field

2017-02-11 Thread wm4
This is an extended version of the AVFrame.opaque field, which can be used to attach arbitrary user information to an AVFrame. The usefulness of the opaque field is rather limited, because it can store only up to 32 bits of information (or 64 bit on 64 bit systems). It's not possible to set this

[FFmpeg-devel] [PATCH 0/2] Two minor Libav merges

2017-02-11 Thread wm4
It seems it makes merging easier if we cherry-pick Libav commits and push them early, instead of letting whoever does the merges do the work. So I'm merging 2 of my Libav commits. wm4 (2): AVFrame: add an opaque_ref field hwcontext_dxva2: support D3D9Ex doc/APIchanges | 3 ++

[FFmpeg-devel] [RFC/PATCH]lavf/omadec: Fix timestamps for Atrac 3 lossless

2017-02-11 Thread Carl Eugen Hoyos
Hi! Attached patch fixes timestamps and duration for atrac_3_lossless_132kbps.aa3 from ticket #5334, the only Atrac 3 lossless sample I have. Please comment, Carl Eugen From d1a22a151cc02fc475710c20576ecbed7c66aeac Mon Sep 17 00:00:00 2001 From: Carl Eugen Hoyos Date: Sat, 11

[FFmpeg-devel] [PATCH]lavf/omadec: Remove an unused variable

2017-02-11 Thread Carl Eugen Hoyos
Hi! Attached patch fixes a compilation warning. Please comment, Carl Eugen From bce13fbff1b9394fd3e89c7387f9d96e43934fb0 Mon Sep 17 00:00:00 2001 From: Carl Eugen Hoyos Date: Sat, 11 Feb 2017 13:17:20 +0100 Subject: [PATCH] lavf/omadec: Remove an unsed variable. ---

Re: [FFmpeg-devel] [RFC] ffmpeg security

2017-02-11 Thread Steven Liu
2017-02-11 19:05 GMT+08:00 Michael Niedermayer : > On Sat, Feb 11, 2017 at 11:57:31AM +0800, Steven Liu wrote: > > 2017-02-11 11:14 GMT+08:00 Michael Niedermayer : > > > > > On Fri, Feb 10, 2017 at 04:43:17PM -0300, James Almer wrote: > > > > On

Re: [FFmpeg-devel] GSoC 2017

2017-02-11 Thread Michael Niedermayer
Hi all On Mon, Jan 23, 2017 at 03:39:09PM +0100, Michael Niedermayer wrote: > Hi all just wanted to remind all that during February 10 - 26Google program administrators review organization applications the ideas page already looks quite good but any improvments you can do to it should

Re: [FFmpeg-devel] [PATCH] avformat/mpl2dec: skip BOM when probing

2017-02-11 Thread Carl Eugen Hoyos
2017-02-11 11:56 GMT+01:00 Paul B Mahol : > Signed-off-by: Paul B Mahol Please mention ticket #5442. Thank you, Carl Eugen ___ ffmpeg-devel mailing list ffmpeg-devel@ffmpeg.org

Re: [FFmpeg-devel] [RFC] ffmpeg security

2017-02-11 Thread Michael Niedermayer
On Sat, Feb 11, 2017 at 11:57:31AM +0800, Steven Liu wrote: > 2017-02-11 11:14 GMT+08:00 Michael Niedermayer : > > > On Fri, Feb 10, 2017 at 04:43:17PM -0300, James Almer wrote: > > > On 2/10/2017 4:03 PM, Michael Niedermayer wrote: > > > > Hi community > > > > > > > >

[FFmpeg-devel] [PATCH] avformat/mpl2dec: skip BOM when probing

2017-02-11 Thread Paul B Mahol
Signed-off-by: Paul B Mahol --- libavformat/mpl2dec.c | 8 1 file changed, 8 insertions(+) diff --git a/libavformat/mpl2dec.c b/libavformat/mpl2dec.c index 59589d5..0e30cb0 100644 --- a/libavformat/mpl2dec.c +++ b/libavformat/mpl2dec.c @@ -23,6 +23,8 @@ * MPL2