summaryrefslogtreecommitdiff
path: root/libavcodec/i386/dsputil_mmx.c
diff options
context:
space:
mode:
authorLennert Buytenhek <buytenh@math.leidenuniv.nl>2002-09-01 07:26:43 +0000
committerMichael Niedermayer <michaelni@gmx.at>2002-09-01 07:26:43 +0000
commit1565dabc1a7d0b5a9ad44a27aae8ce637ccd3538 (patch)
tree88dddaedf419c5d0cd1c423c9539d431751f1959 /libavcodec/i386/dsputil_mmx.c
parentab6d194a38ec051aaa0c1b8131cd8110f9bce834 (diff)
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
Diffstat (limited to 'libavcodec/i386/dsputil_mmx.c')
-rw-r--r--libavcodec/i386/dsputil_mmx.c16
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) {