summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorDiego 'Flameeyes' Pettenò <flameeyes@gmail.com>2007-12-19 11:33:20 +0100
committerDiego 'Flameeyes' Pettenò <flameeyes@gmail.com>2007-12-19 11:33:20 +0100
commit4dffcd03d2d408a1536212f3a596560354878eb1 (patch)
treed87eeee6a0209a180069e610edcab06002bd6f29 /src
parentf78fe11dba3b7bea57679b1deeead2929b7175c6 (diff)
downloadxine-lib-4dffcd03d2d408a1536212f3a596560354878eb1.tar.gz
xine-lib-4dffcd03d2d408a1536212f3a596560354878eb1.tar.bz2
Mark tv_standard_names and tv_standard_value static.
Diffstat (limited to 'src')
-rw-r--r--src/input/input_v4l.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/input/input_v4l.c b/src/input/input_v4l.c
index ff9ea87d0..34ebcdc27 100644
--- a/src/input/input_v4l.c
+++ b/src/input/input_v4l.c
@@ -110,8 +110,8 @@ static const resolution_t resolutions[] = {
{ 160, 120 }
};
-static char *tv_standard_names[] = { "PAL", "NTSC", "SECAM", NULL };
-static int tv_standard_values[] = { VIDEO_MODE_PAL, VIDEO_MODE_NTSC, VIDEO_MODE_SECAM };
+static const char *tv_standard_names[] = { "PAL", "NTSC", "SECAM", NULL };
+static const int tv_standard_values[] = { VIDEO_MODE_PAL, VIDEO_MODE_NTSC, VIDEO_MODE_SECAM };
#define NUM_RESOLUTIONS (sizeof(resolutions)/sizeof(resolutions[0]))
#define RADIO_DEV "/dev/v4l/radio0"