diff options
author | Miguel Freitas <miguelfreitas@users.sourceforge.net> | 2003-11-15 14:54:30 +0000 |
---|---|---|
committer | Miguel Freitas <miguelfreitas@users.sourceforge.net> | 2003-11-15 14:54:30 +0000 |
commit | 1ace1c3f18fb48bab32a2ee5b69ae6e3bce12850 (patch) | |
tree | 21c51a97dcc8659809d2c8df9f5ce363bddadb2d /src/libsputext/demux_sputext.c | |
parent | 443d766f9506dfcc19de9c8fc224a61a0922f722 (diff) | |
download | xine-lib-1ace1c3f18fb48bab32a2ee5b69ae6e3bce12850.tar.gz xine-lib-1ace1c3f18fb48bab32a2ee5b69ae6e3bce12850.tar.bz2 |
start xine_stream_t separation (public/private).
(we should finish this before rc3.)
- stream_info and meta_info variables are private now.
obs: everything must be recompiled due xine_stream_t changes
CVS patchset: 5733
CVS date: 2003/11/15 14:54:30
Diffstat (limited to 'src/libsputext/demux_sputext.c')
-rw-r--r-- | src/libsputext/demux_sputext.c | 8 |
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 } }; |