diff options
author | Romain Dolbeau <dolbeau@irisa.fr> | 2003-07-09 20:18:13 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2003-07-09 20:18:13 +0000 |
commit | e45a2872fafe631c14aee9f79d0963d68c4fc1fd (patch) | |
tree | 8c559f7a215414fb8207f7f524702d11d5b9dce0 /ffmpeg.c | |
parent | 0273ceebbd01f9fd5238558e6151e0b9aa3305ab (diff) | |
download | ffmpeg-e45a2872fafe631c14aee9f79d0963d68c4fc1fd.tar.gz |
1) remove TBL support in PPC performance. It's much more useful to use the
PMCs, and with Apple's CHUD it's fairly easy too. No reason to keep useless
code around
2) make the PPC perf stuff a configure option
3) make put_pixels16_altivec a bit faster by unrolling the loop by 4
patch by (Romain Dolbeau <dolbeau at irisa dot fr>)
Originally committed as revision 2022 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'ffmpeg.c')
-rw-r--r-- | ffmpeg.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -2757,10 +2757,10 @@ int main(int argc, char **argv) av_free_static(); -#ifdef POWERPC_TBL_PERFORMANCE_REPORT +#ifdef POWERPC_PERFORMANCE_REPORT extern void powerpc_display_perf_report(void); powerpc_display_perf_report(); -#endif /* POWERPC_TBL_PERFORMANCE_REPORT */ +#endif /* POWERPC_PERFORMANCE_REPORT */ #ifndef CONFIG_WIN32 if (received_sigterm) { |