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
This commit is contained in:
Lennert Buytenhek 2002-09-01 07:26:43 +00:00 committed by Michael Niedermayer
parent ab6d194a38
commit 1565dabc1a
1 changed files with 8 additions and 8 deletions

View File

@ -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) {