From: RĂ©mi Denis-Courmont Date: Thu, 3 Dec 2009 21:49:31 +0000 (+0200) Subject: Code factor X-Git-Tag: 1.1.0-ff~2284 X-Git-Url: https://git.sesse.net/?a=commitdiff_plain;h=2e2cd0b07b9bc0e9ef5b5fbfdaaf8a9e928bd0c2;p=vlc Code factor --- diff --git a/include/vlc_aout.h b/include/vlc_aout.h index 4e5007678a..cd3156440e 100644 --- a/include/vlc_aout.h +++ b/include/vlc_aout.h @@ -37,9 +37,7 @@ extern "C" { #define AOUT_FMTS_IDENTICAL( p_first, p_second ) ( \ ((p_first)->i_format == (p_second)->i_format) \ - && ((p_first)->i_rate == (p_second)->i_rate) \ - && ((p_first)->i_physical_channels == (p_second)->i_physical_channels)\ - && ((p_first)->i_original_channels == (p_second)->i_original_channels) ) + && AOUT_FMTS_SIMILAR(p_first, p_second) ) /* Check if i_rate == i_rate and i_channels == i_channels */ #define AOUT_FMTS_SIMILAR( p_first, p_second ) ( \