Searched defs:in1 (Results 1 - 1 of 1) sorted by relevance

/packages/apps/Camera/jni/feature_stab/src/dbreg/
H A Ddbstabsmooth.cpp24 static bool vpmotion_add(VP_MOTION *in1, VP_MOTION *in2, VP_MOTION *out);
25 static bool vpmotion_multiply(VP_MOTION *in1, double factor, VP_MOTION *out);
307 static bool vpmotion_add(VP_MOTION *in1, VP_MOTION *in2, VP_MOTION *out) argument
310 if(in1 == NULL || in2 == NULL || out == NULL)
314 out->par[i] = in1->par[i] + in2->par[i];
319 static bool vpmotion_multiply(VP_MOTION *in1, double factor, VP_MOTION *out) argument
322 if(in1 == NULL || out == NULL)
326 out->par[i] = in1->par[i] * factor;

Completed in 69 milliseconds