summaryrefslogtreecommitdiff
path: root/src/demuxers/demux_ipmovie.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/demuxers/demux_ipmovie.c')
-rw-r--r--src/demuxers/demux_ipmovie.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/demuxers/demux_ipmovie.c b/src/demuxers/demux_ipmovie.c
index 80c26f93f..49405c0de 100644
--- a/src/demuxers/demux_ipmovie.c
+++ b/src/demuxers/demux_ipmovie.c
@@ -23,7 +23,7 @@
* For more information regarding the Interplay MVE file format, visit:
* http://www.pcisys.net/~melanson/codecs/
*
- * $Id: demux_ipmovie.c,v 1.16 2003/10/30 05:57:26 tmmm Exp $
+ * $Id: demux_ipmovie.c,v 1.17 2003/11/11 18:44:52 f1rmb Exp $
*/
#ifdef HAVE_CONFIG_H
@@ -523,7 +523,7 @@ static int open_ipmovie_file(demux_ipmovie_t *this) {
this->audio_type = 0;
- if (xine_demux_read_header(this->input, signature, IPMOVIE_SIGNATURE_SIZE) !=
+ if (_x_demux_read_header(this->input, signature, IPMOVIE_SIGNATURE_SIZE) !=
IPMOVIE_SIGNATURE_SIZE)
return 0;
@@ -574,7 +574,7 @@ static void demux_ipmovie_send_headers(demux_plugin_t *this_gen) {
xine_set_stream_info(this->stream, XINE_STREAM_INFO_VIDEO_HEIGHT, this->bih.biHeight);
/* send start buffers */
- xine_demux_control_start(this->stream);
+ _x_demux_control_start(this->stream);
/* send init info to video decoder */
this->bih.biSize = sizeof(xine_bmiheader);
@@ -628,7 +628,7 @@ static int demux_ipmovie_seek (demux_plugin_t *this_gen,
if( !this->stream->demux_thread_running ) {
/* send new pts */
- xine_demux_control_newpts(this->stream, 0, 0);
+ _x_demux_control_newpts(this->stream, 0, 0);
this->status = DEMUX_OK;
}
@@ -693,7 +693,7 @@ static demux_plugin_t *open_plugin (demux_class_t *class_gen, xine_stream_t *str
mrl = input->get_mrl (input);
extensions = class_gen->get_extensions (class_gen);
- if (!xine_demux_check_extension (mrl, extensions)) {
+ if (!_x_demux_check_extension (mrl, extensions)) {
free (this);
return NULL;
}