mirror of https://github.com/mpv-player/mpv
vo_x11: X11 non-native RGB/BGR "emulation" only works for 32bit
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@34658 b3059339-0415-0410-9bf9-f77b7e298cf2 Author: cehoyos
This commit is contained in:
parent
f200c85906
commit
47a0e4fadd
|
@ -428,9 +428,8 @@ static int config(uint32_t width, uint32_t height, uint32_t d_width,
|
||||||
draw_alpha_fnc = draw_alpha_null;
|
draw_alpha_fnc = draw_alpha_null;
|
||||||
}
|
}
|
||||||
out_offset = 0;
|
out_offset = 0;
|
||||||
// for these formats conversion is currently not support and
|
// We can easily "emulate" non-native RGB32 and BGR32
|
||||||
// we can easily "emulate" them.
|
if (out_format == (IMGFMT_BGR32 | 64) || out_format == (IMGFMT_RGB32 | 64)) {
|
||||||
if (out_format & 64 && (IMGFMT_IS_RGB(out_format) || IMGFMT_IS_BGR(out_format))) {
|
|
||||||
out_format &= ~64;
|
out_format &= ~64;
|
||||||
#if BYTE_ORDER == BIG_ENDIAN
|
#if BYTE_ORDER == BIG_ENDIAN
|
||||||
out_offset = 1;
|
out_offset = 1;
|
||||||
|
|
Loading…
Reference in New Issue