mirror of
https://github.com/mpv-player/mpv
synced 2024-12-24 15:52:25 +00:00
DFB 0.9.10 update patch by Jiri.
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@5891 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
parent
55932536f1
commit
0a945c970b
16
configure
vendored
16
configure
vendored
@ -1858,6 +1858,21 @@ else
|
|||||||
fi
|
fi
|
||||||
echores "$_directfb099"
|
echores "$_directfb099"
|
||||||
fi
|
fi
|
||||||
|
if test "$_directfb" = yes; then
|
||||||
|
echocheck "DirectFB >= 0.9.10"
|
||||||
|
_directfb0910=no
|
||||||
|
cat > $TMPC <<EOF
|
||||||
|
#include <directfb.h>
|
||||||
|
int main(void) { DFBDisplayLayerCapabilities caps=DLCAPS_DST_COLORKEY; return 0; }
|
||||||
|
EOF
|
||||||
|
cc_check -ldirectfb && _directfb0910=yes
|
||||||
|
if test "$_directfb0910" = yes ; then
|
||||||
|
_def_directfb0910='#define HAVE_DIRECTFB0910 1'
|
||||||
|
else
|
||||||
|
_def_directfb0910='#undef HAVE_DIRECTFB0910'
|
||||||
|
fi
|
||||||
|
echores "$_directfb0910"
|
||||||
|
fi
|
||||||
echocheck "X11"
|
echocheck "X11"
|
||||||
if test "$_x11" = auto || test "$_x11" = yes ; then
|
if test "$_x11" = auto || test "$_x11" = yes ; then
|
||||||
cat > $TMPC <<EOF
|
cat > $TMPC <<EOF
|
||||||
@ -4008,6 +4023,7 @@ $_def_3dfx
|
|||||||
$_def_tdfxfb
|
$_def_tdfxfb
|
||||||
$_def_directfb
|
$_def_directfb
|
||||||
$_def_directfb099
|
$_def_directfb099
|
||||||
|
$_def_directfb0910
|
||||||
$_def_zr
|
$_def_zr
|
||||||
$_def_mga
|
$_def_mga
|
||||||
$_def_xmga
|
$_def_xmga
|
||||||
|
@ -224,8 +224,16 @@ if (verbose) {
|
|||||||
if (caps & DLCAPS_ALPHACHANNEL)
|
if (caps & DLCAPS_ALPHACHANNEL)
|
||||||
printf( " - Supports blending based on alpha channel.\n" );
|
printf( " - Supports blending based on alpha channel.\n" );
|
||||||
|
|
||||||
|
#ifdef HAVE_DIRECTFB0910
|
||||||
|
if (caps & DLCAPS_SRC_COLORKEY)
|
||||||
|
printf( " - Supports source based color keying.\n" );
|
||||||
|
|
||||||
|
if (caps & DLCAPS_DST_COLORKEY)
|
||||||
|
printf( " - Supports destination based color keying.\n" );
|
||||||
|
#else
|
||||||
if (caps & DLCAPS_COLORKEYING)
|
if (caps & DLCAPS_COLORKEYING)
|
||||||
printf( " - Supports color keying.\n" );
|
printf( " - Supports color keying.\n" );
|
||||||
|
#endif
|
||||||
|
|
||||||
if (caps & DLCAPS_FLICKER_FILTERING)
|
if (caps & DLCAPS_FLICKER_FILTERING)
|
||||||
printf( " - Supports flicker filtering.\n" );
|
printf( " - Supports flicker filtering.\n" );
|
||||||
@ -289,10 +297,10 @@ if (verbose) printf("DirectFB: Preinit entered\n");
|
|||||||
DFBCHECK (DirectFBSetOption ("fbdev",fb_dev_name));
|
DFBCHECK (DirectFBSetOption ("fbdev",fb_dev_name));
|
||||||
}
|
}
|
||||||
|
|
||||||
// disable YV12 for dfb 0.9.9 - there is a bug in dfb!
|
// disable YV12 for dfb until 0.9.10 - there is a bug in dfb! should be revised with every dfb version until bug is fixed in dfb.
|
||||||
if ((directfb_major_version <= 0) &&
|
if ((directfb_major_version <= 0) &&
|
||||||
(directfb_minor_version <= 9) &&
|
(directfb_minor_version <= 9) &&
|
||||||
(directfb_micro_version <= 9)) {
|
(directfb_micro_version <= 10)) {
|
||||||
buggyYV12BitBlt=1;
|
buggyYV12BitBlt=1;
|
||||||
if (verbose) printf("DirectFB: Buggy YV12BitBlt!\n");
|
if (verbose) printf("DirectFB: Buggy YV12BitBlt!\n");
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user