From 6e9cbdc10448203e7c8b2de41447442fcc9f7bae Mon Sep 17 00:00:00 2001 From: diego Date: Wed, 13 May 2009 02:58:57 +0000 Subject: whitespace cosmetics: Remove all trailing whitespace. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@29305 b3059339-0415-0410-9bf9-f77b7e298cf2 --- libao2/ao_ivtv.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'libao2/ao_ivtv.c') diff --git a/libao2/ao_ivtv.c b/libao2/ao_ivtv.c index c2b367a414..b09e5308bb 100644 --- a/libao2/ao_ivtv.c +++ b/libao2/ao_ivtv.c @@ -41,7 +41,7 @@ static int freq = 0; -static const ao_info_t info = +static const ao_info_t info = { "IVTV MPEG Audio Decoder output", "ivtv", @@ -73,7 +73,7 @@ init (int rate, int channels, int format, int flags) "AO: [ivtv] can only handle MPEG audio streams.\n"); return 0; } - + ao_data.outburst = 2048; ao_data.samplerate = rate; ao_data.channels = channels; @@ -132,11 +132,11 @@ get_space (void) x = (float) (vo_pts - ao_data.pts) / 90000.0; if (x <= 0) return 0; - + y = freq * 4 * x; y /= ao_data.outburst; y *= ao_data.outburst; - + if (y > 32000) y = 32000; @@ -148,7 +148,7 @@ static int play (void *data, int len, int flags) { int ivtv_write (unsigned char *data, int len); - + if (ao_data.format != AF_FORMAT_MPEG2) return 0; -- cgit v1.2.3