diff options
author | Daniel Caujolle-Bert <f1rmb@users.sourceforge.net> | 2002-08-30 15:03:00 +0000 |
---|---|---|
committer | Daniel Caujolle-Bert <f1rmb@users.sourceforge.net> | 2002-08-30 15:03:00 +0000 |
commit | f9e3b21413736ee440612e793baa06939735948e (patch) | |
tree | b7edb4c10ddab2a4c428d883f66b80b11eb341ec | |
parent | baf143202f8271a0d642431b2c0c74f35d6d99a1 (diff) | |
download | xine-lib-f9e3b21413736ee440612e793baa06939735948e.tar.gz xine-lib-f9e3b21413736ee440612e793baa06939735948e.tar.bz2 |
be sure to pass right mrl (this->cur_mrl is wrong most of the time (logo mrl)).
CVS patchset: 2564
CVS date: 2002/08/30 15:03:00
-rw-r--r-- | src/xine-engine/video_decoder.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/xine-engine/video_decoder.c b/src/xine-engine/video_decoder.c index f8292515c..8f5b71395 100644 --- a/src/xine-engine/video_decoder.c +++ b/src/xine-engine/video_decoder.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: video_decoder.c,v 1.93 2002/08/30 14:19:48 f1rmb Exp $ + * $Id: video_decoder.c,v 1.94 2002/08/30 15:03:00 f1rmb Exp $ * */ @@ -246,7 +246,7 @@ void *video_decoder_loop (void *this_gen) { xine_ui_event_t ui_event; ui_event.event.type = XINE_EVENT_OUTPUT_NO_VIDEO; - ui_event.data = this->cur_mrl; + ui_event.data = this->cur_input_plugin->get_mrl(this->cur_input_plugin); xine_send_event(this, &ui_event.event); } break; @@ -287,7 +287,7 @@ void *video_decoder_loop (void *this_gen) { xine_report_codec( this, XINE_CODEC_VIDEO, 0, buf->type, 1); ui_event.event.type = XINE_EVENT_OUTPUT_VIDEO; - ui_event.data = this->cur_mrl; + ui_event.data = this->cur_input_plugin->get_mrl(this->cur_input_plugin); xine_send_event(this, &ui_event.event); } |