[FFmpeg-devel] [PATCH] Move MLP's dot product to DSPContext

Ramiro Polla ramiro.polla
Fri May 15 19:28:18 CEST 2009


On Fri, May 15, 2009 at 2:23 PM, Diego Biurrun <diego at biurrun.de> wrote:
> On Fri, May 15, 2009 at 10:38:01AM -0300, Ramiro Polla wrote:
>> #if ARCH_X86_64
>>
>> #else /* if ARCH_X86_32 */
>>
>> #endif /* ARCH_X86_32 */
>
> Hmmm...
>
> I find it confusing if the #endif comment differs from the #if condition.

And I find it confusing if the #endif comment relates to the first #if
in a sequence.

Should it be:
#if ARCH_X86_64
#else /* ARCH_X86_32 */
#endif /* ARCH_X86_64 */

or:
#if ARCH_X86_64
#else /* ARCH_X86_64 */
#endif /* ARCH_X86_64 */

or just plain:
#if ARCH_X86_64
#else
#endif /* ARCH_X86_64 */

Ramiro Polla



More information about the ffmpeg-devel mailing list