Browse Source

Do not call SDL_SetVideoMode() with the same size as previously

as this blanks the window.

Originally committed as revision 22433 to svn://svn.ffmpeg.org/ffmpeg/trunk
tags/v0.6
Michael Niedermayer 15 years ago
parent
commit
d3d7b12edf
1 changed files with 4 additions and 0 deletions
  1. +4
    -0
      ffplay.c

+ 4
- 0
ffplay.c View File

@@ -965,6 +965,10 @@ static int video_open(VideoState *is){
w = 640;
h = 480;
}
if(screen && is->width == screen->w && screen->w == w
&& is->height== screen->h && screen->h == h)
return 0;

#ifndef __APPLE__
screen = SDL_SetVideoMode(w, h, 0, flags);
#else


Loading…
Cancel
Save