Re: [libav-devel] [PATCH 03/31] aacdec: add float planar sample format output

2012-10-05 Thread Måns Rullgård
Justin Ruggles writes: > On 10/05/2012 02:27 AM, Anton Khirnov wrote: >> >> On Fri, 21 Sep 2012 11:23:31 -0400, Justin Ruggles >> wrote: >>> --- >>> libavcodec/aacdec.c | 36 +--- >>> libavcodec/aacsbr.c |5 ++--- >>> 2 files changed, 15 insertions(+), 26

Re: [libav-devel] [PATCH 03/31] aacdec: add float planar sample format output

2012-10-05 Thread Justin Ruggles
On 10/05/2012 02:27 AM, Anton Khirnov wrote: > > On Fri, 21 Sep 2012 11:23:31 -0400, Justin Ruggles > wrote: >> --- >> libavcodec/aacdec.c | 36 +--- >> libavcodec/aacsbr.c |5 ++--- >> 2 files changed, 15 insertions(+), 26 deletions(-) [...] >> @@ -2480,16

Re: [libav-devel] [PATCH 03/31] aacdec: add float planar sample format output

2012-10-05 Thread Janne Grunau
On 2012-10-05 08:27:11 +0200, Anton Khirnov wrote: > > On Fri, 21 Sep 2012 11:23:31 -0400, Justin Ruggles > wrote: > > --- > > libavcodec/aacdec.c | 36 +--- > > libavcodec/aacsbr.c |5 ++--- > > 2 files changed, 15 insertions(+), 26 deletions(-) > > > > d

Re: [libav-devel] [PATCH 03/31] aacdec: add float planar sample format output

2012-10-05 Thread Måns Rullgård
Anton Khirnov writes: >> @@ -2480,16 +2477,11 @@ static int aac_decode_frame_int(AVCodecContext >> *avctx, void *data, >> err = -1; >> goto fail; >> } >> - >> -if (avctx->sample_fmt == AV_SAMPLE_FMT_FLT) >> -ac->fmt_conv.float_interleave((fl

Re: [libav-devel] [PATCH 03/31] aacdec: add float planar sample format output

2012-10-04 Thread Anton Khirnov
On Fri, 21 Sep 2012 11:23:31 -0400, Justin Ruggles wrote: > --- > libavcodec/aacdec.c | 36 +--- > libavcodec/aacsbr.c |5 ++--- > 2 files changed, 15 insertions(+), 26 deletions(-) > > diff --git a/libavcodec/aacdec.c b/libavcodec/aacdec.c > index 1c59ec5

[libav-devel] [PATCH 03/31] aacdec: add float planar sample format output

2012-09-21 Thread Justin Ruggles
--- libavcodec/aacdec.c | 36 +--- libavcodec/aacsbr.c |5 ++--- 2 files changed, 15 insertions(+), 26 deletions(-) diff --git a/libavcodec/aacdec.c b/libavcodec/aacdec.c index 1c59ec5..385c8ae 100644 --- a/libavcodec/aacdec.c +++ b/libavcodec/aacdec.c @@ -84