[FFmpeg-devel] [PATCH] Observe Set-Cookie headers in HLS streams

2017-04-08 Thread Micah Galizia
Signed-off-by: Micah Galizia --- libavformat/hls.c | 12 +--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/libavformat/hls.c b/libavformat/hls.c index bac53a4350..643d50e1da 100644 --- a/libavformat/hls.c +++ b/libavformat/hls.c @@ -630,8 +630,14

Re: [FFmpeg-devel] [PATCH] Observe Set-Cookie headers in HLS streams

2017-04-08 Thread Micah Galizia
Hi, This one gets rid of the check against AVFMT_FLAG_CUSTOM_IO. Let me know if anything else needs changing. Thanks, ___ ffmpeg-devel mailing list ffmpeg-devel@ffmpeg.org http://ffmpeg.org/mailman/listinfo/ffmpeg-devel

Re: [FFmpeg-devel] Patch: filter af_amix inputs

2017-04-08 Thread Michael Niedermayer
On Fri, Apr 07, 2017 at 07:51:55PM +0100, John Warburton wrote: > On Fri, Apr 7, 2017 at 10:25 AM, Michael Niedermayer > wrote: > > > > this patch is corrupted by linebreaks > > I'm sorry about that. It's attached to this email, from a file made by > git format-patch. > J

Re: [FFmpeg-devel] [PATCH 1/2] avcodec/dcadsp: Fix runtime error: signed integer overflow

2017-04-08 Thread Michael Niedermayer
On Fri, Apr 07, 2017 at 11:29:11PM +0200, Michael Niedermayer wrote: > Found-by: continuous fuzzing process > https://github.com/google/oss-fuzz/tree/master/targets/ffmpeg > Signed-off-by: Michael Niedermayer > --- > libavcodec/dcadsp.c | 2 +- > 1 file changed, 1

Re: [FFmpeg-devel] [PATCH 1/2] Ignore expired cookies

2017-04-08 Thread Micah Galizia
The original patch (possibly the implementation it replaced) had a bug that would include whitespace (eg: newline) when evaluating Set-Cookie values (eg: the domain). This is corrected in the modified version of that patch. Thanks ___ ffmpeg-devel

[FFmpeg-devel] [PATCH] Ignore expired cookies

2017-04-08 Thread Micah Galizia
Signed-off-by: Micah Galizia --- libavformat/http.c | 211 ++--- 1 file changed, 154 insertions(+), 57 deletions(-) diff --git a/libavformat/http.c b/libavformat/http.c index 293a8a7204..425711aab5 100644 ---

Re: [FFmpeg-devel] [PATCH] mjpegenc: enable optimal huffman coding by default

2017-04-08 Thread Rostislav Pehlivanov
On 5 April 2017 at 20:05, Michael Niedermayer wrote: > On Tue, Apr 04, 2017 at 04:10:39PM +0200, Michael Niedermayer wrote: > > On Tue, Apr 04, 2017 at 03:59:28PM +0200, Michael Niedermayer wrote: > > > On Tue, Apr 04, 2017 at 11:00:23AM +0100, Rostislav Pehlivanov wrote:

Re: [FFmpeg-devel] [PATCH 1/3] mjpegenc_common: check for codec ID before using avctx->priv_data

2017-04-08 Thread Rostislav Pehlivanov
On 5 April 2017 at 20:20, Michael Niedermayer wrote: > On Mon, Apr 03, 2017 at 09:13:28PM +0100, Rostislav Pehlivanov wrote: > > When coding lossless jpeg the priv context will be pointing to > LJpegEncContext > > rather than MpegEncContext, which the function expects. >

Re: [FFmpeg-devel] [PATCH 2/3] mjpegenc: disable huffman coding with AMV

2017-04-08 Thread Rostislav Pehlivanov
On 4 April 2017 at 00:08, Rostislav Pehlivanov wrote: > > > On 4 April 2017 at 00:02, Carl Eugen Hoyos wrote: > >> 2017-04-03 22:13 GMT+02:00 Rostislav Pehlivanov : >> >> > +if (s->huffman && avctx->codec_id == AV_CODEC_ID_AMV) {

Re: [FFmpeg-devel] [PATCH v13] avformat/dashdec: add dash demuxer base version

2017-04-08 Thread Andy Furniss
Steven Liu wrote: v13 fixed: 1. fix bug: cannot play: http://dash.edgesuite.net/akamai/bbb_30fps/bbb_30fps.mpd Great things seem to be working OK now. Is it possible to choose streams? There are some logging nits on the mpds I've tested. http logs per chunk No trailing CRLF found in HTTP

[FFmpeg-devel] [PATCH] tests/fate/filter-video: fix framerate filter tests

2017-04-08 Thread Marton Balint
Signed-off-by: Marton Balint --- tests/fate/filter-video.mak | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/fate/filter-video.mak b/tests/fate/filter-video.mak index b40422a..f185897 100644 --- a/tests/fate/filter-video.mak +++

[FFmpeg-devel] [PATCHv3] avfilter/vf_framerate: always request input if no output is provided in request_frame

2017-04-08 Thread Marton Balint
Fixes ticket #6285. Signed-off-by: Marton Balint --- libavfilter/vf_framerate.c | 42 ++ 1 file changed, 26 insertions(+), 16 deletions(-) diff --git a/libavfilter/vf_framerate.c b/libavfilter/vf_framerate.c index b4a74f7..dc8b05f 100644

[FFmpeg-devel] [PATCH v2] libavformat/tcp: fix return code for tcp_accept

2017-04-08 Thread Simon Thelen
ff_accept can return AVERROR(ETIMEDOUT) and errno will be 0 (or undefined), return ret instead and return ff_neterror() in ff_poll_interrupt instead of AVERROR(errno) to parse WSAGetLastError on Windows. --- v2 rewords the commit message to better elucidate the issue. libavformat/network.c | 2

[FFmpeg-devel] [PATCH] libavformat/tcp: fix return code for tcp_accept

2017-04-08 Thread Simon Thelen
ff_accept can return AVERROR(ETIMEDOUT) and errno will be 0 (or undefined), return ret instead and return ff_neterror() in ff_poll_interrupt instead of AVERROR(errno) in case of Windows shenanigans. --- libavformat/network.c | 2 +- libavformat/tcp.c | 2 +- 2 files changed, 2 insertions(+),

[FFmpeg-devel] [PATCH v13] avformat/dashdec: add dash demuxer base version

2017-04-08 Thread Steven Liu
ffmpeg need a dash demuxer for demux the dash formats base on https://github.com/samsamsam-iptvplayer/exteplayer3/blob/master/tmp/ffmpeg/patches/3.2.2/01_add_dash_demux.patch v2 fixed: 1. from autodetect to disabled 2. from camelCase code style to ffmpeg code style 3. from RepType to

[FFmpeg-devel] [PATCH] avcodec/cllc: add support for frame threads

2017-04-08 Thread Paul B Mahol
Signed-off-by: Paul B Mahol --- libavcodec/cllc.c | 24 1 file changed, 20 insertions(+), 4 deletions(-) diff --git a/libavcodec/cllc.c b/libavcodec/cllc.c index 80b0498..e0895d2 100644 --- a/libavcodec/cllc.c +++ b/libavcodec/cllc.c @@ -28,6 +28,7 @@

[FFmpeg-devel] [PATCH] avcodec/hqx: add support for frame threads

2017-04-08 Thread Paul B Mahol
Signed-off-by: Paul B Mahol --- libavcodec/hqx.c | 10 -- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/libavcodec/hqx.c b/libavcodec/hqx.c index 1bc123e..bc24ba9 100644 --- a/libavcodec/hqx.c +++ b/libavcodec/hqx.c @@ -27,6 +27,7 @@ #include