2001-02-24 21:28:24 +01:00
|
|
|
/*
|
|
|
|
* video_out_internal.h
|
|
|
|
*
|
|
|
|
* Copyright (C) Aaron Holtzman - Aug 1999
|
|
|
|
*
|
|
|
|
* This file is part of mpeg2dec, a free MPEG-2 video stream decoder.
|
|
|
|
*
|
|
|
|
* mpeg2dec 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, or (at your option)
|
|
|
|
* any later version.
|
|
|
|
*
|
|
|
|
* mpeg2dec 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 GNU Make; see the file COPYING. If not, write to
|
|
|
|
* the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2002-10-23 20:53:06 +02:00
|
|
|
/* All video drivers will want this */
|
2004-10-28 03:15:53 +02:00
|
|
|
#include "libmpcodecs/vfcap.h"
|
|
|
|
#include "libmpcodecs/mp_image.h"
|
2002-10-23 20:53:06 +02:00
|
|
|
#include "geometry.h"
|
2002-04-11 23:07:00 +02:00
|
|
|
|
2005-08-05 03:24:37 +02:00
|
|
|
static int control(uint32_t request, void *data, ...);
|
|
|
|
static int config(uint32_t width, uint32_t height, uint32_t d_width,
|
2002-01-31 10:57:13 +01:00
|
|
|
uint32_t d_height, uint32_t fullscreen, char *title,
|
2002-08-28 23:32:32 +02:00
|
|
|
uint32_t format);
|
2005-08-05 03:24:37 +02: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 13:33:34 +02:00
|
|
|
static void draw_osd(void);
|
2001-02-24 21:28:24 +01:00
|
|
|
static void flip_page(void);
|
2001-03-03 22:46:39 +01:00
|
|
|
static void check_events(void);
|
2001-02-24 21:28:24 +01:00
|
|
|
static void uninit(void);
|
2005-08-05 03:24:37 +02:00
|
|
|
static int query_format(uint32_t format);
|
|
|
|
static int preinit(const char *);
|
2001-02-24 21:28:24 +01:00
|
|
|
|
|
|
|
#define LIBVO_EXTERN(x) vo_functions_t video_out_##x =\
|
|
|
|
{\
|
2002-11-11 16:22:10 +01:00
|
|
|
&info,\
|
2002-01-26 17:01:26 +01:00
|
|
|
preinit,\
|
2002-01-31 10:57:13 +01:00
|
|
|
config,\
|
2002-02-09 01:47:26 +01:00
|
|
|
control,\
|
2001-02-24 21:28:24 +01:00
|
|
|
draw_frame,\
|
|
|
|
draw_slice,\
|
2001-08-13 13:08:18 +02:00
|
|
|
draw_osd,\
|
2001-02-24 21:28:24 +01:00
|
|
|
flip_page,\
|
2001-03-03 22:46:39 +01:00
|
|
|
check_events,\
|
2002-02-09 01:47:26 +01:00
|
|
|
uninit\
|
2001-02-24 21:28:24 +01:00
|
|
|
};
|
2001-04-10 04:29:38 +02:00
|
|
|
|
2001-04-24 13:42:04 +02:00
|
|
|
#include "osd.h"
|
2001-04-10 04:29:38 +02:00
|
|
|
|
|
|
|
|
|
|
|
|