diff options
author | Daniel Caujolle-Bert <f1rmb@users.sourceforge.net> | 2003-11-11 18:44:50 +0000 |
---|---|---|
committer | Daniel Caujolle-Bert <f1rmb@users.sourceforge.net> | 2003-11-11 18:44:50 +0000 |
commit | 20ff61cb378d2550bedd582a5ce3eae07a84d731 (patch) | |
tree | 745f5e8278fca6aa49d06df6e2040e7f73201828 /src/demuxers/demux_slave.c | |
parent | 4d689a92b9b261e41607b4b94c07a6cbf8fd78b1 (diff) | |
download | xine-lib-20ff61cb378d2550bedd582a5ce3eae07a84d731.tar.gz xine-lib-20ff61cb378d2550bedd582a5ce3eae07a84d731.tar.bz2 |
rename internal API function (_x_<function>).
CVS patchset: 5721
CVS date: 2003/11/11 18:44:50
Diffstat (limited to 'src/demuxers/demux_slave.c')
-rw-r--r-- | src/demuxers/demux_slave.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/demuxers/demux_slave.c b/src/demuxers/demux_slave.c index 0a1638ac4..270da8838 100644 --- a/src/demuxers/demux_slave.c +++ b/src/demuxers/demux_slave.c @@ -21,7 +21,7 @@ */ /* - * $Id: demux_slave.c,v 1.6 2003/10/31 22:56:21 tmattern Exp $ + * $Id: demux_slave.c,v 1.7 2003/11/11 18:44:53 f1rmb Exp $ * * demuxer for slave "protocol" * master xine must be started with XINE_PARAM_BROADCASTER_PORT set, that is, @@ -138,7 +138,7 @@ static int demux_slave_next (demux_slave_t *this) { * of the initial pts. */ if( pts && this->send_newpts ) { - xine_demux_control_newpts( this->stream, pts, 0 ); + _x_demux_control_newpts( this->stream, pts, 0 ); this->send_newpts = 0; } @@ -153,7 +153,7 @@ static int demux_slave_next (demux_slave_t *this) { this->stream->metronom->get_option(this->stream->metronom, METRONOM_VPTS_OFFSET) < curvpts ) { xprintf(this->stream->xine, XINE_VERBOSITY_LOG, "we are running late, forcing newpts.\n"); - xine_demux_control_newpts( this->stream, pts - NETWORK_PREBUFFER, 0 ); + _x_demux_control_newpts( this->stream, pts - NETWORK_PREBUFFER, 0 ); } this->last_vpts = curvpts; } @@ -241,7 +241,7 @@ static int demux_slave_next (demux_slave_t *this) { } else if( !strcmp(this->scratch,"flush_engine") ) { - xine_demux_flush_engine( this->stream ); + _x_demux_flush_engine( this->stream ); n = this->scratch_used - (p-this->scratch); if( n ) memmove(this->scratch, p, n); @@ -279,7 +279,7 @@ static void demux_slave_send_headers (demux_plugin_t *this_gen) { this->video_fifo = this->stream->video_fifo; this->audio_fifo = this->stream->audio_fifo; - xine_demux_control_start(this->stream); + _x_demux_control_start(this->stream); this->status = DEMUX_OK; @@ -353,7 +353,7 @@ static demux_plugin_t *open_plugin (demux_class_t *class_gen, xine_stream_t *str case METHOD_BY_CONTENT: { - if (xine_demux_read_header(input, this->scratch, SCRATCH_SIZE) > 0) { + if (_x_demux_read_header(input, this->scratch, SCRATCH_SIZE) > 0) { if (!strncmp(this->scratch,slave_id_str,strlen(slave_id_str))) break; } |