Browse Source

remove code duplication

Originally committed as revision 7386 to svn://svn.ffmpeg.org/ffmpeg/trunk
tags/v0.5
Michael Niedermayer 19 years ago
parent
commit
c03312ccac
1 changed files with 1 additions and 14 deletions
  1. +1
    -14
      ffplay.c

+ 1
- 14
ffplay.c View File

@@ -2142,26 +2142,13 @@ static void stream_cycle_channel(VideoState *is, int codec_type)


static void toggle_full_screen(void) static void toggle_full_screen(void)
{ {
int w, h, flags;
is_full_screen = !is_full_screen; is_full_screen = !is_full_screen;
if (!fs_screen_width) { if (!fs_screen_width) {
/* use default SDL method */ /* use default SDL method */
SDL_WM_ToggleFullScreen(screen); SDL_WM_ToggleFullScreen(screen);
} else { } else {
/* use the recorded resolution */ /* use the recorded resolution */
flags = SDL_HWSURFACE|SDL_ASYNCBLIT|SDL_HWACCEL;
if (is_full_screen) {
w = fs_screen_width;
h = fs_screen_height;
flags |= SDL_FULLSCREEN;
} else {
w = screen_width;
h = screen_height;
flags |= SDL_RESIZABLE;
}
screen = SDL_SetVideoMode(w, h, 0, flags);
cur_stream->width = w;
cur_stream->height = h;
video_open(cur_stream);
} }
} }




Loading…
Cancel
Save