diff options
author | Miguel Freitas <miguelfreitas@users.sourceforge.net> | 2002-05-06 00:48:09 +0000 |
---|---|---|
committer | Miguel Freitas <miguelfreitas@users.sourceforge.net> | 2002-05-06 00:48:09 +0000 |
commit | 56f0d5e36f4855d4f65093c8854fec8b95f0e27e (patch) | |
tree | 57caad005c65708f423ec27e237439a494e15cee /src/video_out/video_out_directfb.c | |
parent | 259a762d997a3fc55839d291ead7858784f7931f (diff) | |
download | xine-lib-56f0d5e36f4855d4f65093c8854fec8b95f0e27e.tar.gz xine-lib-56f0d5e36f4855d4f65093c8854fec8b95f0e27e.tar.bz2 |
- remove deprecated zoom_mpeg1 (resizing policies are ui's job now)
- use the same video.disable_scaling setting in fb driver
CVS patchset: 1854
CVS date: 2002/05/06 00:48:09
Diffstat (limited to 'src/video_out/video_out_directfb.c')
-rw-r--r-- | src/video_out/video_out_directfb.c | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/src/video_out/video_out_directfb.c b/src/video_out/video_out_directfb.c index a0dd3991f..0ab7acfe6 100644 --- a/src/video_out/video_out_directfb.c +++ b/src/video_out/video_out_directfb.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_directfb.c,v 1.7 2002/03/07 13:26:15 jcdutton Exp $ + * $Id: video_out_directfb.c,v 1.8 2002/05/06 00:48:09 miguelfreitas Exp $ * * DirectFB based output plugin. * Rich Wareham <richwareham@users.sourceforge.net> @@ -101,9 +101,6 @@ typedef struct directfb_driver_s { int last_frame_height; /* original size */ int last_frame_ratio_code; - /* TODO: check */ - int zoom_mpeg1; - /* display anatomy */ double display_ratio; /* given by visual parameter from init function */ void *user_data; @@ -540,9 +537,6 @@ vo_driver_t *init_video_out_plugin (config_values_t *config, void *visual_gen) { this->config = config; this->frame_width = 0; this->frame_height = 0; - this->zoom_mpeg1 = config->register_bool (config, "video.zoom_mpeg1", 1, - "Zoom small video formats to double size", - NULL, NULL, NULL); this->vo_driver.get_capabilities = directfb_get_capabilities; this->vo_driver.alloc_frame = directfb_alloc_frame; |