summaryrefslogtreecommitdiffstats
path: root/gui/mplayer/gui_common.c
diff options
context:
space:
mode:
authorUoti Urpala <uau@glyph.nonexistent.invalid>2009-07-07 02:26:13 +0300
committerUoti Urpala <uau@glyph.nonexistent.invalid>2009-07-07 02:34:35 +0300
commit0eb321bf2c1cc0e048faff26a01f86cdd3ec254f (patch)
tree71cb9bd9ed121156d3382066c0722c73189afe04 /gui/mplayer/gui_common.c
parent6d908205fbadbdf7ccdc6c5e0eb918f0b43f16e0 (diff)
downloadmpv-0eb321bf2c1cc0e048faff26a01f86cdd3ec254f.tar.bz2
mpv-0eb321bf2c1cc0e048faff26a01f86cdd3ec254f.tar.xz
Remove trailing whitespace from most files
Diffstat (limited to 'gui/mplayer/gui_common.c')
-rw-r--r--gui/mplayer/gui_common.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/gui/mplayer/gui_common.c b/gui/mplayer/gui_common.c
index d6df8b0f39..646b76929b 100644
--- a/gui/mplayer/gui_common.c
+++ b/gui/mplayer/gui_common.c
@@ -54,7 +54,7 @@ static inline void TranslateFilename( int c,char * tmp,size_t tmplen )
{
int i;
char * p;
-
+
switch ( guiIntfStruct.StreamType )
{
case STREAMTYPE_STREAM:
@@ -214,16 +214,16 @@ void PutImage( txSample * bf,int x,int y,int max,int ofs )
for ( iy=y;iy < (int)(y+bf->Height / max);iy++ )
for ( ix=x;ix < (int)(x+bf->Width);ix++ )
{
- tmp=drw[i++];
+ tmp=drw[i++];
if ( tmp != 0x00ff00ff ) buf[iy * image_width + ix]=tmp;
}
#else
- yc=y * image_width;
+ yc=y * image_width;
for ( iy=y;iy < (int)(y+bf->Height / max);iy++ )
{
for ( ix=x;ix < (int)(x+bf->Width);ix++ )
{
- tmp=drw[i++];
+ tmp=drw[i++];
if ( tmp != 0x00ff00ff ) buf[yc + ix]=tmp;
}
yc+=image_width;
@@ -248,7 +248,7 @@ void SimplePotmeterPutImage( txSample * bf,int x,int y,float frac )
{
for ( ix=x;ix < (int)(x+w);ix++ )
{
- tmp=drw[i++];
+ tmp=drw[i++];
if ( tmp != 0x00ff00ff ) buf[iy * image_width + ix]=tmp;
}
i+=r;