1
mirror of https://github.com/mpv-player/mpv synced 2024-07-31 16:29:58 +02:00

Make CONFIG_XVMC a proper FFmpeg-style 0/1 definition.

git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@28402 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
diego 2009-01-30 23:58:07 +00:00
parent 0927520cbb
commit dc4b6fcddc
2 changed files with 2 additions and 2 deletions

2
configure vendored
View File

@ -4236,7 +4236,7 @@ if test "$_xvmc" = yes ; then
_vomodules="xvmc $_vomodules"
_res_comment="using $_xvmclib"
else
_def_xvmc='#undef CONFIG_XVMC'
_def_xvmc='#define CONFIG_XVMC 0'
_novomodules="xvmc $_novomodules"
_libavdecoders=`echo $_libavdecoders | sed -e s/MPEG_XVMC_DECODER// `
fi

View File

@ -225,7 +225,7 @@ const vo_functions_t* const video_out_drivers[] =
#endif
&video_out_null,
// should not be auto-selected
#ifdef CONFIG_XVMC
#if CONFIG_XVMC
&video_out_xvmc,
#endif
&video_out_mpegpes,