HomeSort by relevance Sort by last modified time
    Searched refs:timeStep (Results 1 - 12 of 12) sorted by null

  /external/jmonkeyengine/engine/src/terrain/com/jme3/terrain/heightmap/
FluidSimHeightMap.java 52 private float timeStep = 0.033f; // constant time-step between each iteration
78 * @param timestep
89 public FluidSimHeightMap(int size, int iterations, float minInitialHeight, float maxInitialHeight, float viscosity, float waveSpeed, float timestep, float nodeDistance, long seed) throws Exception {
105 this.timeStep = timestep;
152 coefA = (4 - (8 * waveSpeed * waveSpeed * timeStep * timeStep) / (nodeDistance * nodeDistance)) / (viscosity * timeStep + 2);
153 coefB = (viscosity * timeStep - 2) / (viscosity * timeStep + 2);
    [all...]
  /external/aac/libSBRenc/src/
tran_det.h 122 int timeStep,
147 int timeStep,
tran_det.cpp 237 INT timeStep)
257 for (i=0; i<timeStep; i++) {
301 int timeStep,
310 INT sbrSlots = fMultI(GetInvInt(timeStep),no_cols);
312 FDK_ASSERT( sbrSlots * timeStep == no_cols );
331 timeStep);
558 int timeStep,
568 qmfStartSample = timeStep * frameMiddleBorder;
572 switch (timeStep) {
sbr_encoder.cpp     [all...]
env_est.cpp 591 INT timeStep = h_sbr->sbrExtractEnvelope.time_step;
624 start_pos = timeStep * frame_info->borders[i];
625 stop_pos = timeStep * frame_info->borders[i + 1];
630 stop_pos -= fixMax(2, timeStep); /* consider at least 2 QMF slots less for short envelopes (envelopes just before transients) */
    [all...]
  /external/jmonkeyengine/engine/src/bullet-native/
jmePhysicsSpace.cpp 209 void jmePhysicsSpace::preTickCallback(btDynamicsWorld *world, btScalar timeStep) {
214 env->CallVoidMethod(javaPhysicsSpace, jmeClasses::PhysicsSpace_preTick, timeStep);
223 void jmePhysicsSpace::postTickCallback(btDynamicsWorld *world, btScalar timeStep) {
228 env->CallVoidMethod(javaPhysicsSpace, jmeClasses::PhysicsSpace_postTick, timeStep);
  /external/aac/libSBRdec/src/
lpp_tran.h 204 const int timeStep,
env_extr.cpp 160 static int checkFrameInfo (FRAME_INFO *pFrameInfo, int numberOfTimeSlots, int overlap, int timeStep);
214 hHeaderData->timeStep = (flags & SBRDEC_ELD_GRID) ? 1 : 2;
226 /* One SBR timeslot corresponds to the amount of samples equal to the amount of analysis bands, divided by the timestep. */
227 hHeaderData->numberTimeSlots = (samplesPerFrame/numAnalysisBands) >> (hHeaderData->timeStep - 1);
510 if ( !checkFrameInfo (&hFrameData->frameInfo, hHeaderData->numberTimeSlots, overlap, hHeaderData->timeStep) )
591 if ( !checkFrameInfo (&hFrameDataLeft->frameInfo, hHeaderData->numberTimeSlots, overlap, hHeaderData->timeStep) )
602 if ( !checkFrameInfo (&hFrameDataRight->frameInfo, hHeaderData->numberTimeSlots, overlap, hHeaderData->timeStep) )
    [all...]
sbr_dec.cpp 341 int noCols = hHeaderData->numberTimeSlots * hHeaderData->timeStep;
345 assignTimeSlots( hSbrDec, hHeaderData->numberTimeSlots * hHeaderData->timeStep, flags & SBRDEC_LOW_POWER);
443 hHeaderData->timeStep,
736 int noCols = timeSlots * hHeaderData->timeStep; /* Number of QMF slots per frame */
836 assignTimeSlots( &hSbrChannel->SbrDec, hHeaderData->numberTimeSlots * hHeaderData->timeStep, qmfFlags & QMF_FLAG_LP);
    [all...]
env_extr.h 217 UCHAR timeStep; /*!< Time resolution of SBR in QMF-slots */
lpp_tran.cpp 225 const int timeStep, /*!< Time step of envelope */
266 startSample = firstSlotOffs * timeStep;
267 stopSample = pSettings->nCols + lastSlotOffs * timeStep;
    [all...]
env_calc.cpp 526 int no_cols = hHeaderData->numberTimeSlots * hHeaderData->timeStep;
527 UCHAR first_start = borders[0] * hHeaderData->timeStep;
612 UCHAR start_pos = hHeaderData->timeStep * borders[i]; /* Start-position in time (subband sample) for current envelope. */
613 UCHAR stop_pos = hHeaderData->timeStep * borders[i+1]; /* Stop-position in time (subband sample) for current envelope. */
    [all...]

Completed in 235 milliseconds