summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKalev Lember <kalev@smartlink.ee>2009-03-13 21:32:08 +0200
committerKristian Høgsberg <krh@redhat.com>2009-03-13 16:01:43 -0400
commit2026c57cf0a352d9e6f9d208cfb7d4d550614477 (patch)
treeeb2ee9324ab78ba823daf40e8d260c1f763e72e1
parent3ef9d85371a97ea5baee0c47787b3bb3cdaf5135 (diff)
Fix Xv crash with overlay video.
Bug #20585.
-rw-r--r--src/i830_video.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/i830_video.c b/src/i830_video.c
index daa2411b..3c6fbf36 100644
--- a/src/i830_video.c
+++ b/src/i830_video.c
@@ -1382,7 +1382,7 @@ I830CopyPlanarData(ScrnInfoPtr pScrn, I830PortPrivPtr pPriv,
dst_base = pPriv->buf->virtual;
} else {
drm_intel_gem_bo_start_gtt_access(pPriv->buf, TRUE);
- dst_base = pI830->FbBase + pPriv->buf->offset;
+ dst_base = pI830->FbBase;
}
if (pPriv->currentBuf == 0)