diff options
author | Michael Roitzsch <mroi@users.sourceforge.net> | 2002-11-02 10:51:01 +0000 |
---|---|---|
committer | Michael Roitzsch <mroi@users.sourceforge.net> | 2002-11-02 10:51:01 +0000 |
commit | f75a48d52159e5c7e2b4e3ac8cddc701d20106ea (patch) | |
tree | 7006f09df5e91e2df7b4d817d3e4df198c0c13e5 /src/xine-engine/xine.c | |
parent | 4c67fad81397a79339d925cf6c77c6488781652f (diff) | |
download | xine-lib-f75a48d52159e5c7e2b4e3ac8cddc701d20106ea.tar.gz xine-lib-f75a48d52159e5c7e2b4e3ac8cddc701d20106ea.tar.bz2 |
since the order is new----->open-->play--\
dispose<-close<-stop<-/
we should call close in dipose instead of stop
CVS patchset: 3144
CVS date: 2002/11/02 10:51:01
Diffstat (limited to 'src/xine-engine/xine.c')
-rw-r--r-- | src/xine-engine/xine.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/xine-engine/xine.c b/src/xine-engine/xine.c index a6990ff6b..0129b9f21 100644 --- a/src/xine-engine/xine.c +++ b/src/xine-engine/xine.c @@ -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.c,v 1.186 2002/10/31 16:58:24 mroi Exp $ + * $Id: xine.c,v 1.187 2002/11/02 10:51:01 mroi Exp $ * * top-level xine functions * @@ -736,7 +736,7 @@ void xine_dispose (xine_stream_t *stream) { stream->status = XINE_STATUS_QUIT; - xine_stop(stream); + xine_close(stream); printf ("xine_exit: shutdown audio\n"); |