diff options
author | Diego 'Flameeyes' Pettenò <flameeyes@gmail.com> | 2007-12-19 11:33:20 +0100 |
---|---|---|
committer | Diego 'Flameeyes' Pettenò <flameeyes@gmail.com> | 2007-12-19 11:33:20 +0100 |
commit | 4dffcd03d2d408a1536212f3a596560354878eb1 (patch) | |
tree | d87eeee6a0209a180069e610edcab06002bd6f29 /src | |
parent | f78fe11dba3b7bea57679b1deeead2929b7175c6 (diff) | |
download | xine-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.c | 4 |
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" |