diff options
Diffstat (limited to 'src/video_out')
-rw-r--r-- | src/video_out/deinterlace.c | 6 | ||||
-rw-r--r-- | src/video_out/video_out_xvmc.c | 4 | ||||
-rw-r--r-- | src/video_out/yuv2rgb.c | 10 |
3 files changed, 10 insertions, 10 deletions
diff --git a/src/video_out/deinterlace.c b/src/video_out/deinterlace.c index d08346cfc..347185b2f 100644 --- a/src/video_out/deinterlace.c +++ b/src/video_out/deinterlace.c @@ -811,7 +811,7 @@ void deinterlace_yuv( uint8_t *pdst, uint8_t *psrc[], xine_fast_memcpy(pdst,psrc[0],width*height); break; case DEINTERLACE_ONEFIELDXV: - lprintf("deinterlace: ONEFIELDXV must be handled by the video driver.\n"); + lprintf("ONEFIELDXV must be handled by the video driver.\n"); break; case DEINTERLACE_LINEARBLEND: if( check_for_mmx() ) @@ -820,7 +820,7 @@ void deinterlace_yuv( uint8_t *pdst, uint8_t *psrc[], deinterlace_linearblend_yuv(pdst,psrc,width,height); break; default: - lprintf("deinterlace: unknow method %d.\n",method); + lprintf("unknow method %d.\n",method); break; } } @@ -836,7 +836,7 @@ int deinterlace_yuv_supported ( int method ) case DEINTERLACE_ONEFIELD: return check_for_mmx(); case DEINTERLACE_ONEFIELDXV: - lprintf ("deinterlace: ONEFIELDXV must be handled by the video driver.\n"); + lprintf ("ONEFIELDXV must be handled by the video driver.\n"); return 0; case DEINTERLACE_LINEARBLEND: return 1; diff --git a/src/video_out/video_out_xvmc.c b/src/video_out/video_out_xvmc.c index 9708c8179..7b1ec62f9 100644 --- a/src/video_out/video_out_xvmc.c +++ b/src/video_out/video_out_xvmc.c @@ -17,7 +17,7 @@ * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA * - * $Id: video_out_xvmc.c,v 1.10 2003/12/05 15:55:04 f1rmb Exp $ + * $Id: video_out_xvmc.c,v 1.11 2003/12/06 18:11:56 mroi Exp $ * * video_out_xvmc.c, X11 video motion compensation extension interface for xine * @@ -694,7 +694,7 @@ static cxid_t *xvmc_set_context (xvmc_driver_t *this, result =XvMCCreateMacroBlocks(this->display, &this->context, slices, macroblocks->macro_blocks); if(result != Success) { - printf(this->xine, XINE_VERBOSITY_DEBUG, "set_context: ERROR XvMCCreateMacroBlocks failed\n"); + xprintf(this->xine, XINE_VERBOSITY_DEBUG, "set_context: ERROR XvMCCreateMacroBlocks failed\n"); macroblocks->xine_mc.xvmc_accel = 0; abort(); } diff --git a/src/video_out/yuv2rgb.c b/src/video_out/yuv2rgb.c index 57b76867c..817ccecde 100644 --- a/src/video_out/yuv2rgb.c +++ b/src/video_out/yuv2rgb.c @@ -23,7 +23,7 @@ * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA * - * $Id: yuv2rgb.c,v 1.47 2003/12/05 15:55:04 f1rmb Exp $ + * $Id: yuv2rgb.c,v 1.48 2003/12/06 18:11:56 mroi Exp $ */ #include "config.h" @@ -2397,7 +2397,7 @@ static void yuv2rgb_set_csc_levels (yuv2rgb_factory_t *this, default: - lprintf ("yuv2rgb: mode %d not supported by yuv2rgb\n", mode); + lprintf ("mode %d not supported by yuv2rgb\n", mode); abort(); } @@ -2529,7 +2529,7 @@ static void yuv2rgb_c_init (yuv2rgb_factory_t *this) break; default: - lprintf ("yuv2rgb: mode %d not supported by yuv2rgb\n", this->mode); + lprintf ("mode %d not supported by yuv2rgb\n", this->mode); abort(); } @@ -2572,7 +2572,7 @@ static void yuv2rgb_single_pixel_init (yuv2rgb_factory_t *this) { break; default: - lprintf ("yuv2rgb: mode %d not supported by yuv2rgb\n", this->mode); + lprintf ("mode %d not supported by yuv2rgb\n", this->mode); abort(); } } @@ -3114,7 +3114,7 @@ static void yuy22rgb_c_init (yuv2rgb_factory_t *this) break; default: - lprintf ("yuv2rgb: mode %d not supported for yuy2\n", this->mode); + lprintf ("mode %d not supported for yuy2\n", this->mode); } } |