diff options
author | Torsten Jager <t.jager@gmx.de> | 2015-08-08 16:36:20 +0200 |
---|---|---|
committer | Torsten Jager <t.jager@gmx.de> | 2015-08-08 16:36:20 +0200 |
commit | 6ea419dc98ba8407d4a979623fa776d655d45751 (patch) | |
tree | d7f943f436006c023059208426451156393cd6ce /src/video_out/video_out_opengl2.c | |
parent | 3df13323cf6c6ae991b726ed7748b701ece3e33a (diff) | |
download | xine-lib-6ea419dc98ba8407d4a979623fa776d655d45751.tar.gz xine-lib-6ea419dc98ba8407d4a979623fa776d655d45751.tar.bz2 |
video_out_opengl2: allow more frames for DR1 safety.
Diffstat (limited to 'src/video_out/video_out_opengl2.c')
-rw-r--r-- | src/video_out/video_out_opengl2.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/video_out/video_out_opengl2.c b/src/video_out/video_out_opengl2.c index c2f7b2012..3d73d3206 100644 --- a/src/video_out/video_out_opengl2.c +++ b/src/video_out/video_out_opengl2.c @@ -1,6 +1,6 @@ /* * kate: space-indent on; indent-width 2; mixedindent off; indent-mode cstyle; remove-trailing-space on; - * Copyright (C) 2012-2014 the xine project + * Copyright (C) 2012-2015 the xine project * Copyright (C) 2012 Christophe Thommeret <hftom@free.fr> * * This file is part of xine, a free video player. @@ -1422,7 +1422,7 @@ static int opengl2_get_property( vo_driver_t *this_gen, int property ) switch (property) { case VO_PROP_MAX_NUM_FRAMES: - return 15; + return 22; case VO_PROP_WINDOW_WIDTH: return this->sc.gui_width; case VO_PROP_WINDOW_HEIGHT: |