diff options
author | Rich J Wareham <richwareham@users.sourceforge.net> | 2001-09-14 21:25:55 +0000 |
---|---|---|
committer | Rich J Wareham <richwareham@users.sourceforge.net> | 2001-09-14 21:25:55 +0000 |
commit | 2a6944aa21b4184d8174b74d9c0fbff807c16c4e (patch) | |
tree | afa0258b9fa0bbca72511b67dfd28f327d6c9f03 /src/xine-engine/xine_internal.h | |
parent | 01acad2a27f178995bcfda3f752fd1dac545c109 (diff) | |
download | xine-lib-2a6944aa21b4184d8174b74d9c0fbff807c16c4e.tar.gz xine-lib-2a6944aa21b4184d8174b74d9c0fbff807c16c4e.tar.bz2 |
Added some stuff to make still-frame menus work a bit better, allowed events for UI to find language of audio/spu track
CVS patchset: 636
CVS date: 2001/09/14 21:25:55
Diffstat (limited to 'src/xine-engine/xine_internal.h')
-rw-r--r-- | src/xine-engine/xine_internal.h | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/src/xine-engine/xine_internal.h b/src/xine-engine/xine_internal.h index 33af5169d..10aaf0c02 100644 --- a/src/xine-engine/xine_internal.h +++ b/src/xine-engine/xine_internal.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: xine_internal.h,v 1.43 2001/09/01 14:33:00 guenter Exp $ + * $Id: xine_internal.h,v 1.44 2001/09/14 21:25:55 richwareham Exp $ * */ @@ -30,14 +30,23 @@ extern "C" { #include <inttypes.h> +#ifdef XINE_COMPILE #include "input/input_plugin.h" #include "demuxers/demux.h" +#else +#include "input_plugin.h" +#include "demux.h" +#endif #include "video_out.h" #include "audio_out.h" #include "metronom.h" #include "spu_decoder.h" #include "events.h" +#ifdef XINE_COMPILE #include "libspudec/spu_decoder_api.h" +#else +#include "spu_decoder_api.h" +#endif #define INPUT_PLUGIN_MAX 50 #define DEMUXER_PLUGIN_MAX 50 |