Re: [libav-devel] [PATCH 1/6] lavu: add a way to query hwcontext frame constraints

2016-02-26 Thread Anton Khirnov
Quoting Mark Thompson (2016-02-26 00:47:39) > --- > libavutil/hwcontext.c | 45 > libavutil/hwcontext.h | 68 > ++ > libavutil/hwcontext_internal.h | 10 +++ > 3 files changed, 123 insertions(+) > > diff

Re: [libav-devel] [PATCH] Update changelog for v11.6

2016-02-26 Thread Vittorio Giovara
On Fri, Feb 26, 2016 at 5:46 PM, Sean McGovern wrote: > --- > Changelog |8 > RELEASE |2 +- > 2 files changed, 9 insertions(+), 1 deletion(-) > > diff --git a/Changelog b/Changelog > index 08bb70b..6bb13ea 100644 > --- a/Changelog > +++ b/Changelog > @@

[libav-devel] [PATCH] Update changelog for v11.6

2016-02-26 Thread Sean McGovern
--- Changelog |8 RELEASE |2 +- 2 files changed, 9 insertions(+), 1 deletion(-) diff --git a/Changelog b/Changelog index 08bb70b..6bb13ea 100644 --- a/Changelog +++ b/Changelog @@ -1,6 +1,11 @@ Entries are sorted chronologically from oldest to youngest within each release,

Re: [libav-devel] [PATCH 2/2] fft: Split MDCT bits off from FFT

2016-02-26 Thread Luca Barbato
On 26/02/16 17:15, Diego Biurrun wrote: > --- > > Now passes FATE on ARM thanks to a hint from Janne. > Ok since oracle seems happy. lu ___ libav-devel mailing list libav-devel@libav.org https://lists.libav.org/mailman/listinfo/libav-devel

Re: [libav-devel] [PATCH 1/2] fate: fft: Slit DCT/FFT/MDCT/RDFT tests into separate targets

2016-02-26 Thread Luca Barbato
On 26/02/16 17:15, Diego Biurrun wrote: > --- > tests/fate/fft.mak | 43 +-- > 1 file changed, 29 insertions(+), 14 deletions(-) > I'd use "Split", the patch looks ok. ___ libav-devel mailing list

Re: [libav-devel] [RFC] Handling of major version bumps

2016-02-26 Thread Luca Barbato
On 26/02/16 19:01, Anton Khirnov wrote: > This could be put into writing somewhere, but not sure where. The wiki > perhaps? Would be nice. ___ libav-devel mailing list libav-devel@libav.org https://lists.libav.org/mailman/listinfo/libav-devel

Re: [libav-devel] [RFC] Handling of major version bumps

2016-02-26 Thread Anton Khirnov
Quoting Derek Buitenhuis (2016-02-26 16:02:18) > Some context: > https://mailman.videolan.org/pipermail/vlc-devel/2016-February/106310.html > > Basically, I would like to propose the following: > > In the future, for major version bumps, we should push the commit > which bumps the version

[libav-devel] [PATCH 2/2] fft: Split MDCT bits off from FFT

2016-02-26 Thread Diego Biurrun
--- Now passes FATE on ARM thanks to a hint from Janne. libavcodec/aarch64/Makefile| 1 + libavcodec/aarch64/fft_init_aarch64.c | 12 -- .../aarch64/{fft_init_aarch64.c => mdct_init.c}| 14 +-- libavcodec/arm/Makefile| 2

[libav-devel] [PATCH 1/2] fate: fft: Slit DCT/FFT/MDCT/RDFT tests into separate targets

2016-02-26 Thread Diego Biurrun
--- tests/fate/fft.mak | 43 +-- 1 file changed, 29 insertions(+), 14 deletions(-) diff --git a/tests/fate/fft.mak b/tests/fate/fft.mak index d2a3904..6349e5a 100644 --- a/tests/fate/fft.mak +++ b/tests/fate/fft.mak @@ -1,8 +1,8 @@ define DEF_FFT

[libav-devel] [RFC] Handling of major version bumps

2016-02-26 Thread Derek Buitenhuis
Some context: https://mailman.videolan.org/pipermail/vlc-devel/2016-February/106310.html Basically, I would like to propose the following: In the future, for major version bumps, we should push the commit which bumps the version before the big list of commits that remove all the deprecated

Re: [libav-devel] [PATCH 1/6] lavu: add a way to query hwcontext frame constraints

2016-02-26 Thread wm4
On Fri, 26 Feb 2016 12:06:09 + Mark Thompson wrote: > On 26/02/16 11:46, wm4 wrote: > > On Thu, 25 Feb 2016 23:47:39 + > > Mark Thompson wrote: > > > >> --- > >> libavutil/hwcontext.c | 45 > >>

Re: [libav-devel] [PATCH 1/6] lavu: add a way to query hwcontext frame constraints

2016-02-26 Thread Mark Thompson
On 26/02/16 11:46, wm4 wrote: > On Thu, 25 Feb 2016 23:47:39 + > Mark Thompson wrote: > >> --- >> libavutil/hwcontext.c | 45 >> libavutil/hwcontext.h | 68 >> ++ >>

Re: [libav-devel] [PATCH 1/6] lavu: add a way to query hwcontext frame constraints

2016-02-26 Thread wm4
On Thu, 25 Feb 2016 23:47:39 + Mark Thompson wrote: > --- > libavutil/hwcontext.c | 45 > libavutil/hwcontext.h | 68 > ++ > libavutil/hwcontext_internal.h | 10 +++ > 3 files

Re: [libav-devel] [PATCH 02/15] lavc: add a new bitstream filtering API

2016-02-26 Thread Hendrik Leppkes
On Thu, Feb 25, 2016 at 4:05 PM, Anton Khirnov wrote: > Deprecate the current bitstream filtering API. > +/** > + * Iterate over all registered bitstream filters. > + * > + * @param opaque a pointer where libavcodec will store the iteration state. > Must > + *

Re: [libav-devel] [PATCH 3/6] lavu: VAAPI hwcontext implementation

2016-02-26 Thread Mark Thompson
On 26/02/16 08:51, Diego Biurrun wrote: > On Thu, Feb 25, 2016 at 11:48:50PM +, Mark Thompson wrote: >> --- a/configure >> +++ b/configure >> @@ -1704,6 +1704,7 @@ CONFIG_EXTRA=" >> texturedspenc >> tpeldsp >> +vaapi_recent >> vc1dsp >> videodsp >> @@ -4676,6 +4677,10

Re: [libav-devel] [PATCH 02/15] lavc: add a new bitstream filtering API

2016-02-26 Thread wm4
On Thu, 25 Feb 2016 16:05:42 +0100 Anton Khirnov wrote: > Deprecate the current bitstream filtering API. > --- > configure | 2 +- > libavcodec/Makefile| 2 + > libavcodec/avcodec.h | 178 +++-- >

Re: [libav-devel] [PATCH] qsv: Move down the implementation query

2016-02-26 Thread Luca Barbato
On 24/02/16 15:14, Luca Barbato wrote: > The plugin loaded may not match the general implementation capability > wise. > --- > libavcodec/qsv.c | 32 > 1 file changed, 16 insertions(+), 16 deletions(-) Ping. ___

Re: [libav-devel] [PATCH 3/6] lavu: VAAPI hwcontext implementation

2016-02-26 Thread Diego Biurrun
On Thu, Feb 25, 2016 at 11:48:50PM +, Mark Thompson wrote: > --- a/configure > +++ b/configure > @@ -1704,6 +1704,7 @@ CONFIG_EXTRA=" > texturedspenc > tpeldsp > +vaapi_recent > vc1dsp > videodsp > @@ -4676,6 +4677,10 @@ enabled vaapi && enabled xlib && > enable

Re: [libav-devel] [PATCH] avcodec/eatqi: print error on mb decode failure

2016-02-26 Thread Diego Biurrun
On Thu, Feb 25, 2016 at 11:38:44PM -0500, Vittorio Giovara wrote: > --- a/libavcodec/eatqi.c > +++ b/libavcodec/eatqi.c > @@ -37,6 +37,7 @@ > > typedef struct TqiContext { > +AVCodecContext *avctx; > GetBitContext gb; > @@ -79,8 +80,11 @@ static int tqi_decode_mb(TqiContext *t, int16_t

Re: [libav-devel] [PATCH] alac: allow extra data without the ATOM header

2016-02-26 Thread Steve Lhomme
On Fri, Feb 26, 2016 at 9:09 AM, Anton Khirnov wrote: > Quoting Steve Lhomme (2016-02-12 17:04:15) >> From: Steve Lhomme >> >> -- >> can be found in such sample >> http://streams.videolan.org/issues/16620/VLCSupportsample.mkv > > When I decode that sample

Re: [libav-devel] [PATCH] alac: allow extra data without the ATOM header

2016-02-26 Thread Anton Khirnov
Quoting Steve Lhomme (2016-02-12 17:04:15) > From: Steve Lhomme > > -- > can be found in such sample > http://streams.videolan.org/issues/16620/VLCSupportsample.mkv When I decode that sample with avconv, it has a 36-byte extradata and seems to decode just fine even without