Add multiple inclusion guards to all header files that lack them.
[mplayer/greg.git] / libvo / video_out_internal.h
blob5d51909b952d08b4717feb7ee2886187a488ea80
1 /*
2 * video_out_internal.h
4 * Copyright (C) Aaron Holtzman - Aug 1999
6 * This file is part of mpeg2dec, a free MPEG-2 video stream decoder.
7 *
8 * mpeg2dec is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 2, or (at your option)
11 * any later version.
13 * mpeg2dec is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
18 * You should have received a copy of the GNU General Public License
19 * along with mpeg2dec; if not, write to the Free Software
20 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
23 #ifndef VIDEO_OUT_INTERNAL_H
24 #define VIDEO_OUT_INTERNAL_H
26 /* All video drivers will want this */
27 #include "libmpcodecs/vfcap.h"
28 #include "libmpcodecs/mp_image.h"
29 #include "geometry.h"
31 static int control(uint32_t request, void *data, ...);
32 static int config(uint32_t width, uint32_t height, uint32_t d_width,
33 uint32_t d_height, uint32_t fullscreen, char *title,
34 uint32_t format);
35 static int draw_frame(uint8_t *src[]);
36 static int draw_slice(uint8_t *image[], int stride[], int w,int h,int x,int y);
37 static void draw_osd(void);
38 static void flip_page(void);
39 static void check_events(void);
40 static void uninit(void);
41 static int query_format(uint32_t format);
42 static int preinit(const char *);
44 #define LIBVO_EXTERN(x) vo_functions_t video_out_##x =\
46 &info,\
47 preinit,\
48 config,\
49 control,\
50 draw_frame,\
51 draw_slice,\
52 draw_osd,\
53 flip_page,\
54 check_events,\
55 uninit\
58 #include "osd.h"
60 #endif /* VIDEO_OUT_INTERNAL_H */