From da305a57546f001c568d2dcf6a784a4b3c825d9c Mon Sep 17 00:00:00 2001 From: Christophe Massiot Date: Wed, 24 Aug 2005 18:01:18 +0000 Subject: [PATCH] * modules/codec/fake.c: Fixed compilation. --- modules/codec/fake.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/modules/codec/fake.c b/modules/codec/fake.c index d630e64924..ea717de3a5 100644 --- a/modules/codec/fake.c +++ b/modules/codec/fake.c @@ -228,12 +228,12 @@ static int OpenDecoder( vlc_object_t *p_this ) if ( i_aspect ) { - fmt_out.video.i_aspect = i_aspect; + fmt_out.i_aspect = i_aspect; } else { - fmt_out.video.i_aspect = fmt_out.i_width - * VOUT_ASPECT_FACTOR / fmt_out.i_height; + fmt_out.i_aspect = fmt_out.i_width + * VOUT_ASPECT_FACTOR / fmt_out.i_height; } var_Create( p_dec, "fake-deinterlace", VLC_VAR_BOOL | VLC_VAR_DOINHERIT ); -- 2.39.2