diff options
Diffstat (limited to 'src/xine-engine/video_out.h')
-rw-r--r-- | src/xine-engine/video_out.h | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/src/xine-engine/video_out.h b/src/xine-engine/video_out.h index f49464c77..becfba058 100644 --- a/src/xine-engine/video_out.h +++ b/src/xine-engine/video_out.h @@ -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.h,v 1.7 2001/06/09 11:34:01 heikos Exp $ + * $Id: video_out.h,v 1.8 2001/06/18 15:43:01 richwareham Exp $ * * * xine version of video_out.h @@ -49,6 +49,8 @@ typedef struct vo_driver_s vo_driver_t ; typedef struct vo_instance_s vo_instance_t; typedef struct img_buf_fifo_s img_buf_fifo_t; +typedef struct spudec_s spudec_t; + /* public part, video drivers may add private fields */ struct vo_frame_s { struct vo_frame_s *next; @@ -120,6 +122,7 @@ struct vo_instance_s { vo_driver_t *driver; metronom_t *metronom; + spudec_t *spu_decoder; img_buf_fifo_t *free_img_buf_queue; img_buf_fifo_t *display_img_buf_queue; @@ -239,7 +242,7 @@ struct vo_driver_s { * a given video driver */ -vo_instance_t *vo_new_instance (vo_driver_t *driver, metronom_t *metronom) ; +vo_instance_t *vo_new_instance (vo_driver_t *driver, metronom_t *metronom, spudec_t *spu_decoder) ; /* * to build a dynamic video output plugin |