summaryrefslogtreecommitdiff
path: root/gst/audioresample
diff options
context:
space:
mode:
authorSebastian Dröge <sebastian@centricular.com>2015-01-21 09:49:47 +0100
committerSebastian Dröge <sebastian@centricular.com>2015-01-21 09:49:47 +0100
commit2bd4ea6e8ec7858a2df384342a5c9db09d6cd4ba (patch)
tree11685b2c437ad114957a139517fa22bf493f3464 /gst/audioresample
parent69e338d7dda91682b6633b17b2806c08bb3fc1ae (diff)
downloadgstreamer-plugins-base-2bd4ea6e8ec7858a2df384342a5c9db09d6cd4ba.tar.gz
Constify some static arrays everywhere
Diffstat (limited to 'gst/audioresample')
-rw-r--r--gst/audioresample/gstaudioresample.c2
-rw-r--r--gst/audioresample/resample.c12
2 files changed, 7 insertions, 7 deletions
diff --git a/gst/audioresample/gstaudioresample.c b/gst/audioresample/gstaudioresample.c
index 94981bcea..b4db739d7 100644
--- a/gst/audioresample/gstaudioresample.c
+++ b/gst/audioresample/gstaudioresample.c
@@ -1388,7 +1388,7 @@ speex_resampler_sinc_filter_mode_get_type (void)
static GType speex_resampler_sinc_filter_mode_type = 0;
if (!speex_resampler_sinc_filter_mode_type) {
- static GEnumValue sinc_filter_modes[] = {
+ static const GEnumValue sinc_filter_modes[] = {
{SPEEX_RESAMPLER_SINC_FILTER_INTERPOLATED, "Use interpolated sinc table",
"interpolated"},
{SPEEX_RESAMPLER_SINC_FILTER_FULL, "Use full sinc table", "full"},
diff --git a/gst/audioresample/resample.c b/gst/audioresample/resample.c
index 6364e1928..c9b1825d3 100644
--- a/gst/audioresample/resample.c
+++ b/gst/audioresample/resample.c
@@ -224,7 +224,7 @@ struct SpeexResamplerState_
int use_neon:1;
};
-static double kaiser12_table[68] = {
+static const double kaiser12_table[68] = {
0.99859849, 1.00000000, 0.99859849, 0.99440475, 0.98745105, 0.97779076,
0.96549770, 0.95066529, 0.93340547, 0.91384741, 0.89213598, 0.86843014,
0.84290116, 0.81573067, 0.78710866, 0.75723148, 0.72629970, 0.69451601,
@@ -240,7 +240,7 @@ static double kaiser12_table[68] = {
};
/*
-static double kaiser12_table[36] = {
+static const double kaiser12_table[36] = {
0.99440475, 1.00000000, 0.99440475, 0.97779076, 0.95066529, 0.91384741,
0.86843014, 0.81573067, 0.75723148, 0.69451601, 0.62920216, 0.56287762,
0.49704014, 0.43304576, 0.37206735, 0.31506490, 0.26276832, 0.21567274,
@@ -248,7 +248,7 @@ static double kaiser12_table[36] = {
0.03111947, 0.02127838, 0.01402878, 0.00886058, 0.00531256, 0.00298291,
0.00153438, 0.00069463, 0.00025272, 0.0000527734, 0.00000500, 0.00000000};
*/
-static double kaiser10_table[36] = {
+static const double kaiser10_table[36] = {
0.99537781, 1.00000000, 0.99537781, 0.98162644, 0.95908712, 0.92831446,
0.89005583, 0.84522401, 0.79486424, 0.74011713, 0.68217934, 0.62226347,
0.56155915, 0.50119680, 0.44221549, 0.38553619, 0.33194107, 0.28205962,
@@ -257,7 +257,7 @@ static double kaiser10_table[36] = {
0.00488951, 0.00257636, 0.00115101, 0.00035515, 0.00000000, 0.00000000
};
-static double kaiser8_table[36] = {
+static const double kaiser8_table[36] = {
0.99635258, 1.00000000, 0.99635258, 0.98548012, 0.96759014, 0.94302200,
0.91223751, 0.87580811, 0.83439927, 0.78875245, 0.73966538, 0.68797126,
0.63451750, 0.58014482, 0.52566725, 0.47185369, 0.41941150, 0.36897272,
@@ -266,7 +266,7 @@ static double kaiser8_table[36] = {
0.01563093, 0.00959968, 0.00527363, 0.00233883, 0.00050000, 0.00000000
};
-static double kaiser6_table[36] = {
+static const double kaiser6_table[36] = {
0.99733006, 1.00000000, 0.99733006, 0.98935595, 0.97618418, 0.95799003,
0.93501423, 0.90755855, 0.87598009, 0.84068475, 0.80211977, 0.76076565,
0.71712752, 0.67172623, 0.62508937, 0.57774224, 0.53019925, 0.48295561,
@@ -277,7 +277,7 @@ static double kaiser6_table[36] = {
struct FuncDef
{
- double *table;
+ const double *table;
int oversample;
};