From 198f019a123344584b470ece3b9d847e0466a2a8 Mon Sep 17 00:00:00 2001 From: Michael Roitzsch Date: Sun, 22 Jun 2003 16:53:04 +0000 Subject: remove unused class members and fix compiler warning (-1 is used as a marker, so the "unsigned" is wrong) CVS patchset: 5088 CVS date: 2003/06/22 16:53:04 --- src/libsputext/demux_sputext.c | 15 +++++---------- 1 file changed, 5 insertions(+), 10 deletions(-) (limited to 'src') diff --git a/src/libsputext/demux_sputext.c b/src/libsputext/demux_sputext.c index 594ff0ff1..9ecccc993 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.17 2003/04/26 20:16:31 guenter Exp $ + * $Id: demux_sputext.c,v 1.18 2003/06/22 16:53:04 mroi Exp $ * * code based on old libsputext/xine_decoder.c * @@ -64,8 +64,8 @@ typedef struct { int lines; - unsigned long start; /* csecs */ - unsigned long end; /* csecs */ + long start; /* csecs */ + long end; /* csecs */ char *text[SUB_MAX_TEXT]; @@ -99,12 +99,8 @@ typedef struct { typedef struct demux_sputext_class_s { demux_class_t demux_class; - - xine_t *xine; - config_values_t *config; - - char *src_encoding; - char *dst_encoding; + + /* nothing needed here so far */ } demux_sputext_class_t; @@ -1001,7 +997,6 @@ static void *init_sputext_demux_class (xine_t *xine, void *data) { #endif this = xine_xmalloc (sizeof (demux_sputext_class_t)); - this->config = xine->config; this->demux_class.open_plugin = open_demux_plugin; this->demux_class.get_description = get_demux_description; -- cgit v1.2.3