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/liba52 | |
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/liba52')
-rw-r--r-- | src/liba52/xine_decoder.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/liba52/xine_decoder.c b/src/liba52/xine_decoder.c index 8a9a35e9c..4815b4dfe 100644 --- a/src/liba52/xine_decoder.c +++ b/src/liba52/xine_decoder.c @@ -17,7 +17,7 @@ * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA * - * $Id: xine_decoder.c,v 1.53 2003/05/23 15:10:27 jcdutton Exp $ + * $Id: xine_decoder.c,v 1.54 2003/08/25 21:51:40 f1rmb Exp $ * * stuff needed to turn liba52 into a xine decoder plugin */ @@ -140,7 +140,7 @@ static const struct frmsize_s frmsizecod_tbl[64] = { 640 ,{1280 ,1394 ,1920 } } }; -void a52dec_reset (audio_decoder_t *this_gen) { +static void a52dec_reset (audio_decoder_t *this_gen) { a52dec_decoder_t *this = (a52dec_decoder_t *) this_gen; @@ -149,7 +149,7 @@ void a52dec_reset (audio_decoder_t *this_gen) { this->pts = 0; } -void a52dec_discontinuity (audio_decoder_t *this_gen) { +static void a52dec_discontinuity (audio_decoder_t *this_gen) { a52dec_decoder_t *this = (a52dec_decoder_t *) this_gen; @@ -351,7 +351,7 @@ static void a52dec_decode_frame (a52dec_decoder_t *this, int64_t pts, int previe } } -void a52dec_decode_data (audio_decoder_t *this_gen, buf_element_t *buf) { +static void a52dec_decode_data (audio_decoder_t *this_gen, buf_element_t *buf) { a52dec_decoder_t *this = (a52dec_decoder_t *) this_gen; uint8_t *current = buf->content; |