rpm: Remove MEncoder from rpm packaging
[mplayer/glamo.git] / libvo / video_out_internal.h
blob8595d4ef05c60f7bd49ace544dd3ebbdfb2ae91d
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_slice = old_vo_draw_slice,\
54 .draw_osd = old_vo_draw_osd,\
55 .flip_page = old_vo_flip_page,\
56 .check_events = old_vo_check_events,\
57 .uninit = old_vo_uninit,\
58 .old_functions = &(struct vo_old_functions){\
59 preinit,\
60 config,\
61 control,\
62 draw_frame,\
63 draw_slice,\
64 draw_osd,\
65 flip_page,\
66 check_events,\
67 uninit,\
71 #include "osd.h"
73 #endif /* MPLAYER_VIDEO_OUT_INTERNAL_H */