summaryrefslogtreecommitdiff
path: root/src/video_out
diff options
context:
space:
mode:
authorMatthias Hopf <mat@mshopf.de>2008-08-08 15:39:37 +0200
committerMatthias Hopf <mat@mshopf.de>2008-08-08 15:39:37 +0200
commit93f518565b5f53c795aeddf544f3582d44ff9fe6 (patch)
treef79884a40a9f80068b15d1c9cc8cb7660a1bf3fb /src/video_out
parent6f79d815918aa83d706b6dc6722c2006f27e8084 (diff)
parent8c24b5cd856fa47f605eba68ec0a49bd4d47d7da (diff)
downloadxine-lib-93f518565b5f53c795aeddf544f3582d44ff9fe6.tar.gz
xine-lib-93f518565b5f53c795aeddf544f3582d44ff9fe6.tar.bz2
Merge.
Diffstat (limited to 'src/video_out')
-rw-r--r--src/video_out/video_out_xv.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/video_out/video_out_xv.c b/src/video_out/video_out_xv.c
index 8f5da8ea0..6a11ebc34 100644
--- a/src/video_out/video_out_xv.c
+++ b/src/video_out/video_out_xv.c
@@ -524,7 +524,7 @@ static void xv_deinterlace_frame (xv_driver_t *this) {
for( i = 0; i < VO_NUM_RECENT_FRAMES; i++ )
if( this->recent_frames[i] && this->recent_frames[i]->width == frame->width &&
this->recent_frames[i]->height == frame->height )
- recent_bitmaps[i] = this->recent_frames[i]->image->data + frame->width*frame->height;
+ recent_bitmaps[i] = this->recent_frames[i]->image->data + this->deinterlace_frame.image->width*frame->height;
else
recent_bitmaps[i] = NULL;