Commit 321012f5 authored by Rémi Denis-Courmont's avatar Rémi Denis-Courmont

video output: remove a bunch of relocations

parent 605d047f
...@@ -78,7 +78,7 @@ static int SubMarginCallback( vlc_object_t *, char const *, ...@@ -78,7 +78,7 @@ static int SubMarginCallback( vlc_object_t *, char const *,
static const struct static const struct
{ {
double f_value; double f_value;
const char *psz_label; char psz_label[13];
} p_zoom_values[] = { } p_zoom_values[] = {
{ 0.25, N_("1:4 Quarter") }, { 0.25, N_("1:4 Quarter") },
{ 0.5, N_("1:2 Half") }, { 0.5, N_("1:2 Half") },
...@@ -88,8 +88,8 @@ static const struct ...@@ -88,8 +88,8 @@ static const struct
static const struct static const struct
{ {
const char *psz_value; char psz_value[8];
const char *psz_label; char psz_label[8];
} p_crop_values[] = { } p_crop_values[] = {
{ "", N_("Default") }, { "", N_("Default") },
{ "16:10", "16:10" }, { "16:10", "16:10" },
...@@ -106,8 +106,8 @@ static const struct ...@@ -106,8 +106,8 @@ static const struct
static const struct static const struct
{ {
const char *psz_value; char psz_value[8];
const char *psz_label; char psz_label[8];
} p_aspect_ratio_values[] = { } p_aspect_ratio_values[] = {
{ "", N_("Default") }, { "", N_("Default") },
{ "1:1", "1:1" }, { "1:1", "1:1" },
......
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