diff options
author | Guenter Bartsch <guenter@users.sourceforge.net> | 2001-10-20 02:01:51 +0000 |
---|---|---|
committer | Guenter Bartsch <guenter@users.sourceforge.net> | 2001-10-20 02:01:51 +0000 |
commit | 439907def64a3bdbc3fd6a73af623c6fb7a55497 (patch) | |
tree | b1fbbec16558d5dd7b882682359d91cec19f9611 /src/demuxers/demux.h | |
parent | fc4c873cd43fbac488f56041e38a5010e2656b10 (diff) | |
download | xine-lib-439907def64a3bdbc3fd6a73af623c6fb7a55497.tar.gz xine-lib-439907def64a3bdbc3fd6a73af623c6fb7a55497.tar.bz2 |
big event cleanup: one single mechanism is now used for all communications between gui, plugins and the xine engine; code cleanup
CVS patchset: 837
CVS date: 2001/10/20 02:01:51
Diffstat (limited to 'src/demuxers/demux.h')
-rw-r--r-- | src/demuxers/demux.h | 13 |
1 files changed, 3 insertions, 10 deletions
diff --git a/src/demuxers/demux.h b/src/demuxers/demux.h index 7a52364d8..c020b2e79 100644 --- a/src/demuxers/demux.h +++ b/src/demuxers/demux.h @@ -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.h,v 1.10 2001/10/17 20:33:09 guenter Exp $ + * $Id: demux.h,v 1.11 2001/10/20 02:01:51 guenter Exp $ */ #ifndef HAVE_DEMUX_H @@ -35,7 +35,7 @@ extern "C" { #include "input_plugin.h" #endif -#define DEMUXER_PLUGIN_IFACE_VERSION 4 +#define DEMUXER_PLUGIN_IFACE_VERSION 5 #define DEMUX_OK 0 #define DEMUX_FINISHED 1 @@ -51,11 +51,6 @@ extern "C" { #define STAGE_BY_CONTENT 1 #define STAGE_BY_EXTENSION 2 -/* called when xine tries to branch seamlessly to the next mrl */ -typedef char* (*gui_get_next_mrl_cb_t) (void); -/* called when xine branched successfully to the next mrl */ -typedef void (*gui_branched_cb_t) (void); - /* * a demux plugin must implement these functions */ @@ -95,9 +90,7 @@ struct demux_plugin_s void (*start) (demux_plugin_t *this, fifo_buffer_t *video_fifo, fifo_buffer_t *audio_fifo, - off_t start_pos, int start_time, - gui_get_next_mrl_cb_t next_mrl_cb, - gui_branched_cb_t branched_cb) ; + off_t start_pos, int start_time); /* * stop & kill demux thread, free resources associated with current |