1
0
mirror of https://github.com/mstorsjo/fdk-aac.git synced 2025-06-05 22:39:13 +02:00

Add ppc optimization for clz and fixmul

Optimize ppc/ppc64 similar to i386/x86_64, approximately doubling
encoding speed on a Power Mac G5 running OS X 10.5.8.
This commit is contained in:
Mark Harris
2014-05-26 12:23:56 -07:00
parent 5e154c7ed1
commit c15b653b99
5 changed files with 232 additions and 1 deletions

View File

@ -103,6 +103,9 @@ amm-info@iis.fraunhofer.de
#elif defined(__x86__) /* cppp replaced: elif */
#include "x86/clz_x86.h"
#elif defined(__powerpc__)
#include "ppc/clz_ppc.h"
#endif /* all cores */