From c838ad4cf13d8e5c884a746888299f2a5e21b13b Mon Sep 17 00:00:00 2001 From: Miguel Freitas Date: Tue, 9 Apr 2002 04:35:17 +0000 Subject: new xine error (usually reported with unknown codecs) CVS patchset: 1700 CVS date: 2002/04/09 04:35:17 --- src/xine-engine/xine.c | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) (limited to 'src/xine-engine/xine.c') 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; -- cgit v1.2.3