Re: [FFmpeg-devel] [PATCH] avcodec/opus_celt: replace pow by exp2

2015-12-17 Thread Ganesh Ajjanagadde
On Thu, Dec 17, 2015 at 11:10 AM, Paul B Mahol wrote: > On 12/17/15, Ganesh Ajjanagadde wrote: >> exp2 is faster. >> >> Signed-off-by: Ganesh Ajjanagadde >> --- >> libavcodec/opus_celt.c | 4 ++-- >> 1 file changed, 2 insertions(+), 2 deletions(-) >> >> diff --git a/libavcodec/opus_celt.c b/lib

Re: [FFmpeg-devel] [PATCH] avcodec/opus_celt: replace pow by exp2

2015-12-17 Thread Paul B Mahol
On 12/17/15, Ganesh Ajjanagadde wrote: > exp2 is faster. > > Signed-off-by: Ganesh Ajjanagadde > --- > libavcodec/opus_celt.c | 4 ++-- > 1 file changed, 2 insertions(+), 2 deletions(-) > > diff --git a/libavcodec/opus_celt.c b/libavcodec/opus_celt.c > index 9911de3..474452f 100644 > --- a/libav

[FFmpeg-devel] [PATCH] avcodec/opus_celt: replace pow by exp2

2015-12-17 Thread Ganesh Ajjanagadde
exp2 is faster. Signed-off-by: Ganesh Ajjanagadde --- libavcodec/opus_celt.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libavcodec/opus_celt.c b/libavcodec/opus_celt.c index 9911de3..474452f 100644 --- a/libavcodec/opus_celt.c +++ b/libavcodec/opus_celt.c @@ -1677,7