summaryrefslogtreecommitdiff
path: root/src/libsputext/demux_sputext.c
diff options
context:
space:
mode:
authorDaniel Caujolle-Bert <f1rmb@users.sourceforge.net>2003-11-11 18:44:50 +0000
committerDaniel Caujolle-Bert <f1rmb@users.sourceforge.net>2003-11-11 18:44:50 +0000
commit20ff61cb378d2550bedd582a5ce3eae07a84d731 (patch)
tree745f5e8278fca6aa49d06df6e2040e7f73201828 /src/libsputext/demux_sputext.c
parent4d689a92b9b261e41607b4b94c07a6cbf8fd78b1 (diff)
downloadxine-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/libsputext/demux_sputext.c')
-rw-r--r--src/libsputext/demux_sputext.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/libsputext/demux_sputext.c b/src/libsputext/demux_sputext.c
index 3aecee27a..824159792 100644
--- a/src/libsputext/demux_sputext.c
+++ b/src/libsputext/demux_sputext.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: demux_sputext.c,v 1.25 2003/11/04 00:24:52 f1rmb Exp $
+ * $Id: demux_sputext.c,v 1.26 2003/11/11 18:44:54 f1rmb Exp $
*
* code based on old libsputext/xine_decoder.c
*
@@ -879,8 +879,8 @@ static int demux_sputext_seek (demux_plugin_t *this_gen,
this->cur = 0;
this->status = DEMUX_OK;
- xine_demux_flush_engine (this->stream);
- xine_demux_control_newpts(this->stream, 0, 0);
+ _x_demux_flush_engine (this->stream);
+ _x_demux_control_newpts(this->stream, 0, 0);
return this->status;
}
@@ -892,7 +892,7 @@ static void demux_sputext_send_headers(demux_plugin_t *this_gen) {
lprintf("demux_sputext: send_headers() called\n");
- xine_demux_control_start(this->stream);
+ _x_demux_control_start(this->stream);
this->stream->stream_info[XINE_STREAM_INFO_HAS_VIDEO] = 0;
this->stream->stream_info[XINE_STREAM_INFO_HAS_AUDIO] = 0;
@@ -1031,7 +1031,7 @@ static void *init_sputext_demux_class (xine_t *xine, void *data) {
demux_sputext_class_t *this ;
lprintf("demux_sputext: initializing\n");
-
+
this = xine_xmalloc (sizeof (demux_sputext_class_t));
this->demux_class.open_plugin = open_demux_plugin;