mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-12-23 12:43:46 +02:00
lavc/opus: replace pow(10,x) by ff_exp10(x)
Reviewed-by: Rostislav Pehlivanov <atomnuker@gmail.com> Signed-off-by: Ganesh Ajjanagadde <gajjanagadde@gmail.com>
This commit is contained in:
parent
5495c7f2a3
commit
a0ea801dc3
@ -27,6 +27,7 @@
|
||||
#include <stdint.h>
|
||||
|
||||
#include "libavutil/error.h"
|
||||
#include "libavutil/internal.h"
|
||||
|
||||
#include "opus.h"
|
||||
#include "vorbis.h"
|
||||
@ -333,7 +334,7 @@ av_cold int ff_opus_parse_extradata(AVCodecContext *avctx,
|
||||
|
||||
s->gain_i = AV_RL16(extradata + 16);
|
||||
if (s->gain_i)
|
||||
s->gain = pow(10, s->gain_i / (20.0 * 256));
|
||||
s->gain = ff_exp10(s->gain_i / (20.0 * 256));
|
||||
|
||||
map_type = extradata[18];
|
||||
if (!map_type) {
|
||||
|
Loading…
Reference in New Issue
Block a user