FFmpeg
Loading...
Searching...
No Matches
celp_math.c
Go to the documentation of this file.
1/*
2 * Various fixed-point math operations
3 *
4 * Copyright (c) 2008 Vladimir Voroshilov
5 *
6 * This file is part of FFmpeg.
7 *
8 * FFmpeg is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU Lesser General Public
10 * License as published by the Free Software Foundation; either
11 * version 2.1 of the License, or (at your option) any later version.
12 *
13 * FFmpeg is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 * Lesser General Public License for more details.
17 *
18 * You should have received a copy of the GNU Lesser General Public
19 * License along with FFmpeg; if not, write to the Free Software
20 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
21 */
22
23#include <stdint.h>
24
25#include "config.h"
26
28#include "libavutil/float_dsp.h"
29#include "libavutil/intmath.h"
30#include "mathops.h"
31#include "celp_math.h"
32
33#ifdef G729_BITEXACT
34#include "libavutil/avassert.h"
35
36static const uint16_t exp2a[]=
37{
38 0, 1435, 2901, 4400, 5931, 7496, 9096, 10730,
39 12400, 14106, 15850, 17632, 19454, 21315, 23216, 25160,
40 27146, 29175, 31249, 33368, 35534, 37747, 40009, 42320,
41 44682, 47095, 49562, 52082, 54657, 57289, 59979, 62727,
42};
43
44static const uint16_t exp2b[]=
45{
46 3, 712, 1424, 2134, 2845, 3557, 4270, 4982,
47 5696, 6409, 7124, 7839, 8554, 9270, 9986, 10704,
48 11421, 12138, 12857, 13576, 14295, 15014, 15734, 16455,
49 17176, 17898, 18620, 19343, 20066, 20790, 21514, 22238,
50};
51
52int ff_exp2(uint16_t power)
53{
54 unsigned int result= exp2a[power>>10] + 0x10000;
55
56 av_assert2(power <= 0x7fff);
57
58 result= (result<<3) + ((result*exp2b[(power>>5)&31])>>17);
59 return result + ((result*(power&31)*89)>>22);
60}
61#endif
62
63/**
64 * Table used to compute log2(x)
65 *
66 * tab_log2[i] = (1<<15) * log2(1 + i/32), i=0..32
67 */
68static const uint16_t tab_log2[33] =
69{
70#ifdef G729_BITEXACT
71 0, 1455, 2866, 4236, 5568, 6863, 8124, 9352,
72 10549, 11716, 12855, 13967, 15054, 16117, 17156, 18172,
73 19167, 20142, 21097, 22033, 22951, 23852, 24735, 25603,
74 26455, 27291, 28113, 28922, 29716, 30497, 31266, 32023, 32767,
75#else
76 4, 1459, 2870, 4240, 5572, 6867, 8127, 9355,
77 10552, 11719, 12858, 13971, 15057, 16120, 17158, 18175,
78 19170, 20145, 21100, 22036, 22954, 23854, 24738, 25605,
79 26457, 27294, 28116, 28924, 29719, 30500, 31269, 32025, 32769,
80#endif
81};
82
83int ff_log2_q15(uint32_t value)
84{
85 uint8_t power_int;
86 uint8_t frac_x0;
87 uint16_t frac_dx;
88
89 // Stripping zeros from beginning
90 power_int = av_log2(value);
91 value <<= (31 - power_int);
92
93 // b31 is always non-zero now
94 frac_x0 = (value & 0x7c000000) >> 26; // b26-b31 and [32..63] -> [0..31]
95 frac_dx = (value & 0x03fff800) >> 11;
96
97 value = tab_log2[frac_x0];
98 value += (frac_dx * (tab_log2[frac_x0+1] - tab_log2[frac_x0])) >> 15;
99
100 return (power_int << 15) + value;
101}
102
103int64_t ff_dot_product(const int16_t *a, const int16_t *b, int length)
104{
105 int i;
106 int64_t sum = 0;
107
108 for (i = 0; i < length; i++)
109 sum += MUL16(a[i], b[i]);
110
111 return sum;
112}
113
115{
116 c->dot_productf = ff_scalarproduct_float_c;
117
118#if HAVE_MIPSFPU
120#endif
121}
simple assert() macros that are a bit more flexible than ISO C assert().
#define av_assert2(cond)
assert() equivalent, that does lie in speed critical code.
Definition avassert.h:68
#define i(width, name, range_min, range_max)
Definition cbs_h264.c:63
int64_t ff_dot_product(const int16_t *a, const int16_t *b, int length)
Calculate the dot product of 2 int16_t vectors.
Definition celp_math.c:103
int ff_log2_q15(uint32_t value)
Calculate log2(x).
Definition celp_math.c:83
static const uint16_t tab_log2[33]
Table used to compute log2(x)
Definition celp_math.c:68
av_cold void ff_celp_math_init(CELPMContext *c)
Initialize CELPMContext.
Definition celp_math.c:114
int ff_exp2(uint16_t power)
fixed-point implementation of exp2(x) in [0; 1] domain.
void ff_celp_math_init_mips(CELPMContext *c)
long long int64_t
Definition coverity.c:34
double value
Definition eval.c:102
float ff_scalarproduct_float_c(const float *v1, const float *v2, int len)
Return the scalar product of two vectors of floats.
int a
#define b
Definition input.c:43
#define av_log2
Definition intmath.h:84
Macro definitions for various function/variable attributes.
#define av_cold
Definition attributes.h:117
#define MUL16(ra, rb)
Definition mathops.h:90
static float power(float r, float g, float b, float max)
static double c[64]