Re: [FFmpeg-devel] [PATCH 2/3] lavf/hls: don't copy empty options; silences HTTP CRLF warnings

2015-09-21 Thread wm4
On Sun, 20 Sep 2015 21:55:34 -0500 Rodger Combs wrote: > --- > libavformat/hls.c | 12 > 1 file changed, 8 insertions(+), 4 deletions(-) > > diff --git a/libavformat/hls.c b/libavformat/hls.c > index c16c770..a5073ff 100644 > --- a/libavformat/hls.c > +++ b/libavformat/hls.c > @@ -

Re: [FFmpeg-devel] [PATCH 3/3] lavf/hls: allow subtitles to be read despite incomplete handling

2015-09-21 Thread wm4
On Sun, 20 Sep 2015 21:55:35 -0500 Rodger Combs wrote: > This will give incorrect results in some cases due to not parsing segments > separately, but it works well enough in general that it seems worth enabling. > --- > libavformat/hls.c | 4 > 1 file changed, 4 deletions(-) > > diff --git

Re: [FFmpeg-devel] [PATCH] Revert "matroskaenc: refuse to write AAC without valid extradata"

2015-09-21 Thread Hendrik Leppkes
On Sun, Sep 20, 2015 at 8:13 PM, Vittorio Gambaletta wrote: > The patch created problems when remuxing TS files that contain AAC audio to > Matroska. > > Fixes: 51da7d02748c ("matroskaenc: refuse to write AAC without valid > extradata") > Signed-off-by: Vittorio Gambaletta > Simply reverting a

Re: [FFmpeg-devel] [PATCH] lavd/avfoundation: uses a queue to buffer audio and video samples

2015-09-21 Thread Thilo Borgmann
> Am 21.09.2015 um 08:05 schrieb Matthieu Bouron : > >> On 08/25/2015 10:45 AM, Matthieu Bouron wrote: >> From: Matthieu Bouron >> >> Tries to avoid losing frames when frames are not consumed quickly enough. >> >> Locking/Condition waiting is now performed with a NSConditionLock instead >> of

Re: [FFmpeg-devel] [PATCH 2/3] lavf/hls: don't copy empty options; silences HTTP CRLF warnings

2015-09-21 Thread Rodger Combs
> On Sep 21, 2015, at 02:39, wm4 wrote: > > On Sun, 20 Sep 2015 21:55:34 -0500 > Rodger Combs mailto:rodger.co...@gmail.com>> wrote: > >> --- >> libavformat/hls.c | 12 >> 1 file changed, 8 insertions(+), 4 deletions(-) >> >> diff --git a/libavformat/hls.c b/libavformat/hls.c >> in

Re: [FFmpeg-devel] [PATCH 2/3] lavf/hls: don't copy empty options; silences HTTP CRLF warnings

2015-09-21 Thread wm4
On Mon, 21 Sep 2015 03:37:46 -0500 Rodger Combs wrote: > > > On Sep 21, 2015, at 02:39, wm4 wrote: > > > > On Sun, 20 Sep 2015 21:55:34 -0500 > > Rodger Combs mailto:rodger.co...@gmail.com>> wrote: > > > >> --- > >> libavformat/hls.c | 12 > >> 1 file changed, 8 insertions(+), 4 d

Re: [FFmpeg-devel] [PATCH] Revert "matroskaenc: refuse to write AAC without valid extradata"

2015-09-21 Thread Vittorio Gambaletta (VittGam)
Il 21.09.2015 07:39:24 Ronald S. Bultje ha scritto: Is this still necessary if you use the adtstoaasc bitstream filter? Yes. Il 21.09.2015 09:45:55 Hendrik Leppkes ha scritto: Simply reverting and thus allowing broken files to be created once again is not a good idea. I recommend to properly

[FFmpeg-devel] [PATCH] avformat/vobsub: compare correct packet stream IDs

2015-09-21 Thread wm4
The stream ID is essentially an arbitrary number defined by the .idx file headers. They have to match the IDs in the .sub stream. The vobsub demuxer assumed the IDs would just start from 0, increassing by 1 for each stream. This is not correct. In the sample I had, the IDs were starting from 1, lea

Re: [FFmpeg-devel] [PATCH] Revert "matroskaenc: refuse to write AAC without valid extradata"

2015-09-21 Thread wm4
On Mon, 21 Sep 2015 11:57:11 +0200 "Vittorio Gambaletta (VittGam)" wrote: > Il 21.09.2015 07:39:24 Ronald S. Bultje ha scritto: > > Is this still necessary if you use the adtstoaasc bitstream filter? > > Yes. > > Il 21.09.2015 09:45:55 Hendrik Leppkes ha scritto: > > Simply reverting and thus a

Re: [FFmpeg-devel] [PATCH] Revert "matroskaenc: refuse to write AAC without valid extradata"

2015-09-21 Thread Hendrik Leppkes
On Mon, Sep 21, 2015 at 11:57 AM, Vittorio Gambaletta (VittGam) wrote: > Il 21.09.2015 07:39:24 Ronald S. Bultje ha scritto: >> >> Is this still necessary if you use the adtstoaasc bitstream filter? > > > Yes. > > Il 21.09.2015 09:45:55 Hendrik Leppkes ha scritto: >> >> Simply reverting and thus a

Re: [FFmpeg-devel] [PATCH] Revert "matroskaenc: refuse to write AAC without valid extradata"

2015-09-21 Thread Vittorio Gambaletta (VittGam)
On 21/09/2015 12:15:48 CEST, Hendrik Leppkes wrote: AAC without extradata is invalid, there is no discussion about that. As wm4 says, just because ffmpeg accepts it anyway doesn't really change that. Ok. So, how can I check that the resulting file actually has missing AAC extradata, despite ff

[FFmpeg-devel] [PATCH 2/4] lavu/opt: add flag to return NULL when applicable in av_opt_get

2015-09-21 Thread Rodger Combs
--- libavutil/opt.c | 12 ++-- libavutil/opt.h | 10 ++ libavutil/version.h | 2 +- 3 files changed, 21 insertions(+), 3 deletions(-) diff --git a/libavutil/opt.c b/libavutil/opt.c index ce80de0..4e6425d 100644 --- a/libavutil/opt.c +++ b/libavutil/opt.c @@ -666,12 +666,2

[FFmpeg-devel] [PATCH 1/4] lavu/opt: switch AV_OPT flags to shift-based formatting

2015-09-21 Thread Rodger Combs
--- libavutil/opt.h | 8 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/libavutil/opt.h b/libavutil/opt.h index d6d8df3..ef90e9c 100644 --- a/libavutil/opt.h +++ b/libavutil/opt.h @@ -553,22 +553,22 @@ int av_opt_eval_q (void *obj, const AVOption *o, const char *val, A

[FFmpeg-devel] [PATCH 4/4] lavf/hls: allow subtitles to be read despite incomplete handling

2015-09-21 Thread Rodger Combs
This will give incorrect results in some cases due to not parsing segments separately, so it currently requires -strict experimental. --- libavformat/hls.c | 7 +-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/libavformat/hls.c b/libavformat/hls.c index aa0e214..1ce53b3 100644

[FFmpeg-devel] [PATCH 3/4] lavf/hls: don't convert NULL options to empty strings; fixes HTTP CRLF warnings

2015-09-21 Thread Rodger Combs
--- libavformat/hls.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/libavformat/hls.c b/libavformat/hls.c index c16c770..aa0e214 100644 --- a/libavformat/hls.c +++ b/libavformat/hls.c @@ -1316,7 +1316,8 @@ static int save_avio_options(AVFormatContext *s) int ret = 0;

Re: [FFmpeg-devel] [PATCH] Revert "matroskaenc: refuse to write AAC without valid extradata"

2015-09-21 Thread wm4
On Mon, 21 Sep 2015 12:24:28 +0200 "Vittorio Gambaletta (VittGam)" wrote: > On 21/09/2015 12:15:48 CEST, Hendrik Leppkes wrote: > > AAC without extradata is invalid, there is no discussion about that. > > As wm4 says, just because ffmpeg accepts it anyway doesn't really change > > that. > > Ok.

Re: [FFmpeg-devel] [PATCH] configure: silence error if tput not found

2015-09-21 Thread Michael Niedermayer
On Sun, Sep 20, 2015 at 09:50:17PM -0400, Ganesh Ajjanagadde wrote: > If tput is not found for colorizing, error message should be squashed. > > Signed-off-by: Ganesh Ajjanagadde > --- > configure | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) applied thanks [...] -- Michael Gnu

Re: [FFmpeg-devel] [PATCH 1/4] lavu/opt: switch AV_OPT flags to shift-based formatting

2015-09-21 Thread Nicolas George
Le jour de la Récompense, an CCXXIII, Rodger Combs a écrit : > --- > libavutil/opt.h | 8 > 1 file changed, 4 insertions(+), 4 deletions(-) What is the benefit? I am a bit afraid it would make the merging work harder. Regards, -- Nicolas George __

Re: [FFmpeg-devel] [PATCH 2/4] lavu/opt: add flag to return NULL when applicable in av_opt_get

2015-09-21 Thread Nicolas George
Le jour de la Récompense, an CCXXIII, Rodger Combs a écrit : > --- > libavutil/opt.c | 12 ++-- > libavutil/opt.h | 10 ++ > libavutil/version.h | 2 +- > 3 files changed, 21 insertions(+), 3 deletions(-) I think this is a good idea. (I would even say it should be the de

Re: [FFmpeg-devel] [PATCH] avformat/vobsub: compare correct packet stream IDs

2015-09-21 Thread Michael Niedermayer
On Mon, Sep 21, 2015 at 12:09:08PM +0200, wm4 wrote: > The stream ID is essentially an arbitrary number defined by the .idx > file headers. They have to match the IDs in the .sub stream. The vobsub > demuxer assumed the IDs would just start from 0, increassing by 1 for > each stream. This is not co

Re: [FFmpeg-devel] [PATCH 2/3] avformat/vobsub: do not attempt to check duplicate subtitles

2015-09-21 Thread wm4
On Mon, 21 Sep 2015 08:47:03 +0200 Clément Bœsch wrote: > On Sun, Sep 20, 2015 at 11:29:52PM +0200, wm4 wrote: > > On Sun, 20 Sep 2015 22:59:17 +0200 > > Clément Bœsch wrote: > > > > > On Sun, Sep 20, 2015 at 04:12:37PM +0200, wm4 wrote: > > > > Some .idx files actually contain duplicate subtit

[FFmpeg-devel] [PATCH] avformat/hls: fix some cases of HLS streams which require cookies

2015-09-21 Thread wm4
Broken by commit ba12ba859aabfa7153ba397d869db13acdaba340. This only happens with HLS streams which use encryption and require preserving cookies sent by the server. Fixes trac issue #4846. --- Really stupid... --- libavformat/hls.c | 6 +- 1 file changed, 1 insertion(+), 5 deletions(-) diff

[FFmpeg-devel] [PATCH] avformat/http: detect end of received on chunked persistence

2015-09-21 Thread Schenk, Michael
Dear friends, we had a problem with an HLS server which was using chunked http transfer over persistence http connection. Even if we have received all data (chunksize = 0) the read of a m3u8 playlist was blocked till the server tears down the TCP connection. Please find attached a patch for avfor

Re: [FFmpeg-devel] [PATCHv3] avfilter/vf_chromakey: Add chromakey video filter

2015-09-21 Thread Timo Rothenpieler
>> +if (frame->format == AV_PIX_FMT_YUVA420P || frame->format == >> AV_PIX_FMT_YUVA422P) >> +x /= 2; >> + >> +if (frame->format == AV_PIX_FMT_YUVA420P) >> +y /= 2; > > Why not use the usual subsampling mechanism? (using vsub/hsub etc) That seemed more complex to me, as th

Re: [FFmpeg-devel] [PATCHv3] avfilter/vf_chromakey: Add chromakey video filter

2015-09-21 Thread Clément Bœsch
On Mon, Sep 21, 2015 at 03:51:37PM +0200, Timo Rothenpieler wrote: > >> +if (frame->format == AV_PIX_FMT_YUVA420P || frame->format == > >> AV_PIX_FMT_YUVA422P) > >> +x /= 2; > >> + > >> +if (frame->format == AV_PIX_FMT_YUVA420P) > >> +y /= 2; > > > > Why not use the usual

[FFmpeg-devel] [PATCH] avfilter: add tremolo filter

2015-09-21 Thread Kyle Swanson
Signed-off-by: Kyle Swanson --- doc/filters.texi | 19 + libavfilter/Makefile | 1 + libavfilter/af_tremolo.c | 177 +++ libavfilter/allfilters.c | 1 + libavfilter/version.h| 2 +- 5 files changed, 199 insertions(+), 1 deleti

Re: [FFmpeg-devel] [PATCH] avfilter: add tremolo filter

2015-09-21 Thread Kyle Swanson
I've made these changes and have re-submitted as a new patch. Thanks! On Sun, Sep 20, 2015 at 2:46 AM, Paul B Mahol wrote: > Dana 20. 9. 2015. 06:28 osoba "Kyle Swanson" napisala je: >> >> Signed-off-by: Kyle Swanson >> --- >> doc/filters.texi | 19 ++ >> libavfilter/Makefile

Re: [FFmpeg-devel] [PATCHv3] avfilter/vf_chromakey: Add chromakey video filter

2015-09-21 Thread Timo Rothenpieler
> Benefit would be to save 2 branching and 2 div (the div can already be > replaced by a shift here though - which would have a benefit since x & y > are signed) and keep the code generic. Changed it to a shift and moved the if() out of the loop. No observable performance benefit though. +

[FFmpeg-devel] [PATCH 1/2] avcodec/dvdsub: fix partial packet assembly

2015-09-21 Thread wm4
Assuming the first and second packets are partial, this would append the reassembly buffer (ctx->buf) to itself with the second append_to_cached_buf() call, because buf is set to ctx->buf. I do not know a valid sample file which triggers this, and do not know if packets can be split into more than

[FFmpeg-devel] [PATCH 2/2] avcodec/dvdsubdec: reject some broken packets

2015-09-21 Thread wm4
If cmd_pos is broken, this would just keep accumulating packets in the reassembly buffer, until it fails and flushes the buffer on overflow. Since packets are usually rather small, this will take a lot of subtitle packets. The perceived effect is that subtitles are not displayed anymore after the f

[FFmpeg-devel] [DECISION] Server "move"

2015-09-21 Thread Michael Niedermayer
Hi FFmpeg developers Currently we have a server at Hetzner for ~50 euro per month and one hosted by kieran for 0 euro per month we also have a sofar unused server hosted at telepoint.bg for 0 per month. This last server has been bought for the sole purpose of being used for FFmpeg as we asked for

Re: [FFmpeg-devel] [PATCH 1/4] lavu/opt: switch AV_OPT flags to shift-based formatting

2015-09-21 Thread Rodger Combs
> On Sep 21, 2015, at 05:49, Nicolas George wrote: > > Le jour de la Récompense, an CCXXIII, Rodger Combs a écrit : >> --- >> libavutil/opt.h | 8 >> 1 file changed, 4 insertions(+), 4 deletions(-) > > What is the benefit? I am a bit afraid it would make the merging work > harder. > >

Re: [FFmpeg-devel] [PATCH 2/4] lavu/opt: add flag to return NULL when applicable in av_opt_get

2015-09-21 Thread Rodger Combs
> On Sep 21, 2015, at 05:53, Nicolas George wrote: > > Le jour de la Récompense, an CCXXIII, Rodger Combs a écrit : >> --- >> libavutil/opt.c | 12 ++-- >> libavutil/opt.h | 10 ++ >> libavutil/version.h | 2 +- >> 3 files changed, 21 insertions(+), 3 deletions(-) > > I th

[FFmpeg-devel] [PATCH 1/2] lavu/opt: add flag to return NULL when applicable in av_opt_get

2015-09-21 Thread Rodger Combs
--- libavutil/opt.c | 12 ++-- libavutil/opt.h | 10 ++ libavutil/version.h | 2 +- 3 files changed, 21 insertions(+), 3 deletions(-) diff --git a/libavutil/opt.c b/libavutil/opt.c index ce80de0..03160c7 100644 --- a/libavutil/opt.c +++ b/libavutil/opt.c @@ -666,12 +666,2

[FFmpeg-devel] [PATCH 2/2] lavf/hls: don't convert NULL options to empty strings; fixes HTTP CRLF warnings

2015-09-21 Thread Rodger Combs
--- libavformat/hls.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavformat/hls.c b/libavformat/hls.c index c16c770..93ebf6a 100644 --- a/libavformat/hls.c +++ b/libavformat/hls.c @@ -1316,7 +1316,7 @@ static int save_avio_options(AVFormatContext *s) int ret = 0;

Re: [FFmpeg-devel] [PATCH] avfilter: add tremolo filter

2015-09-21 Thread Lou Logan
On Mon, 21 Sep 2015 10:16:43 -0500, Kyle Swanson wrote: > Signed-off-by: Kyle Swanson > --- > doc/filters.texi | 19 + > libavfilter/Makefile | 1 + > libavfilter/af_tremolo.c | 177 > +++ > libavfilter/allfilters.c | 1 + > libav

Re: [FFmpeg-devel] [PATCH 1/2] avcodec/dvdsub: fix partial packet assembly

2015-09-21 Thread Michael Niedermayer
On Mon, Sep 21, 2015 at 06:25:30PM +0200, wm4 wrote: > Assuming the first and second packets are partial, this would append the > reassembly buffer (ctx->buf) to itself with the second > append_to_cached_buf() call, because buf is set to ctx->buf. > > I do not know a valid sample file which trigge

[FFmpeg-devel] [WIP][RFC][PATCH] avfilter: add zscale filter

2015-09-21 Thread Paul B Mahol
Signed-off-by: Paul B Mahol --- configure| 4 + libavfilter/Makefile | 1 + libavfilter/allfilters.c | 1 + libavfilter/vf_zscale.c | 546 +++ 4 files changed, 552 insertions(+) create mode 100644 libavfilter/vf_zscale.c dif

Re: [FFmpeg-devel] [DECISION] Server "move"

2015-09-21 Thread Kieran Kunhya
> This "decision" thingy, is intended to confirm that > * Stuff should be moved to the telepoint server, possibly duplicates > should be left at/moved to the hetzner server for redundancy, if > this is technically possible (maybe it should be called copy instead > of move in that case) As di

Re: [FFmpeg-devel] [PATCH 1/2] avcodec/dvdsub: fix partial packet assembly

2015-09-21 Thread wm4
On Mon, 21 Sep 2015 21:15:23 +0200 Michael Niedermayer wrote: > On Mon, Sep 21, 2015 at 06:25:30PM +0200, wm4 wrote: > > Assuming the first and second packets are partial, this would append the > > reassembly buffer (ctx->buf) to itself with the second > > append_to_cached_buf() call, because buf

Re: [FFmpeg-devel] [DECISION] Server "move"

2015-09-21 Thread Ganesh Ajjanagadde
On Mon, Sep 21, 2015 at 3:27 PM, Kieran Kunhya wrote: >> This "decision" thingy, is intended to confirm that >> * Stuff should be moved to the telepoint server, possibly duplicates >> should be left at/moved to the hetzner server for redundancy, if >> this is technically possible (maybe it sho

Re: [FFmpeg-devel] [DECISION] Server "move"

2015-09-21 Thread Carl Eugen Hoyos
Michael Niedermayer gmx.at> writes: > This "decision" thingy, is intended to confirm that > * Stuff should be moved to the telepoint server, possibly duplicates > should be left at/moved to the hetzner server for redundancy, if > this is technically possible (maybe it should be called copy in

Re: [FFmpeg-devel] [WIP][RFC][PATCH] avfilter: add zscale filter

2015-09-21 Thread Carl Eugen Hoyos
Paul B Mahol gmail.com> writes: > +#include Where can I find this header? Carl Eugen ___ ffmpeg-devel mailing list ffmpeg-devel@ffmpeg.org http://ffmpeg.org/mailman/listinfo/ffmpeg-devel

Re: [FFmpeg-devel] [DECISION] Server "move"

2015-09-21 Thread Lou Logan
On Mon, 21 Sep 2015 15:43:08 -0400, Ganesh Ajjanagadde wrote: > By the way, I would also like to ask someone to put out the salient > outcomes (relevant to the project) of the VDD15 discussion on the > mailing list as a new thread. As it stands, I am completely in the > dark as to what happened at

Re: [FFmpeg-devel] [WIP][RFC][PATCH] avfilter: add zscale filter

2015-09-21 Thread Paul B Mahol
On 9/21/15, Carl Eugen Hoyos wrote: > Paul B Mahol gmail.com> writes: > >> +#include > > Where can I find this header? www://github.com/sekrit-twc/zimg ___ ffmpeg-devel mailing list ffmpeg-devel@ffmpeg.org http://ffmpeg.org/mailman/listinfo/ffmpeg-dev

Re: [FFmpeg-devel] [PATCH] avfilter: add tremolo filter

2015-09-21 Thread Paul B Mahol
On 9/21/15, Kyle Swanson wrote: > Signed-off-by: Kyle Swanson > --- > doc/filters.texi | 19 + > libavfilter/Makefile | 1 + > libavfilter/af_tremolo.c | 177 > +++ > libavfilter/allfilters.c | 1 + > libavfilter/version.h| 2

Re: [FFmpeg-devel] [WIP][RFC][PATCH] avfilter: add zscale filter

2015-09-21 Thread Carl Eugen Hoyos
Paul B Mahol gmail.com> writes: > On 9/21/15, Carl Eugen Hoyos ag.or.at> wrote: > > Paul B Mahol gmail.com> writes: > > > >> +#include > > > > Where can I find this header? > > www://github.com/sekrit-twc/zimg Thank you! Do you know how or if this is related to: https://github.com/buaazp/zi

Re: [FFmpeg-devel] [WIP][RFC][PATCH] avfilter: add zscale filter

2015-09-21 Thread Paul B Mahol
On 9/21/15, Carl Eugen Hoyos wrote: > Paul B Mahol gmail.com> writes: > >> On 9/21/15, Carl Eugen Hoyos ag.or.at> wrote: >> > Paul B Mahol gmail.com> writes: >> > >> >> +#include >> > >> > Where can I find this header? >> >> www://github.com/sekrit-twc/zimg > > Thank you! > > Do you know how o

Re: [FFmpeg-devel] [PATCH 2/2] avcodec/dvdsubdec: reject some broken packets

2015-09-21 Thread Michael Niedermayer
On Mon, Sep 21, 2015 at 06:25:31PM +0200, wm4 wrote: > If cmd_pos is broken, this would just keep accumulating packets in the > reassembly buffer, until it fails and flushes the buffer on overflow. > Since packets are usually rather small, this will take a lot of subtitle > packets. The perceived e

Re: [FFmpeg-devel] [WIP][RFC][PATCH] avfilter: add zscale filter

2015-09-21 Thread Carl Eugen Hoyos
Paul B Mahol gmail.com> writes: > www://github.com/sekrit-twc/zimg I fear that a working link is needed in the documentation of the filter. Carl Eugen ___ ffmpeg-devel mailing list ffmpeg-devel@ffmpeg.org http://ffmpeg.org/mailman/listinfo/ffmpeg-de

Re: [FFmpeg-devel] [WIP][RFC][PATCH] avfilter: add zscale filter

2015-09-21 Thread Paul B Mahol
On 9/21/15, Carl Eugen Hoyos wrote: > Paul B Mahol gmail.com> writes: > >> www://github.com/sekrit-twc/zimg > > I fear that a working link is needed in the > documentation of the filter. This link works fine. > > Carl Eugen > > ___ > ffmpeg-devel mail

Re: [FFmpeg-devel] [PATCH] avfilter: add tremolo filter

2015-09-21 Thread Kyle Swanson
> Doesn't produce similar output as sox. > > Looks like there is no need to use generate_wave_table > as phase is calculated differently, even tremolo from > tap plugins do something different. > > Can you elaborate this approach? This filter is just amplitude modulation. Just took a listen a

[FFmpeg-devel] [PATCH 2/4] lavc/aac_ac3_parser: style tweaks

2015-09-21 Thread Rodger Combs
--- libavcodec/aac_ac3_parser.c | 32 1 file changed, 16 insertions(+), 16 deletions(-) diff --git a/libavcodec/aac_ac3_parser.c b/libavcodec/aac_ac3_parser.c index 2f7d568..dfa951e 100644 --- a/libavcodec/aac_ac3_parser.c +++ b/libavcodec/aac_ac3_parser.c @@ -36,

[FFmpeg-devel] [PATCH 1/4] lavc/aacdec: handle case where extradata is set between init and first packet

2015-09-21 Thread Rodger Combs
--- libavcodec/aacdec_template.c | 8 1 file changed, 8 insertions(+) diff --git a/libavcodec/aacdec_template.c b/libavcodec/aacdec_template.c index c2d7d05..a999013 100644 --- a/libavcodec/aacdec_template.c +++ b/libavcodec/aacdec_template.c @@ -3118,6 +3118,14 @@ static int aac_decode_

[FFmpeg-devel] [PATCH 4/4] lavc: deprecate aac_adtstoasc BSF; remove warnings referencing it

2015-09-21 Thread Rodger Combs
--- doc/bitstream_filters.texi | 11 --- libavcodec/aac_adtstoasc_bsf.c | 74 ++ libavformat/flvenc.c | 6 libavformat/movenc.c | 6 4 files changed, 2 insertions(+), 95 deletions(-) diff --git a/doc/bitstream_filters

[FFmpeg-devel] [PATCH 3/4] lavc/aac_ac3_parser: convert ADTS AAC to ASC format

2015-09-21 Thread Rodger Combs
--- libavcodec/aac_ac3_parser.c | 65 ++--- tests/ref/fate/adts-demux | 2 +- 2 files changed, 63 insertions(+), 4 deletions(-) diff --git a/libavcodec/aac_ac3_parser.c b/libavcodec/aac_ac3_parser.c index dfa951e..a7e9278 100644 --- a/libavcodec/aac_ac3_

Re: [FFmpeg-devel] [PATCH 2/4] lavc/aac_ac3_parser: style tweaks

2015-09-21 Thread Ganesh Ajjanagadde
On Mon, Sep 21, 2015 at 9:49 PM, Rodger Combs wrote: > --- > libavcodec/aac_ac3_parser.c | 32 > 1 file changed, 16 insertions(+), 16 deletions(-) > > diff --git a/libavcodec/aac_ac3_parser.c b/libavcodec/aac_ac3_parser.c > index 2f7d568..dfa951e 100644 > --- a/li

Re: [FFmpeg-devel] [PATCH 1/4] lavc/aacdec: handle case where extradata is set between init and first packet

2015-09-21 Thread Timothy Gu
On Mon, Sep 21, 2015 at 6:50 PM Rodger Combs wrote: > --- > libavcodec/aacdec_template.c | 8 > 1 file changed, 8 insertions(+) > > diff --git a/libavcodec/aacdec_template.c b/libavcodec/aacdec_template.c > index c2d7d05..a999013 100644 > --- a/libavcodec/aacdec_template.c > +++ b/libav

Re: [FFmpeg-devel] [PATCH 4/4] lavc: deprecate aac_adtstoasc BSF; remove warnings referencing it

2015-09-21 Thread Timothy Gu
On Mon, Sep 21, 2015 at 6:51 PM Rodger Combs wrote: > --- > doc/bitstream_filters.texi | 11 --- > libavcodec/aac_adtstoasc_bsf.c | 74 > ++ > libavformat/flvenc.c | 6 > libavformat/movenc.c | 6 > 4 files changed,

[FFmpeg-devel] [PATCH 1/4] lavc/aacdec: handle case where extradata is set between init and first packet

2015-09-21 Thread Rodger Combs
--- libavcodec/aacdec_template.c | 8 1 file changed, 8 insertions(+) diff --git a/libavcodec/aacdec_template.c b/libavcodec/aacdec_template.c index c2d7d05..48717c7 100644 --- a/libavcodec/aacdec_template.c +++ b/libavcodec/aacdec_template.c @@ -3118,6 +3118,14 @@ static int aac_decode_

[FFmpeg-devel] [PATCH 3/4] lavc/aac_ac3_parser: convert ADTS AAC to ASC format

2015-09-21 Thread Rodger Combs
--- libavcodec/aac_ac3_parser.c | 65 ++--- tests/ref/fate/adts-demux | 2 +- 2 files changed, 63 insertions(+), 4 deletions(-) diff --git a/libavcodec/aac_ac3_parser.c b/libavcodec/aac_ac3_parser.c index dfa951e..a7e9278 100644 --- a/libavcodec/aac_ac3_

[FFmpeg-devel] [PATCH 4/4] lavc: deprecate aac_adtstoasc BSF; remove warnings referencing it

2015-09-21 Thread Rodger Combs
--- Changelog | 1 + doc/bitstream_filters.texi | 11 --- libavcodec/aac_adtstoasc_bsf.c | 73 ++ libavformat/flvenc.c | 6 libavformat/movenc.c | 6 5 files changed, 3 insertions(+), 94 deletions

[FFmpeg-devel] [PATCH 2/4] lavc/aac_ac3_parser: style tweaks

2015-09-21 Thread Rodger Combs
--- libavcodec/aac_ac3_parser.c | 32 1 file changed, 16 insertions(+), 16 deletions(-) diff --git a/libavcodec/aac_ac3_parser.c b/libavcodec/aac_ac3_parser.c index 2f7d568..dfa951e 100644 --- a/libavcodec/aac_ac3_parser.c +++ b/libavcodec/aac_ac3_parser.c @@ -36,

[FFmpeg-devel] [PATCH] Update Cookies on Setcookie playlist response

2015-09-21 Thread Lucas Andrade
This fixes the https://trac.ffmpeg.org/ticket/4808, as it sets the cookie on playlist response with setcookie header. Update Cookies on Setcookie playlist response --- libavformat/hls.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/libavformat/hls.c b/libavformat/hls.c index 82dd744..e5c8

[FFmpeg-devel] [PATCH] avformat/http: detect end of received on chunked persistenc

2015-09-21 Thread Schenk, Michael
Dear friends, we had a problem with an HLS server which was using chunked http transfer over persistence http connection. Even if we have received all data (chunksize = 0) the read of a m3u8 playlist was blocked till the server tears down the TCP connection. Please find attached a patch for avfor

Re: [FFmpeg-devel] [PATCH 3/4] lavc/aac_ac3_parser: convert ADTS AAC to ASC format

2015-09-21 Thread Hendrik Leppkes
On Tue, Sep 22, 2015 at 4:50 AM, Rodger Combs wrote: > --- > libavcodec/aac_ac3_parser.c | 65 > ++--- > tests/ref/fate/adts-demux | 2 +- > 2 files changed, 63 insertions(+), 4 deletions(-) > > diff --git a/libavcodec/aac_ac3_parser.c b/libavcodec/aac_

Re: [FFmpeg-devel] [PATCH 1/4] lavc/aacdec: handle case where extradata is set between init and first packet

2015-09-21 Thread Hendrik Leppkes
On Tue, Sep 22, 2015 at 4:50 AM, Rodger Combs wrote: > --- > libavcodec/aacdec_template.c | 8 > 1 file changed, 8 insertions(+) > > diff --git a/libavcodec/aacdec_template.c b/libavcodec/aacdec_template.c > index c2d7d05..48717c7 100644 > --- a/libavcodec/aacdec_template.c > +++ b/libav

[FFmpeg-devel] [PATCH] avfilter: add zscale filter

2015-09-21 Thread Paul B Mahol
Signed-off-by: Paul B Mahol --- Now with X -> gbrp path fixed. --- configure| 4 + libavfilter/Makefile | 1 + libavfilter/allfilters.c | 1 + libavfilter/vf_zscale.c | 581 +++ 4 files changed, 587 insertions(+) create mode