mirror of
https://github.com/mpv-player/mpv
synced 2025-01-31 20:21:49 +00:00
consolevidix -> cvidix
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@11018 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
parent
2167336571
commit
54818d9782
6
configure
vendored
6
configure
vendored
@ -5545,10 +5545,10 @@ linux && _def_linux='#define TARGET_LINUX 1'
|
||||
_def_vidix='#define CONFIG_VIDIX 1'
|
||||
test "$_vidix" = no && _def_vidix='#undef CONFIG_VIDIX'
|
||||
if test "$_vidix" = yes; then
|
||||
_vosrc="$_vosrc vo_consolevidix.c"
|
||||
_vomodules="consolevidix $_vomodules"
|
||||
_vosrc="$_vosrc vo_cvidix.c"
|
||||
_vomodules="cvidix $_vomodules"
|
||||
else
|
||||
_novomodules="consolevidix $_novomodules"
|
||||
_novomodules="cvidix $_novomodules"
|
||||
fi
|
||||
if test "$_vidix" = yes && (cygwin || mingw32); then
|
||||
_vosrc="$_vosrc vo_winvidix.c"
|
||||
|
@ -105,7 +105,7 @@ extern vo_functions_t video_out_dfbmga;
|
||||
#ifdef CONFIG_VIDIX
|
||||
extern vo_functions_t video_out_xvidix;
|
||||
extern vo_functions_t video_out_winvidix;
|
||||
extern vo_functions_t video_out_consolevidix;
|
||||
extern vo_functions_t video_out_cvidix;
|
||||
#endif
|
||||
#ifdef HAVE_TDFX_VID
|
||||
extern vo_functions_t video_out_tdfx_vid;
|
||||
@ -217,7 +217,7 @@ vo_functions_t* video_out_drivers[] =
|
||||
#ifdef WIN32
|
||||
&video_out_winvidix,
|
||||
#endif
|
||||
&video_out_consolevidix,
|
||||
&video_out_cvidix,
|
||||
#endif
|
||||
#ifdef HAVE_TGA
|
||||
&video_out_tga,
|
||||
|
@ -26,12 +26,12 @@
|
||||
|
||||
static vo_info_t info = {
|
||||
"VIDIX",
|
||||
"consolevidix",
|
||||
"cvidix",
|
||||
"Sascha Sommer",
|
||||
""
|
||||
};
|
||||
|
||||
LIBVO_EXTERN(consolevidix)
|
||||
LIBVO_EXTERN(cvidix)
|
||||
|
||||
#define UNUSED(x) ((void)(x)) /* Removes warning about unused arguments */
|
||||
|
Loading…
Reference in New Issue
Block a user