vo_xv: Fix context Shminfo table size
[mplayer.git] / libvo / video_out_internal.h
blob166a91cc1cff429c8d2278bd63dcf8e066919c5d
1 /*
2 * Copyright (C) Aaron Holtzman - Aug 1999
4 * This file is part of MPlayer.
6 * MPlayer is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
11 * MPlayer is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
16 * You should have received a copy of the GNU General Public License along
17 * with MPlayer; if not, write to the Free Software Foundation, Inc.,
18 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
21 #ifndef MPLAYER_VIDEO_OUT_INTERNAL_H
22 #define MPLAYER_VIDEO_OUT_INTERNAL_H
24 #include <stdint.h>
26 /* All video drivers will want this */
27 #include "libmpcodecs/vfcap.h"
28 #include "libmpcodecs/mp_image.h"
29 #include "geometry.h"
30 #include "old_vo_wrapper.h"
31 #include "old_vo_defines.h"
33 static int control(uint32_t request, void *data);
34 static int config(uint32_t width, uint32_t height, uint32_t d_width,
35 uint32_t d_height, uint32_t fullscreen, char *title,
36 uint32_t format);
37 static int draw_frame(uint8_t *src[]);
38 static int draw_slice(uint8_t *image[], int stride[], int w,int h,int x,int y);
39 static void draw_osd(void);
40 static void flip_page(void);
41 static void check_events(void);
42 static void uninit(void);
43 static int query_format(uint32_t format);
44 static int preinit(const char *);
46 #define LIBVO_EXTERN(x) struct vo_driver video_out_##x =\
48 .is_new = 0,\
49 .info = &info,\
50 .preinit = old_vo_preinit,\
51 .config = old_vo_config,\
52 .control = old_vo_control,\
53 .draw_frame = old_vo_draw_frame,\
54 .draw_slice = old_vo_draw_slice,\
55 .draw_osd = old_vo_draw_osd,\
56 .flip_page = old_vo_flip_page,\
57 .check_events = old_vo_check_events,\
58 .uninit = old_vo_uninit,\
59 .old_functions = &(struct vo_old_functions){\
60 preinit,\
61 config,\
62 control,\
63 draw_frame,\
64 draw_slice,\
65 draw_osd,\
66 flip_page,\
67 check_events,\
68 uninit,\
72 #include "osd.h"
74 #endif /* MPLAYER_VIDEO_OUT_INTERNAL_H */