[vlc-devel] commit: Correct typo ( && 0 ) in a07d237ea5275e1ff91f7bdbe6b8704587b07fe2 ( Jean-Baptiste Kempf )
git version control
git at videolan.org
Sun Sep 14 08:52:09 CEST 2008
vlc | branch: 0.9-bugfix | Jean-Baptiste Kempf <jb at videolan.org> | Sat Sep 13 23:49:46 2008 -0700| [1da159dc3fb7544ccd148c8bb9576775c7d787ff] | committer: Jean-Baptiste Kempf
Correct typo ( && 0 ) in a07d237ea5275e1ff91f7bdbe6b8704587b07fe2
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=1da159dc3fb7544ccd148c8bb9576775c7d787ff
---
modules/video_filter/deinterlace.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/modules/video_filter/deinterlace.c b/modules/video_filter/deinterlace.c
index 8164bef..52d693d 100644
--- a/modules/video_filter/deinterlace.c
+++ b/modules/video_filter/deinterlace.c
@@ -474,7 +474,7 @@ static void Render ( vout_thread_t *p_vout, picture_t *p_pic )
p_sys->p_vout->fmt_in.i_visible_height /= 2;
}
- if( p_vout->i_changes & VOUT_ASPECT_CHANGE && 0)
+ if( p_vout->i_changes & VOUT_ASPECT_CHANGE )
{
p_vout->i_changes &= ~VOUT_ASPECT_CHANGE;
More information about the vlc-devel
mailing list