HomeSort by relevance Sort by last modified time
    Searched refs:EAS_U32 (Results 1 - 25 of 48) sorted by null

1 2

  /external/sonivox/arm-wt-22k/host_src/
eas_wave.h 41 EAS_U32 nSamplesPerSec;
42 EAS_U32 nAvgBytesPerSec;
49 EAS_U32 nRiffTag;
50 EAS_U32 nRiffSize;
51 EAS_U32 nWaveTag;
52 EAS_U32 nFmtTag;
53 EAS_U32 nFmtSize;
55 EAS_U32 nDataTag;
56 EAS_U32 nDataSize;
63 EAS_U32 dataSize
    [all...]
eas_wave.c 41 const EAS_U32 riffTag = 0x46464952;
42 const EAS_U32 waveTag = 0x45564157;
43 const EAS_U32 fmtTag = 0x20746d66;
44 const EAS_U32 dataTag = 0x61746164;
58 static void FlipDWord (EAS_U32 *pValue)
61 EAS_U32 temp;
160 wFile->wh.fc.nSamplesPerSec = (EAS_U32) nSamplesPerSec;
163 wFile->wh.fc.nAvgBytesPerSec = wFile->wh.fc.nBlockAlign * (EAS_U32) nSamplesPerSec;
225 wFile->wh.nRiffSize += (EAS_U32) count;
226 wFile->wh.nDataSize += (EAS_U32) count
    [all...]
jet.h 127 EAS_PUBLIC EAS_BOOL JET_GetEvent (EAS_DATA_HANDLE easHandle, EAS_U32 *pEventRaw, S_JET_EVENT *pEvent);
135 EAS_PUBLIC void JET_ParseEvent (EAS_U32 event, S_JET_EVENT *pEvent);
143 EAS_PUBLIC EAS_RESULT JET_QueueSegment (EAS_DATA_HANDLE easHandle, EAS_INT segmentNum, EAS_INT libNum, EAS_INT repeatCount, EAS_INT transpose, EAS_U32 muteFlags, EAS_U8 userID);
167 EAS_PUBLIC EAS_RESULT JET_SetMuteFlags (EAS_DATA_HANDLE easHandle, EAS_U32 muteFlags, EAS_BOOL sync);
eas.h 46 #define MAKE_LIB_VERSION(a,b,c,d) (((((((EAS_U32) a <<8) | (EAS_U32) b) << 8) | (EAS_U32) c) << 8) | (EAS_U32) d)
51 EAS_U32 libVersion;
58 EAS_U32 buildTimeStamp;
234 EAS_PUBLIC EAS_RESULT EAS_SetPlaybackRate (EAS_DATA_HANDLE pEASData, EAS_HANDLE streamHandle, EAS_U32 rate);
235 #define MAX_PLAYBACK_RATE (EAS_U32)(1L << 29)
236 #define MIN_PLAYBACK_RATE (EAS_U32)(1L << 27)
    [all...]
eas_hostmm.c 381 *((EAS_U32*) p) = ((EAS_U32) c1 << 24) | ((EAS_U32) c2 << 16) | ((EAS_U32) c3 << 8) | c4;
383 *((EAS_U32*) p)= ((EAS_U32) c4 << 24) | ((EAS_U32) c3 << 16) | ((EAS_U32) c2 << 8) | c1;
  /external/sonivox/arm-wt-22k/lib_src/
eas_wavefile.h 48 EAS_U32 time;
52 EAS_U32 audioSize;
53 EAS_U32 flags;
eas_wt_IPC_frame.h 69 EAS_U32 loopEnd; /* points to last PCM sample (not 1 beyond last) */
70 EAS_U32 loopStart; /* points to first sample at start of loop */
71 EAS_U32 phaseAccum; /* current sample, integer portion of phase */
eas_flog.c 64 EAS_I32 EAS_flog2 (EAS_U32 n)
66 EAS_U32 exp;
67 EAS_U32 interp;
77 if ((n & (EAS_U32) MAX_NEGATIVE) != 0)
eas_data.h 73 EAS_U32 time;
74 EAS_U32 frameLength;
93 EAS_U32 handleCheck;
125 EAS_U32 renderTime;
eas_pcmdata.h 74 EAS_U32 handleCheck; /* signature check for checked build */
85 EAS_U32 loopStart; /* loop start, offset in samples from startPos */
87 EAS_U32 loopSamples; /* total loop length, in samples, 0 means no loop */
89 EAS_U32 samplesInLoop; /* samples left in the loop to play back */
93 EAS_U32 phase; /* current phase for interpolator */
94 EAS_U32 basefreq; /* frequency multiplier */
95 EAS_U32 flags; /* stream flags */
96 EAS_U32 envData; /* envelope data (and LFO data) */
97 EAS_U32 envValue; /* current envelope value */
98 EAS_U32 envScale; /* current envelope scale *
    [all...]
jet_data.h 82 ( ((EAS_U32)(a) & 0xFF) << 24 ) \
83 + ( ((EAS_U32)(b) & 0xFF) << 16 ) \
84 + ( ((EAS_U32)(c) & 0xFF) << 8 ) \
85 + ( ((EAS_U32)(d) & 0xFF)))
108 EAS_U32 muteFlags;
146 EAS_U32 jetEventQueue[JET_EVENT_QUEUE_SIZE];
147 EAS_U32 appEventQueue[APP_EVENT_QUEUE_SIZE];
149 EAS_U32 segmentTime;
177 extern void JET_Event (EAS_DATA_HANDLE easHandle, EAS_U32 segTrack, EAS_U8 channel, EAS_U8 controller, EAS_U8 value);
eas_otadata.h 62 EAS_U32 tick; /* length of 32nd note in 256th of a msec */
63 EAS_U32 restTicks; /* ticks to rest after current note */
eas_miditypes.h 56 EAS_U32 jetData; /* JET data */
82 EAS_U32 ticks; /* time of next event in stream */
99 EAS_U32 handleCheck; /* signature check for checked build */
131 EAS_U32 handleCheck; /* signature check for checked build */
eas_wtengine.h 127 EAS_U32 loopEnd; /* points to last PCM sample (not 1 beyond last) */
128 EAS_U32 loopStart; /* points to first sample at start of loop */
129 EAS_U32 phaseAccum; /* current sample, integer portion of phase */
130 EAS_U32 phaseFrac; /* fractional portion of phase */
eas_pcm.h 45 EAS_U32 sampleRate;
47 EAS_U32 loopStart;
48 EAS_U32 loopSamples;
50 EAS_U32 flags;
51 EAS_U32 envData;
eas_mdls.h 46 #define ULONG EAS_U32
53 EAS_U32 Data1;
210 ( ((EAS_U32)(a) & 0xFF) << 24 ) \
211 + ( ((EAS_U32)(b) & 0xFF) << 16 ) \
212 + ( ((EAS_U32)(c) & 0xFF) << 8 ) \
213 + ( ((EAS_U32)(d) & 0xFF) ) )
eas_sndlib.h 229 EAS_U32 loopStart;
230 EAS_U32 loopEnd;
293 EAS_U32 locale;
351 EAS_U32 *pDLSSampleLen;
352 EAS_U32 *pDLSSampleOffsets;
381 SCNST EAS_U32 identifier;
382 SCNST EAS_U32 libAttr;
389 SCNST EAS_U32 *pSampleLen;
390 SCNST EAS_U32 *pSampleOffsets;
eas_smf.c 55 static EAS_RESULT SMF_GetVarLenData (EAS_HW_DATA_HANDLE hwInstData, EAS_FILE_HANDLE fileHandle, EAS_U32 *pData);
60 static void SMF_UpdateTime (S_SMF_DATA *pSMFData, EAS_U32 ticks);
219 EAS_RESULT SMF_Time (S_EAS_DATA *pEASData, EAS_VOID_PTR pInstData, EAS_U32 *pTime)
276 EAS_U32 ticks;
277 EAS_U32 temp;
483 EAS_U32 ticks;
623 EAS_U32 i;
624 EAS_U32 bit = (EAS_U32) value;
639 EAS_U32 bit = (EAS_U32) value
    [all...]
eas_mdls.c 230 EAS_U32 loopStart;
231 EAS_U32 loopLength;
232 EAS_U32 sampleRate;
245 EAS_U32 instCount;
246 EAS_U32 regionCount;
247 EAS_U32 artCount;
248 EAS_U32 waveCount;
249 EAS_U32 wavePoolSize;
250 EAS_U32 wavePoolOffset;
401 static const EAS_U32 outputSampleRate = _OUTPUT_SAMPLE_RATE
    [all...]
eas_pcm.c 91 static const EAS_U32 srcConvRate[][2] =
102 static EAS_U32 CalcBaseFreq (EAS_U32 sampleRate);
103 #define SRC_CONV_RATE_ENTRIES (sizeof(srcConvRate)/sizeof(EAS_U32)/2)
374 pState->basefreq = (SRC_RATE_MULTIPLER * (EAS_U32) pParams->sampleRate) >> 15;
605 EAS_U32 getDecayScale(EAS_U32 index)
607 EAS_U32 utemp;
666 EAS_U32 getAttackIncrement(EAS_U32 index
    [all...]
jet.c 59 EAS_PUBLIC void JET_ParseEvent (EAS_U32 event, S_JET_EVENT *pEvent)
75 static void JET_DumpEvent (const char *procName, EAS_U32 event)
103 EAS_INLINE void JET_WriteQueue (EAS_U32 *pEventQueue, EAS_U8 *pWriteIndex, EAS_U8 readIndex, EAS_U8 queueSize, EAS_U32 event)
126 EAS_INLINE EAS_BOOL JET_ReadQueue (EAS_U32 *pEventQueue, EAS_U8 *pReadIndex, EAS_U8 writeIndex, EAS_U8 queueSize, EAS_U32 *pEvent)
260 EAS_U32 infoType;
261 EAS_U32 temp;
326 EAS_U32 chunkType;
576 EAS_PUBLIC EAS_BOOL JET_GetEvent (EAS_DATA_HANDLE easHandle, EAS_U32 *pEventRaw, S_JET_EVENT *pEvent
    [all...]
  /external/sonivox/arm-wt-22k/jetcreator_lib_src/darwin-x86/
eastestv37.c     [all...]
wt_44khz.c     [all...]
  /frameworks/av/media/libmedia/include/media/
JetPlayer.h 56 EAS_U32 muteFlags, EAS_U8 userID);
57 int setMuteFlags(EAS_U32 muteFlags, bool sync);
  /external/sonivox/arm-wt-22k/misc/
eas_host.c 161 return malloc((EAS_U32)size);
477 *((EAS_U32*) p) = ((EAS_U32) c[0] << 24) | ((EAS_U32) c[1] << 16) | ((EAS_U32) c[2] << 8) | c[3];
479 *((EAS_U32*) p) = ((EAS_U32) c[3] << 24) | ((EAS_U32) c[2] << 16) | ((EAS_U32) c[1] << 8) | c[0];

Completed in 142 milliseconds

1 2