summaryrefslogtreecommitdiff
path: root/src/xine-engine/vo_scale.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/xine-engine/vo_scale.h')
-rw-r--r--src/xine-engine/vo_scale.h15
1 files changed, 6 insertions, 9 deletions
diff --git a/src/xine-engine/vo_scale.h b/src/xine-engine/vo_scale.h
index a3f5d8d5e..546cf2ee1 100644
--- a/src/xine-engine/vo_scale.h
+++ b/src/xine-engine/vo_scale.h
@@ -17,15 +17,12 @@
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
*
- * $Id: vo_scale.h,v 1.6 2003/04/20 21:13:26 guenter Exp $
+ * $Id: vo_scale.h,v 1.7 2003/04/25 15:34:48 mroi Exp $
*
* vo_scale.h
*
* keeps video scaling information
*/
-/* For the _MSC_VER (Win32) port the "this" variable
- * was removed from all prototypes.and changed to "met"
- */
#ifndef HAVE_VO_SCALE_H
#define HAVE_VO_SCALE_H
@@ -153,27 +150,27 @@ typedef struct vo_scale_s vo_scale_t;
* taking into account aspect ratio and zoom factor
*/
-void vo_scale_compute_ideal_size (vo_scale_t *);
+void vo_scale_compute_ideal_size (vo_scale_t *self);
/*
* make ideal width/height "fit" into the gui
*/
-void vo_scale_compute_output_size (vo_scale_t *);
+void vo_scale_compute_output_size (vo_scale_t *self);
/*
* return true if a redraw is needed due resizing, zooming,
* aspect ratio changing, etc.
*/
-int vo_scale_redraw_needed (vo_scale_t *);
+int vo_scale_redraw_needed (vo_scale_t *self);
/*
*
*/
-void vo_scale_translate_gui2video(vo_scale_t *,
+void vo_scale_translate_gui2video(vo_scale_t *self,
int x, int y,
int *vid_x, int *vid_y);
@@ -187,7 +184,7 @@ char *vo_scale_aspect_ratio_name(int a);
* initialize rescaling struct
*/
-void vo_scale_init(vo_scale_t *, int support_zoom, int scaling_disabled, config_values_t *config );
+void vo_scale_init(vo_scale_t *self, int support_zoom, int scaling_disabled, config_values_t *config );
#ifdef __cplusplus
}