From 7789e74c3281ef84aac5a547239074016ee904ea Mon Sep 17 00:00:00 2001 From: David McPaul Date: Fri, 8 Jan 2010 21:27:42 +0000 Subject: [PATCH] Cleanup git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@34959 a95241bf-73f2-0310-859d-f6bbb57e9c96 --- src/add-ons/media/plugins/ffmpeg/gfx_util.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/add-ons/media/plugins/ffmpeg/gfx_util.cpp b/src/add-ons/media/plugins/ffmpeg/gfx_util.cpp index 306f3da6fe..f9e6e1a87f 100644 --- a/src/add-ons/media/plugins/ffmpeg/gfx_util.cpp +++ b/src/add-ons/media/plugins/ffmpeg/gfx_util.cpp @@ -46,7 +46,7 @@ CPUCapabilities cpu; } if (pixelFormat == PIX_FMT_YUV420P || pixelFormat == PIX_FMT_YUVJ420P) { - if (cpu.HasSSE2() && width % 8 == 0 && height % 2 == 0 ) { + if (cpu.HasSSE2() && width % 8 == 0 && height % 2 == 0) { TRACE("resolve_colorspace: gfx_conv_yuv420p_rgba32_sse2\n"); return gfx_conv_yuv420p_rgba32_sse2; } else {