diff options
Diffstat (limited to 'src/demuxers/demux_str.c')
-rw-r--r-- | src/demuxers/demux_str.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/demuxers/demux_str.c b/src/demuxers/demux_str.c index 7f3773e7e..924e2bf18 100644 --- a/src/demuxers/demux_str.c +++ b/src/demuxers/demux_str.c @@ -24,7 +24,7 @@ * This demuxer handles either raw STR files (which are just a concatenation * of raw compact disc sectors) or STR files with RIFF headers. * - * $Id: demux_str.c,v 1.16 2003/10/31 22:56:21 tmattern Exp $ + * $Id: demux_str.c,v 1.17 2003/11/11 18:44:53 f1rmb Exp $ */ /* @@ -363,7 +363,7 @@ static int demux_str_send_chunk(demux_plugin_t *this_gen) { buf->pts = frame_number * FRAME_DURATION; if (this->seek_flag) { - xine_demux_control_newpts(this->stream, buf->pts, 0); + _x_demux_control_newpts(this->stream, buf->pts, 0); this->seek_flag = 0; } @@ -408,7 +408,7 @@ static int demux_str_send_chunk(demux_plugin_t *this_gen) { ((sector[0x13] & 0x04) ? 18900 : 37800); if (this->seek_flag) { - xine_demux_control_newpts(this->stream, buf->pts, 0); + _x_demux_control_newpts(this->stream, buf->pts, 0); this->seek_flag = 0; } @@ -441,7 +441,7 @@ static void demux_str_send_headers(demux_plugin_t *this_gen) { this->status = DEMUX_OK; /* send start buffers */ - xine_demux_control_start(this->stream); + _x_demux_control_start(this->stream); /* load stream information */ xine_set_stream_info(this->stream, XINE_STREAM_INFO_SEEKABLE, 1); @@ -503,7 +503,7 @@ static void demux_str_send_headers(demux_plugin_t *this_gen) { static int demux_str_seek (demux_plugin_t *this_gen, off_t start_pos, int start_time) { demux_str_t *this = (demux_str_t *) this_gen; - xine_demux_flush_engine (this->stream); + _x_demux_flush_engine (this->stream); /* round to ensure we start on a sector */ start_pos /= CD_RAW_SECTOR_SIZE; @@ -584,7 +584,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; } |