From babb07bcbec3674a3f542cf6ae3f2d6b212a3ed4 Mon Sep 17 00:00:00 2001 From: Daniel Caujolle-Bert Date: Mon, 25 Aug 2003 21:51:37 +0000 Subject: 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 --- src/input/input_v4l.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'src/input/input_v4l.c') 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"); -- cgit v1.2.3