Commit 352bf617 authored by Rémi Denis-Courmont's avatar Rémi Denis-Courmont

Shared object friendliness

parent 05db60da
...@@ -637,7 +637,7 @@ void libvlc_video_set_deinterlace( libvlc_media_player_t *p_mi, int b_enable, ...@@ -637,7 +637,7 @@ void libvlc_video_set_deinterlace( libvlc_media_player_t *p_mi, int b_enable,
static const char *get_marquee_int_option_identifier(unsigned option) static const char *get_marquee_int_option_identifier(unsigned option)
{ {
static const char * marquee_table[] = static const char tab[][16] =
{ {
"marq", "marq",
"marq-color", "marq-color",
...@@ -647,24 +647,22 @@ static const char *get_marquee_int_option_identifier(unsigned option) ...@@ -647,24 +647,22 @@ static const char *get_marquee_int_option_identifier(unsigned option)
"marq-size", "marq-size",
"marq-timeout", "marq-timeout",
"marq-x", "marq-x",
"marq-y" "marq-y",
}; };
static const unsigned marquee_table_size = sizeof(marquee_table)/sizeof(*marquee_table); if( option >= sizeof( tab ) / sizeof( tab[0] ) )
if( option >= marquee_table_size )
return NULL; return NULL;
return marquee_table[option]; return tab[option];
} }
static const char *get_marquee_string_option_identifier(unsigned option) static const char *get_marquee_string_option_identifier(unsigned option)
{ {
static const char * marquee_table[] = static const char tab[][16] =
{ {
"marq-marquee" "marq-marquee",
}; };
static const unsigned marquee_table_size = sizeof(marquee_table)/sizeof(*marquee_table); if( option >= sizeof( tab ) / sizeof( tab[0] ) )
if( option >= marquee_table_size )
return NULL; return NULL;
return marquee_table[option]; return tab[option];
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment