mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-19 06:46:38 +00:00
flite: make constant static arrays actually static
This commit is contained in:
parent
a6a94fec48
commit
6418d914ea
1 changed files with 2 additions and 2 deletions
|
@ -401,11 +401,11 @@ gst_flite_test_src_stop (GstBaseSrc * basesrc)
|
||||||
static char *
|
static char *
|
||||||
get_channel_name (GstFliteTestSrc * src, int channel)
|
get_channel_name (GstFliteTestSrc * src, int channel)
|
||||||
{
|
{
|
||||||
const char *numbers[10] = {
|
static const char *numbers[10] = {
|
||||||
"zero", "one", "two", "three", "four", "five", "six", "seven", "eight",
|
"zero", "one", "two", "three", "four", "five", "six", "seven", "eight",
|
||||||
"nine"
|
"nine"
|
||||||
};
|
};
|
||||||
const char *names[64] = {
|
static const char *names[64] = {
|
||||||
"front left", "front right", "front center", "lfe 1", "rear left",
|
"front left", "front right", "front center", "lfe 1", "rear left",
|
||||||
"rear right", "front left of center", "front right of center",
|
"rear right", "front left of center", "front right of center",
|
||||||
"rear center", "lfe 2", "side left", "side right", "top front left",
|
"rear center", "lfe 2", "side left", "side right", "top front left",
|
||||||
|
|
Loading…
Reference in a new issue