summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorMike Lampard <mlampard@users.sourceforge.net>2001-10-27 17:48:25 +0000
committerMike Lampard <mlampard@users.sourceforge.net>2001-10-27 17:48:25 +0000
commita28c896a61f11557d9065def54a90ca3eba1ea37 (patch)
tree45947204c127b1a9965d1e955050a37e88bfa1fa /src
parentd6ebdd316a1ff92e139b03d899e4f8dbfdff82e5 (diff)
downloadxine-lib-a28c896a61f11557d9065def54a90ca3eba1ea37.tar.gz
xine-lib-a28c896a61f11557d9065def54a90ca3eba1ea37.tar.bz2
update request_dest_size to the latest api changes
CVS patchset: 898 CVS date: 2001/10/27 17:48:25
Diffstat (limited to 'src')
-rw-r--r--src/dxr3/video_out_dxr3enc.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/src/dxr3/video_out_dxr3enc.c b/src/dxr3/video_out_dxr3enc.c
index 66949abdb..78fd08636 100644
--- a/src/dxr3/video_out_dxr3enc.c
+++ b/src/dxr3/video_out_dxr3enc.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_dxr3enc.c,v 1.2 2001/10/27 17:27:48 hrm Exp $
+ * $Id: video_out_dxr3enc.c,v 1.3 2001/10/27 17:48:25 mlampard Exp $
*
* mpeg1 encoding video out plugin for the dxr3.
*
@@ -122,7 +122,7 @@ typedef struct dxr3_driver_s {
int video_iheight; // input height (before adding black bars)
int video_height; // output height (after adding bars)
int video_aspect;
- void (*request_dest_size) (int video_width, int video_height, int *dest_x,
+ void (*request_dest_size) (char *userdata, int video_width, int video_height, int *dest_x,
int *dest_y, int *dest_height, int *dest_width);
} dxr3_driver_t;
@@ -646,7 +646,8 @@ static int dxr3_set_property (vo_driver_t *this_gen,
strerror(errno));
if (this->overlay_enabled && !fullscreen){
int foo;
- this->request_dest_size(this->width,
+ char *foo2;
+ this->request_dest_size(foo2,this->width,
this->width/this->desired_ratio, &foo, &foo, &foo, &foo);
}
break;