powf             2166 libavcodec/aacdec.c             gain_cache = powf(scale, -gain);
powf             2183 libavcodec/aacdec.c                                 gain_cache = powf(scale, -t) * s;
powf              296 libavcodec/aacsbr.c     base = powf((float)stop / start, 1.0f / num_bands);
powf               91 libavcodec/ac3.h #define AC3_DYNAMIC_RANGE(x)    (powf(x,  s->drc_scale))
powf              166 libavcodec/ac3dec.c         dynamic_range_tab[i] = powf(2.0f, v) * ((i & 0x1F) | 0x20);
powf              173 libavcodec/ac3dec.c         heavy_dynamic_range_tab[i] = powf(2.0f, v) * ((i & 0xF) | 0x10);
powf              253 libavcodec/ac3dec.c             s->level_gain[(!s->channel_mode)-i] = powf(2.0f,
powf               77 libavcodec/atrac.c         gctx->gain_tab1[i] = powf(2.0, id2exp_offset - i);
powf               81 libavcodec/atrac.c         gctx->gain_tab2[i + 15] = powf(2.0, -1.0f / gctx->loc_size * i);
powf              928 libavcodec/exr.c                     t.f = powf(t.f, one_gamma);
powf              933 libavcodec/exr.c                     t.f = powf(t.f, one_gamma);
powf              938 libavcodec/exr.c                     t.f = powf(t.f, one_gamma);
powf             1379 libavcodec/exr.c                 t.f = powf(t.f, one_gamma);
powf              438 libavcodec/imc.c         flcoeffs1[i] = tmp  * powf(10.0, -level * 0.4375); //todo tab
powf               88 libavcodec/metasound.c         period = powf(2.0, period);
powf              615 libavcodec/wmavoice.c                         powf(1.0331663, idx - 127);
powf              587 libavfilter/avf_showcqt.c         result[x][3] = (g2 == 1.0f) ? result[x][1] : powf(result[x][1], g2);
powf              588 libavfilter/avf_showcqt.c         result[x][0] = 255.0f * powf(FFMIN(1.0f,result[x][0]), g);
powf              589 libavfilter/avf_showcqt.c         result[x][1] = 255.0f * powf(FFMIN(1.0f,result[x][1]), g);
powf              590 libavfilter/avf_showcqt.c         result[x][2] = 255.0f * powf(FFMIN(1.0f,result[x][2]), g);
powf               61 libavutil/libm.h     return x < 0 ? -powf(-x, 1.0 / 3.0) : powf(x, 1.0 / 3.0);