diff options
author | Darren Salt <linux@youmustbejoking.demon.co.uk> | 2008-08-13 15:06:29 +0100 |
---|---|---|
committer | Darren Salt <linux@youmustbejoking.demon.co.uk> | 2008-08-13 15:06:29 +0100 |
commit | d4dac013dc218ecd9aa2694bce2b4b2d716174e2 (patch) | |
tree | c1cccededa85aa24f15516b3b4e87ca948f9dbc0 /src | |
parent | 065ab726cb977220dd65f398fa5e3543ad657ed4 (diff) | |
parent | 18a6a7d463733430c29e84e9b068bbb94ff65624 (diff) | |
download | xine-lib-d4dac013dc218ecd9aa2694bce2b4b2d716174e2.tar.gz xine-lib-d4dac013dc218ecd9aa2694bce2b4b2d716174e2.tar.bz2 |
Merge.
Diffstat (limited to 'src')
-rw-r--r-- | src/video_out/video_out_xcbxv.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/video_out/video_out_xcbxv.c b/src/video_out/video_out_xcbxv.c index b6e5544c3..807bb766d 100644 --- a/src/video_out/video_out_xcbxv.c +++ b/src/video_out/video_out_xcbxv.c @@ -435,7 +435,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 + frame->width*frame->height; + recent_bitmaps[i] = this->recent_frames[i]->image + this->deinterlace_frame.xv_width*frame->height; else recent_bitmaps[i] = NULL; |