diff options
Diffstat (limited to 'src/demuxers/demux_ogg.c')
-rw-r--r-- | src/demuxers/demux_ogg.c | 11 |
1 files changed, 4 insertions, 7 deletions
diff --git a/src/demuxers/demux_ogg.c b/src/demuxers/demux_ogg.c index ea9a73578..0a56e4555 100644 --- a/src/demuxers/demux_ogg.c +++ b/src/demuxers/demux_ogg.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_ogg.c,v 1.4 2001/10/17 20:33:09 guenter Exp $ + * $Id: demux_ogg.c,v 1.5 2001/10/20 02:01:51 guenter Exp $ * * demultiplexer for ogg streams * @@ -269,10 +269,7 @@ static int demux_ogg_get_status (demux_plugin_t *this_gen) { static void demux_ogg_start (demux_plugin_t *this_gen, 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) { demux_ogg_t *this = (demux_ogg_t *) this_gen; buf_element_t *buf; @@ -386,7 +383,7 @@ static char *demux_ogg_get_id(void) { static int demux_ogg_get_stream_length (demux_plugin_t *this_gen) { - demux_ogg_t *this = (demux_ogg_t *) this_gen; + /* demux_ogg_t *this = (demux_ogg_t *) this_gen; */ return 0; } @@ -396,7 +393,7 @@ demux_plugin_t *init_demuxer_plugin(int iface, xine_t *xine) { demux_ogg_t *this; config_values_t *config; - if (iface != 4) { + if (iface != 5) { printf( "demux_ogg: plugin doesn't support plugin API version %d.\n" "demux_ogg: this means there's a version mismatch between xine and this " "demux_ogg: demuxer plugin.\nInstalling current demux plugins should help.\n", |