changeset 1216:4059e05c480a

some info printfs moved stderr->stdout
author arpi_esp
date Sat, 23 Jun 2001 23:38:51 +0000
parents 9b44aca2ab63
children 149beb275b64
files libmpeg2/idct.c libmpeg2/motion_comp.c
diffstat 2 files changed, 9 insertions(+), 9 deletions(-) [+]
line wrap: on
line diff
--- a/libmpeg2/idct.c	Sat Jun 23 22:42:38 2001 +0000
+++ b/libmpeg2/idct.c	Sat Jun 23 23:38:51 2001 +0000
@@ -66,12 +66,12 @@
 {
 #ifdef ARCH_X86
     if (config.flags & MM_ACCEL_X86_MMXEXT) {
-	fprintf (stderr, "Using MMXEXT for IDCT transform\n");
+	printf ("libmpeg2: Using MMXEXT for IDCT transform\n");
 	idct_block_copy = idct_block_copy_mmxext;
 	idct_block_add = idct_block_add_mmxext;
 	idct_mmx_init ();
     } else if (config.flags & MM_ACCEL_X86_MMX) {
-	fprintf (stderr, "Using MMX for IDCT transform\n");
+	printf ("libmpeg2: Using MMX for IDCT transform\n");
 	idct_block_copy = idct_block_copy_mmx;
 	idct_block_add = idct_block_add_mmx;
 	idct_mmx_init ();
@@ -79,7 +79,7 @@
 #endif
 #ifdef LIBMPEG2_MLIB
     if (config.flags & MM_ACCEL_MLIB) {
-	fprintf (stderr, "Using mlib for IDCT transform\n");
+	printf ("libmpeg2: Using mlib for IDCT transform\n");
 	idct_block_copy = idct_block_copy_mlib;
 	idct_block_add = idct_block_add_mlib;
     } else
@@ -87,7 +87,7 @@
     {
 	int i;
 
-	fprintf (stderr, "No accelerated IDCT transform found\n");
+	printf ("libmpeg2: No accelerated IDCT transform found\n");
 	idct_block_copy = idct_block_copy_c;
 	idct_block_add = idct_block_add_c;
 	for (i = -384; i < 640; i++)
--- a/libmpeg2/motion_comp.c	Sat Jun 23 22:42:38 2001 +0000
+++ b/libmpeg2/motion_comp.c	Sat Jun 23 23:38:51 2001 +0000
@@ -34,24 +34,24 @@
 
 #ifdef ARCH_X86
     if (config.flags & MM_ACCEL_X86_MMXEXT) {
-	fprintf (stderr, "Using MMXEXT for motion compensation\n");
+	printf ("libmpeg2: Using MMXEXT for motion compensation\n");
 	mc_functions = mc_functions_mmxext;
     } else if (config.flags & MM_ACCEL_X86_3DNOW) {
-	fprintf (stderr, "Using 3DNOW for motion compensation\n");
+	printf ("libmpeg2: Using 3DNOW for motion compensation\n");
 	mc_functions = mc_functions_3dnow;
     } else if (config.flags & MM_ACCEL_X86_MMX) {
-	fprintf (stderr, "Using MMX for motion compensation\n");
+	printf ("libmpeg2: Using MMX for motion compensation\n");
 	mc_functions = mc_functions_mmx;
     } else
 #endif
 #ifdef LIBMPEG2_MLIB
     if (config.flags & MM_ACCEL_MLIB) {
-	fprintf (stderr, "Using mlib for motion compensation\n");
+	printf ("libmpeg2: Using mlib for motion compensation\n");
 	mc_functions = mc_functions_mlib;
     } else
 #endif
     {
-	fprintf (stderr, "No accelerated motion compensation found\n");
+	printf ("libmpeg2: No accelerated motion compensation found\n");
 	mc_functions = mc_functions_c;
     }
 }