4 * Copyright (C) Aaron Holtzman - Aug 1999
6 * This file is part of mpeg2dec, a free MPEG-2 video stream decoder.
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)
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 /* All video drivers will want this */
24 #include "libmpcodecs/vfcap.h"
25 #include "libmpcodecs/mp_image.h"
28 static int control(uint32_t request
, void *data
, ...);
29 static int config(uint32_t width
, uint32_t height
, uint32_t d_width
,
30 uint32_t d_height
, uint32_t fullscreen
, char *title
,
32 static int draw_frame(uint8_t *src
[]);
33 static int draw_slice(uint8_t *image
[], int stride
[], int w
,int h
,int x
,int y
);
34 static void draw_osd(void);
35 static void flip_page(void);
36 static void check_events(void);
37 static void uninit(void);
38 static int query_format(uint32_t format
);
39 static int preinit(const char *);
41 #define LIBVO_EXTERN(x) vo_functions_t video_out_##x =\