mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-09 02:28:10 +02:00
[g3dvl] ups missed this check
This commit is contained in:
parent
3886295a0c
commit
3cbe27a988
1 changed files with 2 additions and 2 deletions
|
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue