diff options
author | Miguel Freitas <miguelfreitas@users.sourceforge.net> | 2002-12-27 03:40:07 +0000 |
---|---|---|
committer | Miguel Freitas <miguelfreitas@users.sourceforge.net> | 2002-12-27 03:40:07 +0000 |
commit | 34b80110e86716725dd815250ea9075129e7b2ee (patch) | |
tree | d95b38ff1b119017860788946c80c9167c2c6969 /src/xine-engine/video_out.h | |
parent | f4c8273538ebe374ecd2524d8fb6789fd3fb5796 (diff) | |
download | xine-lib-34b80110e86716725dd815250ea9075129e7b2ee.tar.gz xine-lib-34b80110e86716725dd815250ea9075129e7b2ee.tar.bz2 |
quite experimental changes on post plugin api to enable rewiring
of streams.
Michael, please let me know if you have a better idea! :)
CVS patchset: 3689
CVS date: 2002/12/27 03:40:07
Diffstat (limited to 'src/xine-engine/video_out.h')
-rw-r--r-- | src/xine-engine/video_out.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/xine-engine/video_out.h b/src/xine-engine/video_out.h index 89a5ffbb0..9c30d151a 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.76 2002/12/27 02:03:06 miguelfreitas Exp $ + * $Id: video_out.h,v 1.77 2002/12/27 03:40:07 miguelfreitas Exp $ * * * xine version of video_out.h @@ -173,6 +173,9 @@ struct xine_video_port_s { /* flush video_out fifo */ void (*flush) (xine_video_port_t *this); + /* return true if port is opened for this stream */ + int (*status) (xine_video_port_t *this, xine_stream_t *stream); + /* the driver in use */ vo_driver_t *driver; |