summaryrefslogtreecommitdiff
path: root/ffplay.c
diff options
context:
space:
mode:
authorStefano Sabatini <stefano.sabatini-lala@poste.it>2011-01-15 01:28:00 +0000
committerStefano Sabatini <stefano.sabatini-lala@poste.it>2011-01-15 01:28:00 +0000
commitd881a0e89548abaafb8466192923fb10905dabef (patch)
treed7bc81d1edbc4470d04bc93f1362f2109d8d6248 /ffplay.c
parent2a1f431d38ea9c05abb215d70c7dc09cdb6888ab (diff)
Cosmetics: fix weird indent.
Originally committed as revision 26350 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'ffplay.c')
-rw-r--r--ffplay.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/ffplay.c b/ffplay.c
index a52ec12b73..f385ad8305 100644
--- a/ffplay.c
+++ b/ffplay.c
@@ -1016,12 +1016,12 @@ static int refresh_thread(void *opaque)
{
VideoState *is= opaque;
while(!is->abort_request){
- SDL_Event event;
- event.type = FF_REFRESH_EVENT;
- event.user.data1 = opaque;
+ SDL_Event event;
+ event.type = FF_REFRESH_EVENT;
+ event.user.data1 = opaque;
if(!is->refresh){
is->refresh=1;
- SDL_PushEvent(&event);
+ SDL_PushEvent(&event);
}
usleep(is->audio_st && is->show_audio ? rdftspeed*1000 : 5000); //FIXME ideally we should wait the correct time but SDLs event passing is so slow it would be silly
}