Re: [FFmpeg-devel] [PATCH] avfilter/af_dynaudnorm: remove wasteful pow

2015-11-26 Thread Ganesh Ajjanagadde
On Wed, Nov 25, 2015 at 4:16 AM, Paul B Mahol wrote: > On 11/25/15, Ganesh Ajjanagadde wrote: >> This removes wasteful pow(x, 2.0) that although not terribly important >> for speed, is still useless. >> >> Signed-off-by: Ganesh Ajjanagadde >> -

Re: [FFmpeg-devel] [PATCH] avfilter/af_dynaudnorm: remove wasteful pow

2015-11-25 Thread Paul B Mahol
On 11/25/15, Ganesh Ajjanagadde wrote: > This removes wasteful pow(x, 2.0) that although not terribly important > for speed, is still useless. > > Signed-off-by: Ganesh Ajjanagadde > -- > Observed while auditing the codeb

[FFmpeg-devel] [PATCH] avfilter/af_dynaudnorm: remove wasteful pow

2015-11-24 Thread Ganesh Ajjanagadde
This removes wasteful pow(x, 2.0) that although not terribly important for speed, is still useless. Signed-off-by: Ganesh Ajjanagadde -- Observed while auditing the codebase for wasteful pow calls. --- libavfilter/af_dy