summaryrefslogtreecommitdiff
path: root/ffmpeg.c
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2003-01-16 21:54:55 +0000
committerMichael Niedermayer <michaelni@gmx.at>2003-01-16 21:54:55 +0000
commitdb40a39aba6a22729279ac8915b52b182473f209 (patch)
treebd67103c33705c172f5cac6838edc4899a1bfc80 /ffmpeg.c
parentf44a2df04fb553ef076594daca3ed4ccab315123 (diff)
AltiVec perf (take 2), plus a couple AltiVec functions by (Romain Dolbeau <dolbeau at irisa dot fr>)
Originally committed as revision 1464 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'ffmpeg.c')
-rw-r--r--ffmpeg.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/ffmpeg.c b/ffmpeg.c
index 6a8534b1b6..0dabfd09c4 100644
--- a/ffmpeg.c
+++ b/ffmpeg.c
@@ -2829,5 +2829,12 @@ int main(int argc, char **argv)
av_close_input_file(input_files[i]);
av_free_static();
+
+
+#ifdef ALTIVEC_TBL_PERFORMANCE_REPORT
+ extern void altivec_display_perf_report(void);
+ altivec_display_perf_report();
+#endif /* ALTIVEC_TBL_PERFORMANCE_REPORT */
+
return 0;
}