diff options
Diffstat (limited to 'xine_frontend.c')
-rw-r--r-- | xine_frontend.c | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/xine_frontend.c b/xine_frontend.c index df494d21..56d171aa 100644 --- a/xine_frontend.c +++ b/xine_frontend.c @@ -4,7 +4,7 @@ * See the main source file 'xineliboutput.c' for copyright information and * how to reach the author. * - * $Id: xine_frontend.c,v 1.86 2008-11-14 23:20:03 phintuka Exp $ + * $Id: xine_frontend.c,v 1.87 2008-11-14 23:31:37 phintuka Exp $ * */ @@ -272,8 +272,8 @@ static void fe_frame_output_cb (void *data, *win_x = this->xpos; *win_y = this->ypos; - *dest_pixel_aspect = fe_dest_pixel_aspect(this, video_pixel_aspect, - video_width, video_height); + *dest_pixel_aspect = this->dest_pixel_aspect(this, video_pixel_aspect, + video_width, video_height); #if 0 if(this->cropping) { @@ -1730,5 +1730,8 @@ void init_fe(fe_t *fe) fe->fe.send_event = fe_send_event; fe->fe.send_input_event = fe_send_input_event; + + fe->dest_pixel_aspect = fe_dest_pixel_aspect; + fe->frame_output_handler = fe_frame_output_cb; } |