0
0
mirror of https://github.com/mpv-player/mpv.git synced 2024-09-20 12:02:23 +02:00

some info printfs moved stderr->stdout

git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@1217 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
arpi_esp 2001-06-23 23:38:51 +00:00
parent f0c5014d1d
commit cee8daeeea
2 changed files with 9 additions and 9 deletions

View File

@ -66,12 +66,12 @@ void idct_init (void)
{
#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 @@ void idct_init (void)
#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 @@ void idct_init (void)
{
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++)

View File

@ -34,24 +34,24 @@ void motion_comp_init (void)
#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;
}
}