diff options
| author | phintuka <phintuka> | 2008-11-14 00:49:48 +0000 |
|---|---|---|
| committer | phintuka <phintuka> | 2008-11-14 00:49:48 +0000 |
| commit | b684819ef9887cc26c02783d4a03b4a207501c67 (patch) | |
| tree | 1cecb1ac0556d75543ce14f380ed2f47546a44b5 | |
| parent | 16ae62ca7af2dfad476e82bfdc1235e0623c3ec0 (diff) | |
| download | xineliboutput-b684819ef9887cc26c02783d4a03b4a207501c67.tar.gz xineliboutput-b684819ef9887cc26c02783d4a03b4a207501c67.tar.bz2 | |
Added missing headers
Removed FE_STANDALONE checks
| -rw-r--r-- | xine_frontend.c | 17 |
1 files changed, 9 insertions, 8 deletions
diff --git a/xine_frontend.c b/xine_frontend.c index df172a44..4cbc768d 100644 --- a/xine_frontend.c +++ b/xine_frontend.c @@ -4,12 +4,17 @@ * See the main source file 'xineliboutput.c' for copyright information and * how to reach the author. * - * $Id: xine_frontend.c,v 1.84 2008-11-13 23:56:58 phintuka Exp $ + * $Id: xine_frontend.c,v 1.85 2008-11-14 00:49:48 phintuka Exp $ * */ #include "features.h" +#include <inttypes.h> +#include <stdlib.h> +#include <stdio.h> +#include <unistd.h> + #ifdef HAVE_LIBJPEG # ifdef boolean # define HAVE_BOOLEAN @@ -18,11 +23,9 @@ # undef boolean #endif -#ifndef XINE_VERSION_CODE -# define XINE_VERSION_CODE (XINE_MAJOR_VERSION*10000 + \ - XINE_MINOR_VERSION*100 + \ - XINE_SUB_VERSION) -#endif +#define XINE_ENGINE_INTERNAL +#include <xine.h> +#include <xine/xine_internal.h> #define LOG_MODULENAME "[vdr-fe] " #include "logdefs.h" @@ -1096,12 +1099,10 @@ static void fe_xine_close(frontend_t *this_gen) return; if (this && this->xine) { -#ifndef FE_STANDALONE if(this->input_plugin) { this->input_plugin->f.xine_input_event = NULL; this->input_plugin->f.fe_control = NULL; } -#endif fe_xine_stop(this_gen); |
