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 --- mp3lib/test.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'mp3lib/test.c') diff --git a/mp3lib/test.c b/mp3lib/test.c index ea0169185b..5246ad3ff8 100644 --- a/mp3lib/test.c +++ b/mp3lib/test.c @@ -18,7 +18,7 @@ static inline unsigned int GetTimer(void){ gettimeofday(&tv,&tz); // s=tv.tv_usec;s*=0.000001;s+=tv.tv_sec; return (tv.tv_sec*1000000+tv.tv_usec); -} +} static FILE* mp3file=NULL; @@ -38,10 +38,10 @@ int main(int argc,char* argv[]){ FILE *f=NULL; f=fopen("test.pcm","wb"); #endif - + mp3file=fopen((argc>1)?argv[1]:"test.mp3","rb"); if(!mp3file){ printf("file not found\n"); exit(1); } - + GetCpuCaps(&gCpuCaps); // MPEG Audio: @@ -51,7 +51,7 @@ int main(int argc,char* argv[]){ MP3_Init(); #endif MP3_samplerate=MP3_channels=0; - + time1=GetTimer(); while((len=MP3_DecodeFrame(buffer,-1))>0 && total<2000000){ total+=len; @@ -66,7 +66,7 @@ int main(int argc,char* argv[]){ printf("\nDecoding time: %8.6f\n",(float)time1*0.000001f); printf("Uncompressed size: %d bytes (%8.3f secs)\n",total,length); printf("CPU usage at normal playback: %5.2f %%\n",time1*0.0001f/length); - + fclose(mp3file); return 0; } -- cgit v1.2.3