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
26 /* All video drivers will want this */
27 #include "libmpcodecs/vfcap.h"
28 #include "libmpcodecs/mp_image.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
,
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 =\
60 #endif /* MPLAYER_VIDEO_OUT_INTERNAL_H */