diff options
author | Guenter Bartsch <guenter@users.sourceforge.net> | 2001-06-10 02:07:28 +0000 |
---|---|---|
committer | Guenter Bartsch <guenter@users.sourceforge.net> | 2001-06-10 02:07:28 +0000 |
commit | 2b32f02f9b3c3393b75191050bcc6fef9ff6d1d4 (patch) | |
tree | 98b912a5a459e9f7525e9e4bf8ff97d10c610c15 /src/video_out/yuv2rgb.c | |
parent | 5bc35f10e1b5294a12de6a1a9d2c407421b16f5e (diff) | |
download | xine-lib-2b32f02f9b3c3393b75191050bcc6fef9ff6d1d4.tar.gz xine-lib-2b32f02f9b3c3393b75191050bcc6fef9ff6d1d4.tar.bz2 |
further cleanups
CVS patchset: 149
CVS date: 2001/06/10 02:07:28
Diffstat (limited to 'src/video_out/yuv2rgb.c')
-rw-r--r-- | src/video_out/yuv2rgb.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/video_out/yuv2rgb.c b/src/video_out/yuv2rgb.c index c75537264..e4b60033f 100644 --- a/src/video_out/yuv2rgb.c +++ b/src/video_out/yuv2rgb.c @@ -465,16 +465,16 @@ yuv2rgb_t *yuv2rgb_init (int mode) { if ((this->yuv2rgb_fun == NULL) && (mm & MM_ACCEL_X86_MMXEXT)) { yuv2rgb_init_mmxext (this, mode); if (this->yuv2rgb_fun != NULL) - fprintf (stderr, "Using MMXEXT for colorspace transform\n"); + printf ("yuv2rgb: using MMXEXT for colorspace transform\n"); } if ((this->yuv2rgb_fun == NULL) && (mm & MM_ACCEL_X86_MMX)) { yuv2rgb_init_mmx (this, mode); if (this->yuv2rgb_fun != NULL) - fprintf (stderr, "Using MMX for colorspace transform\n"); + printf ("yuv2rgb: using MMX for colorspace transform\n"); } #endif if (this->yuv2rgb_fun == NULL) { - fprintf (stderr, "No accelerated colorspace conversion found\n"); + printf ("yuv2rgb: no accelerated colorspace conversion found\n"); yuv2rgb_c_init (this, mode); } return this; |