diff options
Diffstat (limited to 'src/demuxers/demux_fli.c')
-rw-r--r-- | src/demuxers/demux_fli.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/demuxers/demux_fli.c b/src/demuxers/demux_fli.c index 1fa1f45f9..c828eedf1 100644 --- a/src/demuxers/demux_fli.c +++ b/src/demuxers/demux_fli.c @@ -24,7 +24,7 @@ * avoid while programming a FLI decoder, visit: * http://www.pcisys.net/~melanson/codecs/ * - * $Id: demux_fli.c,v 1.45 2003/10/30 00:49:07 tmattern Exp $ + * $Id: demux_fli.c,v 1.46 2003/11/11 18:44:52 f1rmb Exp $ */ #ifdef HAVE_CONFIG_H @@ -83,7 +83,7 @@ typedef struct { /* returns 1 if the FLI file was opened successfully, 0 otherwise */ static int open_fli_file(demux_fli_t *this) { - if (xine_demux_read_header(this->input, this->fli_header, FLI_HEADER_SIZE) != FLI_HEADER_SIZE) + if (_x_demux_read_header(this->input, this->fli_header, FLI_HEADER_SIZE) != FLI_HEADER_SIZE) return 0; /* validate the file */ @@ -235,7 +235,7 @@ static void demux_fli_send_headers(demux_plugin_t *this_gen) { this->frame_pts_inc); /* send start buffers */ - xine_demux_control_start(this->stream); + _x_demux_control_start(this->stream); /* send init info to FLI decoder */ buf = this->video_fifo->buffer_pool_alloc (this->video_fifo); @@ -256,7 +256,7 @@ static int demux_fli_seek (demux_plugin_t *this_gen, off_t start_pos, int start_ 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; this->stream_len = this->input->get_length(this->input); @@ -321,7 +321,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; } |