Re: [libav-devel] [PATCH] opus: Factor out imdct15 into a standalone component

2015-02-02 Thread Diego Biurrun
On Sun, Feb 01, 2015 at 12:51:41PM +0100, Janne Grunau wrote: > On 2015-02-01 11:08:17 +0100, Diego Biurrun wrote: > > It will be reused by the AAC decoder. > > --- > > > > Changed the struct name to uppercase. > > > > Still needs testing on aarch64. > > will test it on arm64 in the next days P

Re: [libav-devel] [PATCH] opus: Factor out imdct15 into a standalone component

2015-02-01 Thread Janne Grunau
On 2015-02-01 11:08:17 +0100, Diego Biurrun wrote: > It will be reused by the AAC decoder. > --- > > Changed the struct name to uppercase. > > Still needs testing on aarch64. will test it on arm64 in the next days janne ___ libav-devel mailing list l

[libav-devel] [PATCH] opus: Factor out imdct15 into a standalone component

2015-02-01 Thread Diego Biurrun
It will be reused by the AAC decoder. --- Changed the struct name to uppercase. Still needs testing on aarch64. configure | 2 ++ libavcodec/Makefile| 4 +-- libavcodec/aarch64/Makefile| 4 +-- .

Re: [libav-devel] [PATCH] opus: Factor out imdct15 into a standalone component

2015-01-31 Thread Luca Barbato
On 01/02/15 01:56, Kieran Kunhya wrote: >> -av_cold void ff_celt_imdct_uninit(CeltIMDCTContext **ps) >> +av_cold void ff_imdct15_uninit(Imdct15Context **ps) >> { >> -CeltIMDCTContext *s = *ps; >> +Imdct15Context *s = *ps; > > IMDCT, no? > Good point =) lu _

Re: [libav-devel] [PATCH] opus: Factor out imdct15 into a standalone component

2015-01-31 Thread Kieran Kunhya
> -av_cold void ff_celt_imdct_uninit(CeltIMDCTContext **ps) > +av_cold void ff_imdct15_uninit(Imdct15Context **ps) > { > -CeltIMDCTContext *s = *ps; > +Imdct15Context *s = *ps; IMDCT, no? Kieran ___ libav-devel mailing list libav-devel@libav.or

[libav-devel] [PATCH] opus: Factor out imdct15 into a standalone component

2015-01-31 Thread Diego Biurrun
It will be reused by the AAC decoder. --- This is only compile-tested on x86_32. I'd appreciate if somebody could test it on aarch64 and push, I'll be offline again for the next 2-3 days. configure | 2 ++ libavcodec/Makefile