diff options
author | Michael Roitzsch <mroi@users.sourceforge.net> | 2003-12-06 18:11:53 +0000 |
---|---|---|
committer | Michael Roitzsch <mroi@users.sourceforge.net> | 2003-12-06 18:11:53 +0000 |
commit | e984f917fbbc37874f55c6aff3239831cb43d1ec (patch) | |
tree | 79c7832e99ed11496e9b7a175bf810019213bc68 /src/video_out/deinterlace.c | |
parent | 1a94ed9db8e28082d9286df2d6c59c7dffb69c1e (diff) | |
download | xine-lib-e984f917fbbc37874f55c6aff3239831cb43d1ec.tar.gz xine-lib-e984f917fbbc37874f55c6aff3239831cb43d1ec.tar.bz2 |
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
Diffstat (limited to 'src/video_out/deinterlace.c')
-rw-r--r-- | src/video_out/deinterlace.c | 6 |
1 files changed, 3 insertions, 3 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; |