diff options
-rw-r--r-- | src/radeon_textured_video.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/radeon_textured_video.c b/src/radeon_textured_video.c index 366a254e..1a822e00 100644 --- a/src/radeon_textured_video.c +++ b/src/radeon_textured_video.c @@ -391,7 +391,7 @@ RADEONSetTexPortAttribute(ScrnInfoPtr pScrn, if (attribute == xvBicubic) /* -1 -> set default (disable for RV515 and punier) */ pPriv->bicubic_enabled = (value == -1) ? - (info->ChipFamily >= CHIP_FAMILY_R580) : value; + (info->ChipFamily == CHIP_FAMILY_R580) : value; else return BadMatch; @@ -454,7 +454,7 @@ RADEONSetupImageTexturedVideo(ScreenPtr pScreen) pPriv->videoStatus = 0; pPriv->currentBuffer = 0; pPriv->doubleBuffer = 0; - pPriv->bicubic_enabled = (info->ChipFamily >= CHIP_FAMILY_R580); + pPriv->bicubic_enabled = (info->ChipFamily == CHIP_FAMILY_R580); /* gotta uninit this someplace, XXX: shouldn't be necessary for textured */ REGION_NULL(pScreen, &pPriv->clip); |