>From 2487b62119d3891f891ad23b7357df00f92b8a31 Mon Sep 17 00:00:00 2001 From: Jonathan Rosser Date: Wed, 17 Nov 2010 11:06:53 +0000 Subject: [PATCH] fix aspect ratio of preview window Signed-off-by: Jonathan Rosser --- src/x11video.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/src/x11video.c b/src/x11video.c index 8d90929..2e9a5da 100644 --- a/src/x11video.c +++ b/src/x11video.c @@ -472,7 +472,7 @@ static void x11video_process(MSFilter *f){ static int x11video_set_vsize(MSFilter *f,void *arg){ X11Video *s=(X11Video*)f->data; ms_filter_lock(f); - s->wsize=*(MSVideoSize*)arg; + s->vsize=*(MSVideoSize*)arg; ms_filter_unlock(f); return 0; } -- 1.7.0.4