diff options
author | Daniel Caujolle-Bert <f1rmb@users.sourceforge.net> | 2003-08-25 21:51:37 +0000 |
---|---|---|
committer | Daniel Caujolle-Bert <f1rmb@users.sourceforge.net> | 2003-08-25 21:51:37 +0000 |
commit | babb07bcbec3674a3f542cf6ae3f2d6b212a3ed4 (patch) | |
tree | 3074007521ca0f6f2b730ac3e85003bdac8d4fdd /src/input/input_v4l.c | |
parent | ca053acfc8a4a11274f1f0978bd0f52b9ac8cc06 (diff) | |
download | xine-lib-babb07bcbec3674a3f542cf6ae3f2d6b212a3ed4.tar.gz xine-lib-babb07bcbec3674a3f542cf6ae3f2d6b212a3ed4.tar.bz2 |
Reduce GCC verbosity (various prototype declaration fixes). ffmpeg, wine and fft*post are untouched (fft: for now).
CVS patchset: 5310
CVS date: 2003/08/25 21:51:37
Diffstat (limited to 'src/input/input_v4l.c')
-rw-r--r-- | src/input/input_v4l.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/input/input_v4l.c b/src/input/input_v4l.c index d96c7f485..65de4fe41 100644 --- a/src/input/input_v4l.c +++ b/src/input/input_v4l.c @@ -702,7 +702,7 @@ static int search_by_channel(v4l_input_plugin_t *this, char *input_source) return 1; } -int open_radio_capture_device(v4l_input_plugin_t *this) +static int open_radio_capture_device(v4l_input_plugin_t *this) { int tuner_found = 0; int i = 0; @@ -776,7 +776,7 @@ int open_radio_capture_device(v4l_input_plugin_t *this) return 2; } -int close_radio_capture_device(v4l_input_plugin_t *this) +static int close_radio_capture_device(v4l_input_plugin_t *this) { if (this->radio_fd > 0) close(this->radio_fd); @@ -796,7 +796,7 @@ int close_radio_capture_device(v4l_input_plugin_t *this) * which the signal should be grabbed. * @return 1 on success, 0 on failure. */ -int open_video_capture_device(v4l_input_plugin_t *this) +static int open_video_capture_device(v4l_input_plugin_t *this) { int i, j, ret, found = 0; int tuner_found = 0; @@ -1042,7 +1042,7 @@ int open_video_capture_device(v4l_input_plugin_t *this) * This function opens an alsa capture device. This will be used to capture * audio data from. */ -int open_audio_capture_device(v4l_input_plugin_t *this) +static int open_audio_capture_device(v4l_input_plugin_t *this) { #ifdef HAVE_ALSA DBGPRINT("Audio Opening PCM Device\n"); |