Commit 8fc72635 authored by Jean-Baptiste Kempf's avatar Jean-Baptiste Kempf

Goom: remove unnecessary includes and delete GOOM_TREE mode

parent 295e4f25
/***************************************************************************** /*****************************************************************************
* goom.c: based on libgoom (see http://ios.free.fr/?page=projet&quoi=1) * goom.c: based on libgoom (see http://ios.free.fr/?page=projet&quoi=1)
***************************************************************************** *****************************************************************************
* Copyright (C) 2003 the VideoLAN team * Copyright (C) 2003-2011 the VideoLAN team
* $Id$
* *
* Authors: Laurent Aimar <fenrir@via.ecp.fr> * Authors: Laurent Aimar <fenrir@via.ecp.fr>
* Gildas Bazin <gbazin@videolan.org> * Gildas Bazin <gbazin@videolan.org>
...@@ -25,32 +24,18 @@ ...@@ -25,32 +24,18 @@
/***************************************************************************** /*****************************************************************************
* Preamble * Preamble
*****************************************************************************/ *****************************************************************************/
#ifdef HAVE_CONFIG_H #ifdef HAVE_CONFIG_H
# include "config.h" # include "config.h"
#endif #endif
#include <vlc_common.h> #include <vlc_common.h>
#include <vlc_plugin.h> #include <vlc_plugin.h>
#include <vlc_aout.h> #include <vlc_aout.h> /* aout_FormatNbChannels, AOUT_FMTS_SIMILAR */
#include <vlc_vout.h> #include <vlc_vout.h> /* vout_*Picture, aout_filter_RequestVout */
#include <vlc_block.h> #include <vlc_playlist.h> /* playlist_CurrentInput, input*Title */
#include <vlc_input.h>
#include <vlc_filter.h> #include <goom/goom.h>
#include <vlc_playlist.h>
#ifdef USE_GOOM_TREE
# ifdef OLD_GOOM
# include "goom_core.h"
# define PluginInfo void
# define goom_update(a,b,c,d,e,f) goom_update(b,c,d,e,f)
# define goom_close(a) goom_close()
# define goom_init(a,b) NULL; goom_init(a,b,0); goom_set_font(0,0,0)
# else
# include "goom.h"
# endif
#else
# include <goom/goom.h>
#endif
/***************************************************************************** /*****************************************************************************
* Module descriptor * Module descriptor
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment