From 7505ad157b1bc5b912430537e4aba444c1c23662 Mon Sep 17 00:00:00 2001 From: Miguel Freitas Date: Mon, 28 Oct 2002 03:24:42 +0000 Subject: 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 --- include/xine.h.in | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) (limited to 'include') 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 * @@ -168,11 +168,17 @@ int xine_trick_mode (xine_stream_t *stream, int mode, int value); 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, -- cgit v1.2.3