diff options
author | Michael Roitzsch <mroi@users.sourceforge.net> | 2004-10-09 06:45:48 +0000 |
---|---|---|
committer | Michael Roitzsch <mroi@users.sourceforge.net> | 2004-10-09 06:45:48 +0000 |
commit | 77b3e88fe2cf735c457756c8fdbe3f1c78d5ef85 (patch) | |
tree | f2853eaddbaed754809e8b77c3e432f93472d8d2 /src | |
parent | a547395c1aecf7a5662e2c824fc0a2a45ca0bf1a (diff) | |
download | xine-lib-77b3e88fe2cf735c457756c8fdbe3f1c78d5ef85.tar.gz xine-lib-77b3e88fe2cf735c457756c8fdbe3f1c78d5ef85.tar.bz2 |
two more plugins for the centralized scaling option
CVS patchset: 7028
CVS date: 2004/10/09 06:45:48
Diffstat (limited to 'src')
-rw-r--r-- | src/video_out/video_out_fb.c | 10 | ||||
-rw-r--r-- | src/video_out/video_out_opengl.c | 3 |
2 files changed, 2 insertions, 11 deletions
diff --git a/src/video_out/video_out_fb.c b/src/video_out/video_out_fb.c index d3841fd87..2c99bf58c 100644 --- a/src/video_out/video_out_fb.c +++ b/src/video_out/video_out_fb.c @@ -17,7 +17,7 @@ * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA * - * $Id: video_out_fb.c,v 1.37 2004/09/22 20:29:15 miguelfreitas Exp $ + * $Id: video_out_fb.c,v 1.38 2004/10/09 06:45:48 mroi Exp $ * * video_out_fb.c, frame buffer xine driver by Miguel Freitas * @@ -998,14 +998,6 @@ static vo_driver_t *fb_open_plugin(video_driver_class_t *class_gen, this->sc.user_data = visual->user_data; } - this->sc.scaling_disabled = - config->register_bool(config, "video.disable_scaling", 0, - _("disable all video scaling"), - _("You can disable video scaling globally. The image will then no longer " - "adapt to the size of the video window, which can dramatically " - "reduce CPU usage."), - 10, NULL, NULL); - setup_buffers(this, &this->fb_var); if(this->depth > 16) diff --git a/src/video_out/video_out_opengl.c b/src/video_out/video_out_opengl.c index 9a96698c0..d6365771a 100644 --- a/src/video_out/video_out_opengl.c +++ b/src/video_out/video_out_opengl.c @@ -17,7 +17,7 @@ * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA * - * $Id: video_out_opengl.c,v 1.40 2004/09/22 20:29:15 miguelfreitas Exp $ + * $Id: video_out_opengl.c,v 1.41 2004/10/09 06:45:48 mroi Exp $ * * video_out_glut.c, glut based OpenGL rendering interface for xine * Matthias Hopf <mat@mshopf.de> @@ -937,7 +937,6 @@ static vo_driver_t *opengl_open_plugin (video_driver_class_t *class_gen, this->sc.dest_size_cb = visual->dest_size_cb; this->sc.user_data = visual->user_data; this->sc.user_ratio = XINE_VO_ASPECT_AUTO; - this->sc.scaling_disabled = 0; /* We will not be able to use the current drawable... */ this->drawable = None; |