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

/external/jmonkeyengine/engine/src/terrain/com/jme3/terrain/heightmap/
H A DFluidSimHeightMap.java52 private float timeStep = 0.033f; // constant time-step between each iteration field in class:FluidSimHeightMap
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);
154 coefC = ((2 * waveSpeed * waveSpeed * timeStep * timeStep) / (nodeDistance * nodeDistance)) / (viscosity * timeStep
285 setTimeStep(float timeStep) argument
[all...]
/external/jmonkeyengine/engine/src/bullet-native/
H A DjmePhysicsSpace.cpp209 void jmePhysicsSpace::preTickCallback(btDynamicsWorld *world, btScalar timeStep) { argument
214 env->CallVoidMethod(javaPhysicsSpace, jmeClasses::PhysicsSpace_preTick, timeStep);
223 void jmePhysicsSpace::postTickCallback(btDynamicsWorld *world, btScalar timeStep) { argument
228 env->CallVoidMethod(javaPhysicsSpace, jmeClasses::PhysicsSpace_postTick, timeStep);
/external/aac/libSBRdec/src/
H A Denv_extr.cpp160 static int checkFrameInfo (FRAME_INFO *pFrameInfo, int numberOfTimeSlots, int overlap, int timeStep);
214 hHeaderData->timeStep = (flags & SBRDEC_ELD_GRID) ? 1 : 2;
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) )
1316 int timeStep) /*!< QMF slots to SBR slots step factor */
1342 if (timeStep < 1 || timeStep > 2) {
1345 maxPos = numberOfTimeSlots + (overlap/timeStep);
1313 checkFrameInfo(FRAME_INFO * pFrameInfo, int numberOfTimeSlots, int overlap, int timeStep) argument
[all...]
H A Denv_extr.h217 UCHAR timeStep; /*!< Time resolution of SBR in QMF-slots */ member in struct:__anon204
H A Dlpp_tran.cpp225 const int timeStep, /*!< Time step of envelope */
266 startSample = firstSlotOffs * timeStep;
267 stopSample = pSettings->nCols + lastSlotOffs * timeStep;
218 lppTransposer(HANDLE_SBR_LPP_TRANS hLppTrans, QMF_SCALE_FACTOR *sbrScaleFactor, FIXP_DBL **qmfBufferReal, FIXP_DBL *degreeAlias, FIXP_DBL **qmfBufferImag, const int useLP, const int timeStep, const int firstSlotOffs, const int lastSlotOffs, const int nInvfBands, INVF_MODE *sbr_invf_mode, INVF_MODE *sbr_invf_mode_prev ) argument
/external/aac/libSBRenc/src/
H A Dtran_det.cpp237 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) {
231 addHighbandEnergies(FIXP_DBL **RESTRICT Energies, INT *scaleEnergies, FIXP_DBL EnergiesM[NUMBER_TIME_SLOTS_2304][MAX_FREQ_COEFFS], UCHAR *RESTRICT freqBandTable, INT nSfb, INT sbrSlots, INT timeStep) argument
293 FDKsbrEnc_frameSplitter(FIXP_DBL **Energies, INT *scaleEnergies, HANDLE_SBR_TRANSIENT_DETECTOR h_sbrTransientDetector, UCHAR *freqBandTable, UCHAR *tran_vector, int YBufferWriteOffset, int YBufferSzShift, int nSfb, int timeStep, int no_cols) argument
552 FDKsbrEnc_transientDetect(HANDLE_SBR_TRANSIENT_DETECTOR h_sbrTran, FIXP_DBL **Energies, INT *scaleEnergies, UCHAR *transient_info, int YBufferWriteOffset, int YBufferSzShift, int timeStep, int frameMiddleBorder) argument
H A Denv_est.cpp596 INT timeStep = h_sbr->sbrExtractEnvelope.time_step; local
630 start_pos = timeStep * frame_info->borders[i];
631 stop_pos = timeStep * frame_info->borders[i + 1];
637 stop_pos -= fixMax(2, timeStep); /* consider at least 2 QMF slots less for short envelopes (envelopes just before transients) */
H A Dsbr_encoder.cpp1133 INT timeSlots, timeStep, startIndex; local
1193 timeStep = sbrConfigData->noQmfSlots / timeSlots;
1232 tran_off = LD_PRETRAN_OFF + FRAME_MIDDLE_SLOT_512LD*timeStep;
1238 case 2048: tran_off = 8 + FRAME_MIDDLE_SLOT_2048 * timeStep; break;
1239 case 1920: tran_off = 7 + FRAME_MIDDLE_SLOT_1920 * timeStep; break;
1246 timeSlots, timeStep, tran_off,

Completed in 203 milliseconds