diff options
Diffstat (limited to 'src/demuxers/demux_ogg.c')
-rw-r--r-- | src/demuxers/demux_ogg.c | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/src/demuxers/demux_ogg.c b/src/demuxers/demux_ogg.c index 4842becb7..79338c447 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.8 2001/11/10 13:48:02 guenter Exp $ + * $Id: demux_ogg.c,v 1.9 2001/11/17 14:26:37 f1rmb Exp $ * * demultiplexer for ogg streams * @@ -37,9 +37,8 @@ #include <ogg/ogg.h> #include "xine_internal.h" -#include "monitor.h" +#include "xineutils.h" #include "demux.h" -#include "utils.h" #define CHUNKSIZE 8500 @@ -406,7 +405,7 @@ demux_plugin_t *init_demuxer_plugin(int iface, xine_t *xine) { return NULL; } - this = xmalloc (sizeof (demux_ogg_t)); + this = xine_xmalloc (sizeof (demux_ogg_t)); config = xine->config; xine_debug = config->lookup_int (config, "xine_debug", 0); |