Searched defs:formatType (Results 1 - 7 of 7) sorted by last modified time

/frameworks/wilhelm/include/OMXAL/
H A DOpenMAXAL.h333 XAuint32 formatType; member in struct:XADataFormat_MIME_
382 XAuint32 formatType; member in struct:XADataFormat_PCM_
432 XAuint32 formatType; member in struct:XADataFormat_RawImage_
/frameworks/wilhelm/include/SLES/
H A DOpenSLES.h312 /** MIME-type-based data format definition where formatType must be SL_DATAFORMAT_MIME*/
314 SLuint32 formatType; member in struct:SLDataFormat_MIME_
355 /** PCM-type-based data format definition where formatType must be SL_DATAFORMAT_PCM*/
357 SLuint32 formatType; member in struct:SLDataFormat_PCM_
H A DOpenSLES_Android.h47 SLuint32 formatType; member in struct:SLAndroidDataFormat_PCM_EX_
/frameworks/wilhelm/src/android/
H A DAudioRecorder_to_android.cpp172 SLuint32 formatType = *(SLuint32 *)pAudioSnk->pFormat; local
173 if (SL_DATAFORMAT_PCM == formatType) {
/frameworks/wilhelm/src/
H A Ddata.c351 SLuint32 formatType; local
353 pDataFormat->mFormatType = formatType = SL_DATAFORMAT_NULL;
355 formatType = *(SLuint32 *)pFormat;
356 switch (formatType) {
607 SL_LOGE("%s: formatType=%u", name, (unsigned) formatType);
613 if ((SL_RESULT_SUCCESS == result) && (formatType != pDataFormat->mFormatType)) {
614 SL_LOGE("%s: formatType changed from %u to %u", name, formatType,
624 switch (formatType) {
[all...]
/frameworks/wilhelm/src/desktop/
H A DSndFile.c141 SLuint32 formatType = *(SLuint32 *)pAudioSrc->pFormat; local
158 switch (formatType) {
/frameworks/base/core/java/android/bluetooth/
H A DBluetoothGattCharacteristic.java432 * <p>The formatType parameter determines how the characteristic value
433 * is to be interpreted. For example, settting formatType to
438 * @param formatType The format type used to interpret the characteristic
444 public Integer getIntValue(int formatType, int offset) { argument
445 if ((offset + getTypeLen(formatType)) > mValue.length) return null;
447 switch (formatType) {
476 * @param formatType The format type used to interpret the characteristic
482 public Float getFloatValue(int formatType, int offset) { argument
483 if ((offset + getTypeLen(formatType)) > mValue.length) return null;
485 switch (formatType) {
537 setValue(int value, int formatType, int offset) argument
584 setValue(int mantissa, int exponent, int formatType, int offset) argument
629 getTypeLen(int formatType) argument
[all...]

Completed in 236 milliseconds