diff options
author | Michael Roitzsch <mroi@users.sourceforge.net> | 2003-06-22 16:53:04 +0000 |
---|---|---|
committer | Michael Roitzsch <mroi@users.sourceforge.net> | 2003-06-22 16:53:04 +0000 |
commit | 198f019a123344584b470ece3b9d847e0466a2a8 (patch) | |
tree | 0237fe1051103f7df905014e48ea0d45e4ff7343 | |
parent | 88ff161b2a4e44854f934adf82b0d1d872e20bac (diff) | |
download | xine-lib-198f019a123344584b470ece3b9d847e0466a2a8.tar.gz xine-lib-198f019a123344584b470ece3b9d847e0466a2a8.tar.bz2 |
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
-rw-r--r-- | src/libsputext/demux_sputext.c | 15 |
1 files changed, 5 insertions, 10 deletions
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; |