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:
mplayer-svn 2012-02-07 21:56:45 +00:00 committed by wm4
parent f200c85906
commit 47a0e4fadd
1 changed files with 2 additions and 3 deletions

View File

@ -428,9 +428,8 @@ static int config(uint32_t width, uint32_t height, uint32_t d_width,
draw_alpha_fnc = draw_alpha_null;
}
out_offset = 0;
// for these formats conversion is currently not support and
// we can easily "emulate" them.
if (out_format & 64 && (IMGFMT_IS_RGB(out_format) || IMGFMT_IS_BGR(out_format))) {
// We can easily "emulate" non-native RGB32 and BGR32
if (out_format == (IMGFMT_BGR32 | 64) || out_format == (IMGFMT_RGB32 | 64)) {
out_format &= ~64;
#if BYTE_ORDER == BIG_ENDIAN
out_offset = 1;