summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorMiguel Freitas <miguelfreitas@users.sourceforge.net>2002-10-28 03:24:42 +0000
committerMiguel Freitas <miguelfreitas@users.sourceforge.net>2002-10-28 03:24:42 +0000
commit7505ad157b1bc5b912430537e4aba444c1c23662 (patch)
treeaaa5c6d37ca43041184de561e72fef0a665b1fee /include
parentc98152c4db1ea9651b79d44e06567df3fa2c62ce (diff)
downloadxine-lib-7505ad157b1bc5b912430537e4aba444c1c23662.tar.gz
xine-lib-7505ad157b1bc5b912430537e4aba444c1c23662.tar.bz2
hey, i want to join xine breakage party! (what do you wanna break today? tm)
- time to cleanup demuxer mess... no more pthread stuff on any demuxer. of course i haven't tested all demuxers, but they at least compile. (sorry Mike, we will need to move a few variables around to make most of your demuxers work again - not big deal i think) - make api more consistent by providing xine_open/xine_close and xine_start/xine_stop. CVS patchset: 3058 CVS date: 2002/10/28 03:24:42
Diffstat (limited to 'include')
-rw-r--r--include/xine.h.in10
1 files changed, 8 insertions, 2 deletions
diff --git a/include/xine.h.in b/include/xine.h.in
index 1d23efd3e..f48b4d508 100644
--- a/include/xine.h.in
+++ b/include/xine.h.in
@@ -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: xine.h.in,v 1.29 2002/10/26 22:50:52 guenter Exp $
+ * $Id: xine.h.in,v 1.30 2002/10/28 03:24:42 miguelfreitas Exp $
*
* public xine-lib (libxine) interface and documentation
*
@@ -169,10 +169,16 @@ uint32_t xine_get_stream_info (xine_stream_t *stream, int info);
const char *xine_get_meta_info (xine_stream_t *stream, int info);
/*
+ * stop stream playback
+ * xine_stream_t stays valid for new xine_open or xine_play
+ */
+void xine_stop (xine_stream_t *stream);
+
+/*
* stop stream playback, free all stream-related resources
* xine_stream_t stays valid for new xine_open
*/
-void xine_stop (xine_stream_t *stream);
+void xine_close (xine_stream_t *stream);
/*
* ask current/recent input plugin to eject media - may or may not work,