2001-02-24 20:28:24 +00:00
|
|
|
/*
|
2008-05-14 17:22:53 +00:00
|
|
|
* Copyright (C) Aaron Holtzman - Aug 1999
|
2001-02-24 20:28:24 +00:00
|
|
|
*
|
2008-05-14 17:22:53 +00:00
|
|
|
* This file is part of MPlayer.
|
2001-02-24 20:28:24 +00:00
|
|
|
*
|
2008-05-14 17:22:53 +00:00
|
|
|
* MPlayer is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* MPlayer is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License along
|
|
|
|
* with MPlayer; if not, write to the Free Software Foundation, Inc.,
|
|
|
|
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
2001-02-24 20:28:24 +00:00
|
|
|
*/
|
|
|
|
|
2008-02-22 09:09:46 +00:00
|
|
|
#ifndef MPLAYER_VIDEO_OUT_INTERNAL_H
|
|
|
|
#define MPLAYER_VIDEO_OUT_INTERNAL_H
|
2008-01-01 21:35:58 +00:00
|
|
|
|
2008-03-07 20:07:15 +00:00
|
|
|
#include <stdint.h>
|
|
|
|
|
2002-10-23 18:53:06 +00:00
|
|
|
/* All video drivers will want this */
|
2004-10-28 01:15:53 +00:00
|
|
|
#include "libmpcodecs/vfcap.h"
|
|
|
|
#include "libmpcodecs/mp_image.h"
|
2002-10-23 18:53:06 +00:00
|
|
|
#include "geometry.h"
|
2008-04-03 03:25:41 +00:00
|
|
|
#include "old_vo_wrapper.h"
|
2008-04-19 04:45:16 +00:00
|
|
|
#include "old_vo_defines.h"
|
2002-04-11 21:07:00 +00:00
|
|
|
|
2008-04-02 16:38:34 +00:00
|
|
|
static int control(uint32_t request, void *data);
|
2005-08-05 01:24:37 +00:00
|
|
|
static int config(uint32_t width, uint32_t height, uint32_t d_width,
|
2002-01-31 09:57:13 +00:00
|
|
|
uint32_t d_height, uint32_t fullscreen, char *title,
|
2002-08-28 21:32:32 +00:00
|
|
|
uint32_t format);
|
2005-08-05 01:24:37 +00:00
|
|
|
static int draw_frame(uint8_t *src[]);
|
|
|
|
static int draw_slice(uint8_t *image[], int stride[], int w,int h,int x,int y);
|
2001-08-13 11:33:34 +00:00
|
|
|
static void draw_osd(void);
|
2001-02-24 20:28:24 +00:00
|
|
|
static void flip_page(void);
|
2001-03-03 21:46:39 +00:00
|
|
|
static void check_events(void);
|
2001-02-24 20:28:24 +00:00
|
|
|
static void uninit(void);
|
2005-08-05 01:24:37 +00:00
|
|
|
static int query_format(uint32_t format);
|
|
|
|
static int preinit(const char *);
|
2001-02-24 20:28:24 +00:00
|
|
|
|
2008-04-03 03:25:41 +00:00
|
|
|
#define LIBVO_EXTERN(x) struct vo_driver video_out_##x =\
|
2001-02-24 20:28:24 +00:00
|
|
|
{\
|
2008-04-03 03:25:41 +00:00
|
|
|
.is_new = 0,\
|
|
|
|
.info = &info,\
|
|
|
|
.preinit = old_vo_preinit,\
|
|
|
|
.config = old_vo_config,\
|
|
|
|
.control = old_vo_control,\
|
|
|
|
.draw_slice = old_vo_draw_slice,\
|
|
|
|
.draw_osd = old_vo_draw_osd,\
|
|
|
|
.flip_page = old_vo_flip_page,\
|
|
|
|
.check_events = old_vo_check_events,\
|
|
|
|
.uninit = old_vo_uninit,\
|
|
|
|
.old_functions = &(struct vo_old_functions){\
|
2002-01-26 16:01:26 +00:00
|
|
|
preinit,\
|
2002-01-31 09:57:13 +00:00
|
|
|
config,\
|
2002-02-09 00:47:26 +00:00
|
|
|
control,\
|
2001-02-24 20:28:24 +00:00
|
|
|
draw_frame,\
|
|
|
|
draw_slice,\
|
2001-08-13 11:08:18 +00:00
|
|
|
draw_osd,\
|
2001-02-24 20:28:24 +00:00
|
|
|
flip_page,\
|
2001-03-03 21:46:39 +00:00
|
|
|
check_events,\
|
2008-04-03 03:25:41 +00:00
|
|
|
uninit,\
|
|
|
|
}\
|
2001-02-24 20:28:24 +00:00
|
|
|
};
|
2001-04-10 02:29:38 +00:00
|
|
|
|
2001-04-24 11:42:04 +00:00
|
|
|
#include "osd.h"
|
2001-04-10 02:29:38 +00:00
|
|
|
|
2008-02-22 09:09:46 +00:00
|
|
|
#endif /* MPLAYER_VIDEO_OUT_INTERNAL_H */
|