mirror of
https://github.com/ekeeke/Genesis-Plus-GX.git
synced 2024-11-05 02:15:07 +01:00
65 lines
1.6 KiB
C
65 lines
1.6 KiB
C
/****************************************************************************
|
|
* vi_encoder.c
|
|
*
|
|
* Wii Audio/Video Encoder support
|
|
*
|
|
* Copyright (C) 2009 Hector Martin (marcan)
|
|
* Additional code by Eke-Eke
|
|
*
|
|
* This program 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.
|
|
*
|
|
* This program 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 this program; if not, write to the Free Software
|
|
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|
*
|
|
***************************************************************************/
|
|
#ifdef HW_RVL
|
|
|
|
typedef enum
|
|
{
|
|
VI_GM_0_1=1,
|
|
VI_GM_0_2,
|
|
VI_GM_0_3,
|
|
VI_GM_0_4,
|
|
VI_GM_0_5,
|
|
VI_GM_0_6,
|
|
VI_GM_0_7,
|
|
VI_GM_0_8,
|
|
VI_GM_0_9,
|
|
VI_GM_1_0,
|
|
VI_GM_1_1,
|
|
VI_GM_1_2,
|
|
VI_GM_1_3,
|
|
VI_GM_1_4,
|
|
VI_GM_1_5,
|
|
VI_GM_1_6,
|
|
VI_GM_1_7,
|
|
VI_GM_1_8,
|
|
VI_GM_1_9,
|
|
VI_GM_2_0,
|
|
VI_GM_2_1,
|
|
VI_GM_2_2,
|
|
VI_GM_2_3,
|
|
VI_GM_2_4,
|
|
VI_GM_2_5,
|
|
VI_GM_2_6,
|
|
VI_GM_2_7,
|
|
VI_GM_2_8,
|
|
VI_GM_2_9,
|
|
VI_GM_3_0
|
|
} VIGamma;
|
|
|
|
extern void VIDEO_SetGamma(VIGamma gamma);
|
|
extern void VIDEO_SetTrapFilter(bool enable);
|
|
|
|
|
|
#endif
|