diff options
author | Lennert Buytenhek <buytenh@math.leidenuniv.nl> | 2002-09-01 07:26:43 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2002-09-01 07:26:43 +0000 |
commit | 1565dabc1a7d0b5a9ad44a27aae8ce637ccd3538 (patch) | |
tree | 88dddaedf419c5d0cd1c423c9539d431751f1959 | |
parent | ab6d194a38ec051aaa0c1b8131cd8110f9bce834 (diff) | |
download | ffmpeg-1565dabc1a7d0b5a9ad44a27aae8ce637ccd3538.tar.gz |
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
-rw-r--r-- | libavcodec/i386/dsputil_mmx.c | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/libavcodec/i386/dsputil_mmx.c b/libavcodec/i386/dsputil_mmx.c index 190e282767..fed1818743 100644 --- a/libavcodec/i386/dsputil_mmx.c +++ b/libavcodec/i386/dsputil_mmx.c @@ -393,19 +393,19 @@ static void just_return() { return; } void dsputil_init_mmx(void) { mm_flags = mm_support(); -#if 1 - printf("libavcodec: CPU flags:"); +#if 0 + fprintf(stderr, "libavcodec: CPU flags:"); if (mm_flags & MM_MMX) - printf(" mmx"); + fprintf(stderr, " mmx"); if (mm_flags & MM_MMXEXT) - printf(" mmxext"); + fprintf(stderr, " mmxext"); if (mm_flags & MM_3DNOW) - printf(" 3dnow"); + fprintf(stderr, " 3dnow"); if (mm_flags & MM_SSE) - printf(" sse"); + fprintf(stderr, " sse"); if (mm_flags & MM_SSE2) - printf(" sse2"); - printf("\n"); + fprintf(stderr, " sse2"); + fprintf(stderr, "\n"); #endif if (mm_flags & MM_MMX) { |