diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2002-01-10 00:41:53 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2002-01-10 00:41:53 +0000 |
commit | f4470e09369b8b62f90dd3a3efe892d1004a493b (patch) | |
tree | ec56b66460525f656b3f765ec379b6022cdc0d48 | |
parent | fb4a9613ee4c03e38b4b85ad2d375bbdc856118a (diff) | |
download | ffmpeg-f4470e09369b8b62f90dd3a3efe892d1004a493b.tar.gz |
print cpu flags
Originally committed as revision 248 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r-- | libavcodec/i386/dsputil_mmx.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/i386/dsputil_mmx.c b/libavcodec/i386/dsputil_mmx.c index 8647ed187b..c9045d02ad 100644 --- a/libavcodec/i386/dsputil_mmx.c +++ b/libavcodec/i386/dsputil_mmx.c @@ -963,8 +963,8 @@ static void sub_pixels_xy2_mmx( DCTELEM *block, const UINT8 *pixels, int line void dsputil_init_mmx(void) { mm_flags = mm_support(); -#if 0 - printf("CPU flags:"); +#if 1 + printf("libavcodec: CPU flags:"); if (mm_flags & MM_MMX) printf(" mmx"); if (mm_flags & MM_MMXEXT) |