summaryrefslogtreecommitdiff
path: root/src/xine-engine/video_out.h
diff options
context:
space:
mode:
authorRich J Wareham <richwareham@users.sourceforge.net>2001-06-18 15:43:00 +0000
committerRich J Wareham <richwareham@users.sourceforge.net>2001-06-18 15:43:00 +0000
commita2c0482e17a5d1d0ea99d06b81e94c0e7b5cb4e2 (patch)
treec064d151203dd381e7606b570e8910cce018d449 /src/xine-engine/video_out.h
parent7e7483472eb410396ff7890577ac49bce9afab7a (diff)
downloadxine-lib-a2c0482e17a5d1d0ea99d06b81e94c0e7b5cb4e2.tar.gz
xine-lib-a2c0482e17a5d1d0ea99d06b81e94c0e7b5cb4e2.tar.bz2
Added very primitive overlay capacity (white line now appears if subtitles are enabled.)
CVS patchset: 210 CVS date: 2001/06/18 15:43:00
Diffstat (limited to 'src/xine-engine/video_out.h')
-rw-r--r--src/xine-engine/video_out.h7
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