summaryrefslogtreecommitdiff
path: root/src/libsputext/demux_sputext.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/libsputext/demux_sputext.c')
-rw-r--r--src/libsputext/demux_sputext.c8
1 files changed, 3 insertions, 5 deletions
diff --git a/src/libsputext/demux_sputext.c b/src/libsputext/demux_sputext.c
index 9391f20a8..edb20c31b 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.27 2003/11/15 13:01:15 miguelfreitas Exp $
+ * $Id: demux_sputext.c,v 1.28 2003/11/15 14:54:31 miguelfreitas Exp $
*
* code based on old libsputext/xine_decoder.c
*
@@ -868,7 +868,7 @@ static int demux_sputext_send_chunk (demux_plugin_t *this_gen) {
}
static int demux_sputext_seek (demux_plugin_t *this_gen,
- off_t start_pos, int start_time) {
+ off_t start_pos, int start_time, int playing) {
demux_sputext_t *this = (demux_sputext_t*)this_gen;
lprintf("demux_sputext: seek() called\n");
@@ -942,8 +942,6 @@ static demux_plugin_t *open_demux_plugin (demux_class_t *class_gen, xine_stream_
this->demux_plugin.dispose = demux_sputext_dispose;
this->demux_plugin.get_status = demux_sputext_get_status;
this->demux_plugin.get_stream_length = demux_sputext_get_stream_length;
- this->demux_plugin.get_video_frame = NULL;
- this->demux_plugin.got_video_frame_cb= NULL;
this->demux_plugin.get_capabilities = demux_sputext_get_capabilities;
this->demux_plugin.get_optional_data = demux_sputext_get_optional_data;
this->demux_plugin.demux_class = class_gen;
@@ -1046,6 +1044,6 @@ static void *init_sputext_demux_class (xine_t *xine, void *data) {
plugin_info_t xine_plugin_info[] = {
/* type, API, "name", version, special_info, init_function */
- { PLUGIN_DEMUX, 22, "sputext", XINE_VERSION_CODE, NULL, &init_sputext_demux_class },
+ { PLUGIN_DEMUX, 23, "sputext", XINE_VERSION_CODE, NULL, &init_sputext_demux_class },
{ PLUGIN_NONE, 0, "", 0, NULL, NULL }
};