diff options
author | Diego 'Flameeyes' Pettenò <flameeyes@gmail.com> | 2007-12-19 15:06:43 +0100 |
---|---|---|
committer | Diego 'Flameeyes' Pettenò <flameeyes@gmail.com> | 2007-12-19 15:06:43 +0100 |
commit | 441dab939754324fa760627c133dee1b0125c213 (patch) | |
tree | 2d5510d78b40d26db3193022d56cfb8920a7552a | |
parent | 91c06ff0cf45fc30ff3fb6f76d1c9b6c63e59d31 (diff) | |
download | xine-lib-441dab939754324fa760627c133dee1b0125c213.tar.gz xine-lib-441dab939754324fa760627c133dee1b0125c213.tar.bz2 |
Remove orphaned functions.
-rw-r--r-- | src/demuxers/demux_flv.c | 24 |
1 files changed, 0 insertions, 24 deletions
diff --git a/src/demuxers/demux_flv.c b/src/demuxers/demux_flv.c index 7f9dec5fe..131470a3e 100644 --- a/src/demuxers/demux_flv.c +++ b/src/demuxers/demux_flv.c @@ -870,30 +870,6 @@ static demux_plugin_t *open_plugin (demux_class_t *class_gen, xine_stream_t *str return &this->demux_plugin; } -static const char *get_description (demux_class_t *this_gen) { - return "Flash Video file demux plugin"; -} - -static const char *get_identifier (demux_class_t *this_gen) { - return "FLV"; -} - -static const char *get_extensions (demux_class_t *this_gen) { - return "flv"; -} - -static const char *get_mimetypes (demux_class_t *this_gen) { - return "video/x-flv: flv: Flash video;" - "video/flv: flv: Flash video;" - "application/x-flash-video: flv: Flash video;"; -} - -static void class_dispose (demux_class_t *this_gen) { - demux_flv_class_t *this = (demux_flv_class_t *) this_gen; - - free (this); -} - static void *init_plugin (xine_t *xine, void *data) { demux_flv_class_t *this; |