diff options
author | Miguel Freitas <miguelfreitas@users.sourceforge.net> | 2003-11-15 14:54:30 +0000 |
---|---|---|
committer | Miguel Freitas <miguelfreitas@users.sourceforge.net> | 2003-11-15 14:54:30 +0000 |
commit | 1ace1c3f18fb48bab32a2ee5b69ae6e3bce12850 (patch) | |
tree | 21c51a97dcc8659809d2c8df9f5ce363bddadb2d /src/xine-engine/video_out.h | |
parent | 443d766f9506dfcc19de9c8fc224a61a0922f722 (diff) | |
download | xine-lib-1ace1c3f18fb48bab32a2ee5b69ae6e3bce12850.tar.gz xine-lib-1ace1c3f18fb48bab32a2ee5b69ae6e3bce12850.tar.bz2 |
start xine_stream_t separation (public/private).
(we should finish this before rc3.)
- stream_info and meta_info variables are private now.
obs: everything must be recompiled due xine_stream_t changes
CVS patchset: 5733
CVS date: 2003/11/15 14:54:30
Diffstat (limited to 'src/xine-engine/video_out.h')
-rw-r--r-- | src/xine-engine/video_out.h | 11 |
1 files changed, 3 insertions, 8 deletions
diff --git a/src/xine-engine/video_out.h b/src/xine-engine/video_out.h index 44fe4aa92..567f8ddfd 100644 --- a/src/xine-engine/video_out.h +++ b/src/xine-engine/video_out.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: video_out.h,v 1.101 2003/11/11 18:45:01 f1rmb Exp $ + * $Id: video_out.h,v 1.102 2003/11/15 14:54:31 miguelfreitas Exp $ * * * xine version of video_out.h @@ -45,8 +45,10 @@ extern "C" { #ifdef XINE_COMPILE # include "xine.h" +# include "buffer.h" #else # include <xine.h> +# include <xine/buffer.h> #endif #include <inttypes.h> @@ -59,13 +61,6 @@ typedef struct video_driver_class_s video_driver_class_t; typedef struct vo_overlay_s vo_overlay_t; typedef struct video_overlay_manager_s video_overlay_manager_t; -/* to access extra_info_t contents one have to include xine_internal.h */ -#ifndef EXTRA_INFO -#define EXTRA_INFO -typedef struct extra_info_s extra_info_t; -#endif - - typedef struct xine_macroblock_s { short *blockptr; /* pointer to current dct block */ short *blockbaseptr; /* pointer to base of dct block array in blocks */ |