diff options
author | Miguel Freitas <miguelfreitas@users.sourceforge.net> | 2002-04-09 04:35:17 +0000 |
---|---|---|
committer | Miguel Freitas <miguelfreitas@users.sourceforge.net> | 2002-04-09 04:35:17 +0000 |
commit | c838ad4cf13d8e5c884a746888299f2a5e21b13b (patch) | |
tree | a2f4c7c2c80b425bea47797afc70e9150186dc90 /src/xine-engine/xine.c | |
parent | e9ec474224055c5801d67584c37c21f599312b60 (diff) | |
download | xine-lib-c838ad4cf13d8e5c884a746888299f2a5e21b13b.tar.gz xine-lib-c838ad4cf13d8e5c884a746888299f2a5e21b13b.tar.bz2 |
new xine error (usually reported with unknown codecs)
CVS patchset: 1700
CVS date: 2002/04/09 04:35:17
Diffstat (limited to 'src/xine-engine/xine.c')
-rw-r--r-- | src/xine-engine/xine.c | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/src/xine-engine/xine.c b/src/xine-engine/xine.c index f6694dcd9..b2207beca 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.114 2002/04/09 03:38:01 miguelfreitas Exp $ + * $Id: xine.c,v 1.115 2002/04/09 04:35:17 miguelfreitas Exp $ * * top-level xine functions * @@ -402,12 +402,19 @@ int xine_play (xine_t *this, char *mrl, pos, start_time); if (this->cur_demuxer_plugin->get_status(this->cur_demuxer_plugin) != DEMUX_OK) { + xine_log (this, XINE_LOG_MSG, _("xine_play: demuxer failed to start\n")); + this->err = XINE_ERROR_DEMUXER_FAILED; + if( this->status == XINE_STOP ) this->cur_input_plugin->close(this->cur_input_plugin); + pthread_mutex_unlock (&this->xine_lock); + + return 0; + } else { this->status = XINE_PLAY; |