From e984f917fbbc37874f55c6aff3239831cb43d1ec Mon Sep 17 00:00:00 2001 From: Michael Roitzsch Date: Sat, 6 Dec 2003 18:11:53 +0000 Subject: reading through Daniel's huge patch was quite tiresome, but it was not worthless: * fixing some lprintf's * fixing one printf -> xprintf * adding patch to diff_to_ffmpeg_cvs * small addition to xineutils.h (some gcc magic for future optimizations) CVS patchset: 5853 CVS date: 2003/12/06 18:11:53 --- src/video_out/deinterlace.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/video_out/deinterlace.c') 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; -- cgit v1.2.3