Get rid of completely pointless vt_doit variable
[mplayer/glamo.git] / libvo / video_out_internal.h
blob36aa210fdd42f19d232ac34a158b1f5fd89fc384
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"
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 /* MPLAYER_VIDEO_OUT_INTERNAL_H */