Skip to content
Snippets Groups Projects
Commit 1565dabc authored by Lennert Buytenhek's avatar Lennert Buytenhek Committed by Michael Niedermayer
Browse files

be less verbose patch by (Lennert Buytenhek <buytenh at math dot leidenuniv dot nl>)

Originally committed as revision 889 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent ab6d194a
No related branches found
No related tags found
No related merge requests found
...@@ -393,19 +393,19 @@ static void just_return() { return; } ...@@ -393,19 +393,19 @@ static void just_return() { return; }
void dsputil_init_mmx(void) void dsputil_init_mmx(void)
{ {
mm_flags = mm_support(); mm_flags = mm_support();
#if 1 #if 0
printf("libavcodec: CPU flags:"); fprintf(stderr, "libavcodec: CPU flags:");
if (mm_flags & MM_MMX) if (mm_flags & MM_MMX)
printf(" mmx"); fprintf(stderr, " mmx");
if (mm_flags & MM_MMXEXT) if (mm_flags & MM_MMXEXT)
printf(" mmxext"); fprintf(stderr, " mmxext");
if (mm_flags & MM_3DNOW) if (mm_flags & MM_3DNOW)
printf(" 3dnow"); fprintf(stderr, " 3dnow");
if (mm_flags & MM_SSE) if (mm_flags & MM_SSE)
printf(" sse"); fprintf(stderr, " sse");
if (mm_flags & MM_SSE2) if (mm_flags & MM_SSE2)
printf(" sse2"); fprintf(stderr, " sse2");
printf("\n"); fprintf(stderr, "\n");
#endif #endif
if (mm_flags & MM_MMX) { if (mm_flags & MM_MMX) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment