Home
last modified time | relevance | path

Searched refs:SLuint32 (Results 1 - 12 of 12) sorted by relevance

/third_party/openSLES/api/1.1/
H A DOpenSLES.h72 typedef sl_uint32_t SLuint32; /* 32 bit unsigned integer */ typedef
77 typedef SLuint32 SLboolean;
82 typedef SLuint32 SLmillisecond;
83 typedef SLuint32 SLmilliHertz;
87 typedef SLuint32 SLmicrosecond;
88 typedef SLuint32 SLresult;
98 SLuint32 time_low;
112 #define SL_OBJECTID_ENGINE ((SLuint32) 0x00001001)
113 #define SL_OBJECTID_LEDDEVICE ((SLuint32) 0x00001002)
114 #define SL_OBJECTID_VIBRADEVICE ((SLuint32)
[all...]
/third_party/openSLES/api/1.0.1/
H A DOpenSLES.h71 typedef sl_uint32_t SLuint32; /* 32 bit unsigned integer */ typedef
73 typedef SLuint32 SLboolean;
79 typedef SLuint32 SLmillisecond;
80 typedef SLuint32 SLmilliHertz;
84 typedef SLuint32 SLmicrosecond;
85 typedef SLuint32 SLresult;
95 SLuint32 time_low;
109 #define SL_OBJECTID_ENGINE ((SLuint32) 0x00001001)
110 #define SL_OBJECTID_LEDDEVICE ((SLuint32) 0x00001002)
111 #define SL_OBJECTID_VIBRADEVICE ((SLuint32)
[all...]
H A DOpenSLES_OpenHarmony.h38 SLuint32 size
44 SLuint32 count;
45 SLuint32 index;
53 SLuint32 size
65 SLuint32* size
/third_party/openSLES/api/1.0/
H A DOpenSLES.h71 typedef sl_uint32_t SLuint32; /* 32 bit unsigned integer */ typedef
73 typedef SLuint32 SLboolean;
79 typedef SLuint32 SLmillisecond;
80 typedef SLuint32 SLmilliHertz;
84 typedef SLuint32 SLmicrosecond;
85 typedef SLuint32 SLresult;
95 SLuint32 time_low;
109 #define SL_OBJECTID_ENGINE ((SLuint32) 0x00001001)
110 #define SL_OBJECTID_LEDDEVICE ((SLuint32) 0x00001002)
111 #define SL_OBJECTID_VIBRADEVICE ((SLuint32)
[all...]
/third_party/skia/third_party/externals/oboe/src/opensles/
H A DAudioInputStreamOpenSLES.cpp29 static SLuint32 OpenSLES_convertInputPreset(InputPreset oboePreset) { in OpenSLES_convertInputPreset()
30 SLuint32 openslPreset = SL_ANDROID_RECORDING_PRESET_NONE; in OpenSLES_convertInputPreset()
61 SLuint32 AudioInputStreamOpenSLES::channelCountToChannelMask(int channelCount) const { in channelCountToChannelMask()
97 SLuint32 bitsPerSample = static_cast<SLuint32>(getBytesPerSample() * kBitsPerByte); in open()
102 static_cast<SLuint32>(kBufferQueueLength)}; // numBuffers in open()
107 static_cast<SLuint32>(mChannelCount), // numChannels in open()
108 static_cast<SLuint32>(mSampleRate * kMillisPerSecond), // milliSamplesPerSec in open()
125 SLuint32 representation = OpenSLES_ConvertFormatToRepresentation(getFormat()); in open()
158 SLuint32 presetValu in open()
[all...]
H A DAudioOutputStreamOpenSLES.cpp31 static SLuint32 OpenSLES_convertOutputUsage(Usage oboeUsage) { in OpenSLES_convertOutputUsage()
32 SLuint32 openslStream = SL_ANDROID_STREAM_MEDIA; in OpenSLES_convertOutputUsage()
81 SLuint32 AudioOutputStreamOpenSLES::channelCountToChannelMask(int channelCount) const { in channelCountToChannelMask()
82 SLuint32 channelMask = 0; in channelCountToChannelMask()
140 SLuint32 bitsPerSample = static_cast<SLuint32>(getBytesPerSample() * kBitsPerByte); in open()
145 static_cast<SLuint32>(kBufferQueueLength)}; // numBuffers in open()
150 static_cast<SLuint32>(mChannelCount), // numChannels in open()
151 static_cast<SLuint32>(mSampleRate * kMillisPerSecond), // milliSamplesPerSec in open()
167 SLuint32 representatio in open()
[all...]
H A DAudioStreamOpenSLES.cpp41 static constexpr SLuint32 kAudioChannelCountMax = 30; // TODO Why 30?
42 static constexpr SLuint32 SL_ANDROID_UNKNOWN_CHANNELMASK = 0; // Matches name used internally.
44 SLuint32 AudioStreamOpenSLES::channelCountToChannelMaskDefault(int channelCount) const { in channelCountToChannelMaskDefault()
49 SLuint32 bitfield = (1 << channelCount) - 1; in channelCountToChannelMaskDefault()
66 SLuint32 AudioStreamOpenSLES::getDefaultByteOrder() { in getDefaultByteOrder()
143 SLuint32 AudioStreamOpenSLES::convertPerformanceMode(PerformanceMode oboeMode) const { in convertPerformanceMode()
144 SLuint32 openslMode = SL_ANDROID_PERFORMANCE_NONE; in convertPerformanceMode()
161 PerformanceMode AudioStreamOpenSLES::convertPerformanceMode(SLuint32 openslMode) const { in convertPerformanceMode()
233 SLuint32 performanceMode = convertPerformanceMode(getPerformanceMode()); in configurePerformanceMode()
248 SLuint32 performanceMod in updateStreamParameters()
[all...]
H A DAudioStreamOpenSLES.h83 SLuint32 channelCountToChannelMaskDefault(int channelCount) const;
88 static SLuint32 getDefaultByteOrder();
100 PerformanceMode convertPerformanceMode(SLuint32 openslMode) const;
101 SLuint32 convertPerformanceMode(PerformanceMode oboeMode) const;
H A DOpenSLESUtilities.h38 SLuint32 representation);
40 SLuint32 OpenSLES_ConvertFormatToRepresentation(AudioFormat format);
H A DAudioInputStreamOpenSLES.h56 SLuint32 channelCountToChannelMask(int chanCount) const;
58 Result setRecordState_l(SLuint32 newState);
H A DOpenSLESUtilities.cpp67 SLDataFormat_PCM format, SLuint32 representation) { in OpenSLES_createExtendedFormat()
80 SLuint32 OpenSLES_ConvertFormatToRepresentation(AudioFormat format) { in OpenSLES_ConvertFormatToRepresentation()
H A DAudioOutputStreamOpenSLES.h57 SLuint32 channelCountToChannelMask(int chanCount) const;
69 Result setPlayState_l(SLuint32 newState);

Completed in 17 milliseconds