diff options
author | Mike Melanson <mike@multimedia.cx> | 2002-10-27 15:51:53 +0000 |
---|---|---|
committer | Mike Melanson <mike@multimedia.cx> | 2002-10-27 15:51:53 +0000 |
commit | fb94d51c62b13c2db1c8daa4cf500cd95c884a06 (patch) | |
tree | 66c5fc78401ac818190aa4ee6e206103ba259ea1 /src/demuxers/demux_idcin.c | |
parent | 6d71c5de7c010e19ab9970064f9997df746725f7 (diff) | |
download | xine-lib-fb94d51c62b13c2db1c8daa4cf500cd95c884a06.tar.gz xine-lib-fb94d51c62b13c2db1c8daa4cf500cd95c884a06.tar.bz2 |
eliminate obsolete VALID_ENDS strings
CVS patchset: 3041
CVS date: 2002/10/27 15:51:53
Diffstat (limited to 'src/demuxers/demux_idcin.c')
-rw-r--r-- | src/demuxers/demux_idcin.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/demuxers/demux_idcin.c b/src/demuxers/demux_idcin.c index 6d279a63c..257da4ae1 100644 --- a/src/demuxers/demux_idcin.c +++ b/src/demuxers/demux_idcin.c @@ -63,7 +63,7 @@ * - if any bytes exceed 63, do not shift the bytes at all before * transmitting them to the video decoder * - * $Id: demux_idcin.c,v 1.20 2002/10/26 22:00:51 guenter Exp $ + * $Id: demux_idcin.c,v 1.21 2002/10/27 15:51:53 tmmm Exp $ */ #ifdef HAVE_CONFIG_H @@ -84,7 +84,6 @@ #include "demux.h" #include "bswap.h" -#define VALID_ENDS "cin" #define IDCIN_HEADER_SIZE 20 #define HUFFMAN_TABLE_SIZE 65536 #define IDCIN_FRAME_PTS_INC (90000 / 14) @@ -494,6 +493,9 @@ static void demux_idcin_stop (demux_plugin_t *this_gen) { } static void demux_idcin_dispose (demux_plugin_t *this) { + + demux_idcin_stop(this); + free(this); } |