From: Christian König Date: Sun, 14 Nov 2010 19:35:02 +0000 (+0100) Subject: [g3dvl] ups missed this check X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=3cbe27a9888b94d1ab24b5e76ebd7563a7d8c6b8;p=mesa.git [g3dvl] ups missed this check --- diff --git a/src/gallium/state_trackers/xorg/xvmc/context.c b/src/gallium/state_trackers/xorg/xvmc/context.c index 5e4af9e555a..4869aac3a2e 100644 --- a/src/gallium/state_trackers/xorg/xvmc/context.c +++ b/src/gallium/state_trackers/xorg/xvmc/context.c @@ -213,8 +213,8 @@ Status XvMCCreateContext(Display *dpy, XvPortID port, int surface_type_id, XVMC_MSG(XVMC_ERR, "[XvMC] Cannot decode requested surface type. Non-MPEG2/Mocomp acceleration unsupported.\n"); return BadImplementation; } - if (!(surface_flags & XVMC_INTRA_UNSIGNED)) { - XVMC_MSG(XVMC_ERR, "[XvMC] Cannot decode requested surface type. Signed intra unsupported.\n"); + if (surface_flags & XVMC_INTRA_UNSIGNED) { + XVMC_MSG(XVMC_ERR, "[XvMC] Cannot decode requested surface type. Unsigned intra unsupported.\n"); return BadImplementation; }