2001-02-24 20:28:24 +00:00
|
|
|
/*
|
|
|
|
* video_out.c,
|
|
|
|
*
|
|
|
|
* Copyright (C) Aaron Holtzman - June 2000
|
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
|
|
|
|
|
|
|
#include <unistd.h>
|
|
|
|
#include <sys/mman.h>
|
|
|
|
|
|
|
|
#include "config.h"
|
|
|
|
#include "video_out.h"
|
|
|
|
|
|
|
|
#include "../linux/shmem.h"
|
|
|
|
|
2001-04-13 13:47:36 +00:00
|
|
|
// currect resolution/bpp on screen: (should be autodetected by vo_init())
|
|
|
|
int vo_depthonscreen=0;
|
|
|
|
int vo_screenwidth=0;
|
|
|
|
int vo_screenheight=0;
|
|
|
|
|
|
|
|
// requested resolution/bpp: (-x -y -bpp options)
|
|
|
|
int vo_dwidth=0;
|
|
|
|
int vo_dheight=0;
|
|
|
|
int vo_dbpp=0;
|
2001-06-17 20:38:02 +00:00
|
|
|
int vo_doublebuffering = 0;
|
2001-07-03 23:46:24 +00:00
|
|
|
int vo_fsmode = 0;
|
2001-04-13 13:47:36 +00:00
|
|
|
|
2001-11-05 02:58:47 +00:00
|
|
|
int vo_pts=0; // for hw decoding
|
2001-11-29 17:31:58 +00:00
|
|
|
float vo_fps=0; // for mp1e rte
|
2001-11-05 02:58:47 +00:00
|
|
|
|
2001-06-21 22:34:25 +00:00
|
|
|
char *vo_subdevice = NULL;
|
2002-02-03 09:28:58 +00:00
|
|
|
int vaa_use_dr=1;
|
2002-01-18 09:11:11 +00:00
|
|
|
/****************************************
|
|
|
|
* GAMMA CORRECTION *
|
|
|
|
****************************************/
|
|
|
|
int vo_gamma_brightness=0;
|
|
|
|
int vo_gamma_saturation=0;
|
|
|
|
int vo_gamma_contrast=0;
|
|
|
|
int vo_gamma_hue=0;
|
2002-01-23 16:54:29 +00:00
|
|
|
int vo_gamma_red_intensity=0;
|
|
|
|
int vo_gamma_green_intensity=0;
|
|
|
|
int vo_gamma_blue_intensity=0;
|
2001-02-24 20:28:24 +00:00
|
|
|
//
|
|
|
|
// Externally visible list of all vo drivers
|
|
|
|
//
|
|
|
|
extern vo_functions_t video_out_mga;
|
|
|
|
extern vo_functions_t video_out_xmga;
|
|
|
|
extern vo_functions_t video_out_x11;
|
|
|
|
extern vo_functions_t video_out_xv;
|
|
|
|
extern vo_functions_t video_out_gl;
|
2001-10-07 21:35:59 +00:00
|
|
|
extern vo_functions_t video_out_gl2;
|
2001-02-27 01:08:09 +00:00
|
|
|
extern vo_functions_t video_out_dga;
|
2001-03-05 02:25:07 +00:00
|
|
|
extern vo_functions_t video_out_fsdga;
|
2001-02-24 20:28:24 +00:00
|
|
|
extern vo_functions_t video_out_sdl;
|
|
|
|
extern vo_functions_t video_out_3dfx;
|
2001-09-27 12:23:54 +00:00
|
|
|
extern vo_functions_t video_out_tdfxfb;
|
2001-02-24 20:28:24 +00:00
|
|
|
extern vo_functions_t video_out_null;
|
2001-10-29 00:48:20 +00:00
|
|
|
//extern vo_functions_t video_out_odivx;
|
2002-01-17 01:32:29 +00:00
|
|
|
extern vo_functions_t video_out_zr;
|
2001-02-24 20:28:24 +00:00
|
|
|
extern vo_functions_t video_out_pgm;
|
|
|
|
extern vo_functions_t video_out_md5;
|
|
|
|
extern vo_functions_t video_out_syncfb;
|
2001-03-28 12:08:44 +00:00
|
|
|
extern vo_functions_t video_out_fbdev;
|
2001-04-05 19:01:27 +00:00
|
|
|
extern vo_functions_t video_out_svga;
|
2001-04-19 20:14:30 +00:00
|
|
|
extern vo_functions_t video_out_png;
|
2001-06-15 12:37:05 +00:00
|
|
|
extern vo_functions_t video_out_ggi;
|
2001-08-14 12:30:56 +00:00
|
|
|
extern vo_functions_t video_out_aa;
|
2001-09-08 20:48:02 +00:00
|
|
|
extern vo_functions_t video_out_mpegpes;
|
2001-11-03 02:38:10 +00:00
|
|
|
extern vo_functions_t video_out_dxr3;
|
2002-02-07 02:29:55 +00:00
|
|
|
#ifdef HAVE_VESA
|
2001-10-17 18:24:50 +00:00
|
|
|
extern vo_functions_t video_out_vesa;
|
|
|
|
#endif
|
2001-12-03 01:09:36 +00:00
|
|
|
extern vo_functions_t video_out_directfb;
|
2002-01-12 23:30:20 +00:00
|
|
|
#ifdef CONFIG_VIDIX
|
|
|
|
extern vo_functions_t video_out_xvidix;
|
|
|
|
#endif
|
|
|
|
|
2001-02-24 20:28:24 +00:00
|
|
|
vo_functions_t* video_out_drivers[] =
|
|
|
|
{
|
2001-06-21 15:19:38 +00:00
|
|
|
#ifdef HAVE_XMGA
|
2001-02-24 20:28:24 +00:00
|
|
|
&video_out_xmga,
|
|
|
|
#endif
|
2001-06-21 15:19:38 +00:00
|
|
|
#ifdef HAVE_MGA
|
2001-02-24 20:28:24 +00:00
|
|
|
&video_out_mga,
|
|
|
|
#endif
|
|
|
|
#ifdef HAVE_SYNCFB
|
|
|
|
&video_out_syncfb,
|
|
|
|
#endif
|
|
|
|
#ifdef HAVE_3DFX
|
|
|
|
&video_out_3dfx,
|
|
|
|
#endif
|
2001-09-27 12:23:54 +00:00
|
|
|
#ifdef HAVE_TDFXFB
|
|
|
|
&video_out_tdfxfb,
|
|
|
|
#endif
|
2001-02-24 20:28:24 +00:00
|
|
|
#ifdef HAVE_XV
|
|
|
|
&video_out_xv,
|
|
|
|
#endif
|
|
|
|
#ifdef HAVE_X11
|
|
|
|
&video_out_x11,
|
|
|
|
#endif
|
|
|
|
#ifdef HAVE_GL
|
|
|
|
&video_out_gl,
|
2001-10-07 21:35:59 +00:00
|
|
|
&video_out_gl2,
|
2001-02-24 20:28:24 +00:00
|
|
|
#endif
|
2001-02-27 01:08:09 +00:00
|
|
|
#ifdef HAVE_DGA
|
|
|
|
&video_out_dga,
|
2001-06-26 23:34:03 +00:00
|
|
|
// &video_out_fsdga,
|
2001-02-27 01:08:09 +00:00
|
|
|
#endif
|
2001-02-24 20:28:24 +00:00
|
|
|
#ifdef HAVE_SDL
|
|
|
|
&video_out_sdl,
|
2001-03-28 20:14:16 +00:00
|
|
|
#endif
|
2001-06-26 23:34:03 +00:00
|
|
|
#ifdef HAVE_GGI
|
|
|
|
&video_out_ggi,
|
|
|
|
#endif
|
2001-03-28 20:14:16 +00:00
|
|
|
#ifdef HAVE_FBDEV
|
|
|
|
&video_out_fbdev,
|
2001-04-05 19:01:27 +00:00
|
|
|
#endif
|
|
|
|
#ifdef HAVE_SVGALIB
|
|
|
|
&video_out_svga,
|
2001-02-24 20:28:24 +00:00
|
|
|
#endif
|
2001-08-14 12:30:56 +00:00
|
|
|
#ifdef HAVE_AA
|
|
|
|
&video_out_aa,
|
|
|
|
#endif
|
2001-11-03 02:38:10 +00:00
|
|
|
#ifdef HAVE_DXR3
|
|
|
|
&video_out_dxr3,
|
|
|
|
#endif
|
2002-01-17 01:32:29 +00:00
|
|
|
#ifdef HAVE_ZR
|
|
|
|
&video_out_zr,
|
|
|
|
#endif
|
2001-08-14 12:30:56 +00:00
|
|
|
|
2001-04-19 20:22:44 +00:00
|
|
|
#ifdef HAVE_PNG
|
|
|
|
&video_out_png,
|
|
|
|
#endif
|
2001-02-24 20:28:24 +00:00
|
|
|
&video_out_null,
|
2001-10-29 00:48:20 +00:00
|
|
|
// &video_out_odivx,
|
2001-02-24 20:28:24 +00:00
|
|
|
&video_out_pgm,
|
|
|
|
&video_out_md5,
|
2001-09-08 20:48:02 +00:00
|
|
|
&video_out_mpegpes,
|
2002-02-07 02:29:55 +00:00
|
|
|
#ifdef HAVE_VESA
|
2001-10-17 18:24:50 +00:00
|
|
|
&video_out_vesa,
|
|
|
|
#endif
|
2001-12-03 01:09:36 +00:00
|
|
|
#ifdef HAVE_DIRECTFB
|
|
|
|
&video_out_directfb,
|
|
|
|
#endif
|
2002-01-15 12:30:52 +00:00
|
|
|
#if defined(CONFIG_VIDIX) && defined(HAVE_X11)
|
2002-01-12 23:30:20 +00:00
|
|
|
&video_out_xvidix,
|
|
|
|
#endif
|
2001-02-24 20:28:24 +00:00
|
|
|
NULL
|
|
|
|
};
|