From f8985bb7fc84bd682ff8900c04120d7c4285b120 Mon Sep 17 00:00:00 2001 From: yao Date: Tue, 12 Mar 2013 08:55:50 +0800 Subject: [PATCH] fix warnings on Linux --- modules/ocl/src/stereobm.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/modules/ocl/src/stereobm.cpp b/modules/ocl/src/stereobm.cpp index 39a22eebb4..57e14f93d1 100644 --- a/modules/ocl/src/stereobm.cpp +++ b/modules/ocl/src/stereobm.cpp @@ -72,7 +72,7 @@ namespace stereoBM ///////////////////////////////////////////////////////////////////////// //////////////////////////prefilter_xsbel//////////////////////////////// //////////////////////////////////////////////////////////////////////// -void prefilter_xsobel(const oclMat &input, oclMat &output, int prefilterCap) +static void prefilter_xsobel(const oclMat &input, oclMat &output, int prefilterCap) { Context *clCxt = input.clCxt; @@ -110,7 +110,7 @@ static inline int divUp(int total, int grain) //////////////////////////////////////////////////////////////////////////// ///////////////////////////////stereoBM_GPU//////////////////////////////// //////////////////////////////////////////////////////////////////////////// -void stereo_bm(const oclMat &left, const oclMat &right, oclMat &disp, +static void stereo_bm(const oclMat &left, const oclMat &right, oclMat &disp, int maxdisp, int winSize, oclMat &minSSD_buf) { int winsz2 = winSize >> 1; @@ -160,7 +160,7 @@ void stereo_bm(const oclMat &left, const oclMat &right, oclMat &disp, //////////////////////////////////////////////////////////////////////////// ///////////////////////////////postfilter_textureness/////////////////////// //////////////////////////////////////////////////////////////////////////// -void postfilter_textureness(oclMat &left, int winSize, +static void postfilter_textureness(oclMat &left, int winSize, float avergeTexThreshold, oclMat &disparity) { Context *clCxt = left.clCxt; @@ -197,7 +197,7 @@ void postfilter_textureness(oclMat &left, int winSize, ////////////////////////////////////////////////////////////////////////////// /////////////////////////////////////operator///////////////////////////////// ///////////////////////////////////////////////////////////////////////////// -void operator_(oclMat &minSSD, oclMat &leBuf, oclMat &riBuf, int preset, int ndisp, +static void operator_(oclMat &minSSD, oclMat &leBuf, oclMat &riBuf, int preset, int ndisp, int winSize, float avergeTexThreshold, const oclMat &left, const oclMat &right, oclMat &disparity)