shithub: openh264

Download patch

ref: 0f35049bb49b303333405005c563ed270948f34e
parent: 84903f145ee3f4224c737442a6889ed238733004
author: volvet <[email protected]>
date: Wed Mar 19 11:00:54 EDT 2014

remove blank space

--- a/codec/processing/src/scenechangedetection/SceneChangeDetection.h
+++ b/codec/processing/src/scenechangedetection/SceneChangeDetection.h
@@ -74,7 +74,7 @@
   }
   virtual void operator () (uint8_t* pSrcY, int32_t iSrcStrideY, uint8_t* pRefY, int32_t iRefStrideY, uint8_t *& pStaticBlockIdc) {
     int32_t iSad = m_pfSad(pSrcY, iSrcStrideY, pRefY, iSrcStrideY);
-    m_sParam.iMotionBlockNum += iSad > HIGH_MOTION_BLOCK_THRESHOLD;    
+    m_sParam.iMotionBlockNum += iSad > HIGH_MOTION_BLOCK_THRESHOLD;
   }
 protected:
   SadFuncPtr m_pfSad;