Re: [libav-devel] [PATCH 1/3] rtpdec_qt: Add an accidentally removed allocation return value check

2013-09-27 Thread Anton Khirnov
On Thu, 26 Sep 2013 17:13:38 +0200, Luca Barbato wrote: > On 26/09/13 15:43, Martin Storsjö wrote: > > This check was mistakenly removed in 5626f994f. > > --- > > libavformat/rtpdec_qt.c |2 ++ > > 1 file changed, 2 insertions(+) > > > > The set looks fine, thanks for fixing all of them. >

Re: [libav-devel] [PATCH] Add support for multichannel ATRAC3+ to OpenMG demuxer

2013-09-27 Thread Anton Khirnov
On Sat, 28 Sep 2013 00:35:27 +0200, Maxim Polijakowski wrote: > > > Hi crews, > > > > the attached patch adds support for multichannel ATRAC3+ streams to > > the OpenMG demuxer. It also sets the currently wrong ATRAC3+ frame > > size to right one of 2048 samples. > > > > The patch for ATRAC3+

Re: [libav-devel] [PATCH] Add support for multichannel ATRAC3+ to OpenMG demuxer

2013-09-27 Thread Maxim Polijakowski
Hi crews, the attached patch adds support for multichannel ATRAC3+ streams to the OpenMG demuxer. It also sets the currently wrong ATRAC3+ frame size to right one of 2048 samples. The patch for ATRAC3+ codec itself is in preparation and will be posted shortly... Please find attached th

Re: [libav-devel] [PATCH 1/3] lavf: add a raw HEVC demuxer

2013-09-27 Thread Vittorio Giovara
On Fri, Sep 27, 2013 at 3:51 PM, Luca Barbato wrote: >>> + >>> +#include "avformat.h" >>> +#include "rawdec.h" >>> + >>> +#include "libavcodec/hevc.h" >> >> I think we agreed to order this > > My proposal got two +1, nobody put it in the documentation. > I can add that in the next iteration of th

Re: [libav-devel] [PATCH] avframe: note that linesize is not the usable data size

2013-09-27 Thread Luca Barbato
On 27/09/13 16:49, Anton Khirnov wrote: > --- > libavutil/frame.h |3 +++ > 1 file changed, 3 insertions(+) > > diff --git a/libavutil/frame.h b/libavutil/frame.h > index d71948d..b0676e7 100644 > --- a/libavutil/frame.h > +++ b/libavutil/frame.h > @@ -84,6 +84,9 @@ typedef struct AVFrame { >

[libav-devel] [PATCH] avframe: note that linesize is not the usable data size

2013-09-27 Thread Anton Khirnov
--- libavutil/frame.h |3 +++ 1 file changed, 3 insertions(+) diff --git a/libavutil/frame.h b/libavutil/frame.h index d71948d..b0676e7 100644 --- a/libavutil/frame.h +++ b/libavutil/frame.h @@ -84,6 +84,9 @@ typedef struct AVFrame { * * For audio, only linesize[0] may be set. For

Re: [libav-devel] [PATCH 1/3] lavf: add a raw HEVC demuxer

2013-09-27 Thread Luca Barbato
On 27/09/13 15:37, Diego Biurrun wrote: > On Fri, Sep 27, 2013 at 03:26:10PM +0200, Anton Khirnov wrote: >> --- >> libavformat/Makefile |1 + >> libavformat/allformats.c |1 + >> libavformat/hevcdec.c| 64 >> ++ >> 3 files changed, 66

Re: [libav-devel] [PATCH 2/3] FATE: add HEVC tests

2013-09-27 Thread Diego Biurrun
On Fri, Sep 27, 2013 at 03:26:11PM +0200, Anton Khirnov wrote: > > --- /dev/null > +++ b/tests/fate/hevc.mak > @@ -0,0 +1,162 @@ > +# those samples have the checksums embedded, so the decoder itself can test > +# correctness "These" - also capitalize and end in a period, same below. > +# do not

Re: [libav-devel] [PATCH 1/3] lavf: add a raw HEVC demuxer

2013-09-27 Thread Diego Biurrun
On Fri, Sep 27, 2013 at 03:26:10PM +0200, Anton Khirnov wrote: > --- > libavformat/Makefile |1 + > libavformat/allformats.c |1 + > libavformat/hevcdec.c| 64 > ++ > 3 files changed, 66 insertions(+) > create mode 100644 libavformat/

[libav-devel] [WIP/PATCH] HEVC decoder

2013-09-27 Thread Anton Khirnov
Hi, The Time Has Come for a new iteration of the HEVC decoder. Since the last version, I've merged a lot of OpenHEVC changes, so now all except 3 conformance samples decode correctly. Of those that don't, one has different luma and chroma bit depths, which I don't think we need to support until th

[libav-devel] [PATCH 1/3] lavf: add a raw HEVC demuxer

2013-09-27 Thread Anton Khirnov
From: Dirk Farin --- libavformat/Makefile |1 + libavformat/allformats.c |1 + libavformat/hevcdec.c| 64 ++ 3 files changed, 66 insertions(+) create mode 100644 libavformat/hevcdec.c diff --git a/libavformat/Makefile b/libavformat/

Re: [libav-devel] [PATCH] configure: Add a generic catch for all -W options with msvc/icl

2013-09-27 Thread Diego Biurrun
On Wed, Sep 25, 2013 at 07:55:27AM -0400, Alex Smith wrote: > On Wed, Sep 25, 2013 at 7:00 AM, Diego Biurrun wrote: > > On Tue, Sep 24, 2013 at 11:18:10AM -0400, Alex Smith wrote: > >> The latest icl silently ignores certain -W* options. This is > >> effectively a nop on older icl/msvc versions.