[FFmpeg-devel] [PATCH 03/15] lavfi/f_ebur128: replace pow(10, x) by exp10(x)

Clément Bœsch u at pkh.me
Wed Dec 23 19:54:12 CET 2015


On Wed, Dec 23, 2015 at 10:47:23AM -0800, Ganesh Ajjanagadde wrote:
> exp10, recently introduced, is superior for the purpose.
> 
> Signed-off-by: Ganesh Ajjanagadde <gajjanagadde at gmail.com>
> ---
>  libavfilter/f_ebur128.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/libavfilter/f_ebur128.c b/libavfilter/f_ebur128.c
> index b9577c5..6749bcd 100644
> --- a/libavfilter/f_ebur128.c
> +++ b/libavfilter/f_ebur128.c
> @@ -435,7 +435,7 @@ static int config_audio_output(AVFilterLink *outlink)
>      return 0;
>  }
>  
> -#define ENERGY(loudness) (pow(10, ((loudness) + 0.691) / 10.))
> +#define ENERGY(loudness) (exp10(((loudness) + 0.691) / 10.))
>  #define LOUDNESS(energy) (-0.691 + 10 * log10(energy))
>  #define DBFS(energy) (20 * log10(energy))

OK if FATE is happy

-- 
Clément B.
-------------- next part --------------
A non-text attachment was scrubbed...
Name: signature.asc
Type: application/pgp-signature
Size: 473 bytes
Desc: not available
URL: <http://ffmpeg.org/pipermail/ffmpeg-devel/attachments/20151223/c6cb027d/attachment.sig>


More information about the ffmpeg-devel mailing list