Home
last modified time | relevance | path

Searched refs:streamFormat (Results 1 – 11 of 11) sorted by relevance

/external/webrtc/modules/audio_device/mac/
Daudio_device_mac.cc1985 AudioStreamBasicDescription streamFormat; in HandleStreamFormatChange() local
1986 UInt32 size = sizeof(streamFormat); in HandleStreamFormatChange()
1988 objectId, &propertyAddress, 0, NULL, &size, &streamFormat)); in HandleStreamFormatChange()
1990 if (streamFormat.mFormatID != kAudioFormatLinearPCM) { in HandleStreamFormatChange()
1992 (const char*)&streamFormat.mFormatID); in HandleStreamFormatChange()
1996 if (streamFormat.mChannelsPerFrame > N_DEVICE_CHANNELS) { in HandleStreamFormatChange()
1998 << streamFormat.mChannelsPerFrame << ")"; in HandleStreamFormatChange()
2002 if (_ptrAudioBuffer && streamFormat.mChannelsPerFrame != _recChannels) { in HandleStreamFormatChange()
2004 << streamFormat.mChannelsPerFrame << ")"; in HandleStreamFormatChange()
2009 RTC_LOG(LS_VERBOSE) << "mSampleRate = " << streamFormat.mSampleRate in HandleStreamFormatChange()
[all …]
Daudio_mixer_manager_mac.cc141 AudioStreamBasicDescription streamFormat; in OpenSpeaker() local
143 memset(&streamFormat, 0, size); in OpenSpeaker()
145 _outputDeviceID, &propertyAddress, 0, NULL, &size, &streamFormat)); in OpenSpeaker()
147 _noOutputChannels = streamFormat.mChannelsPerFrame; in OpenSpeaker()
187 AudioStreamBasicDescription streamFormat; in OpenMicrophone() local
189 memset(&streamFormat, 0, size); in OpenMicrophone()
191 _inputDeviceID, &propertyAddress, 0, NULL, &size, &streamFormat)); in OpenMicrophone()
193 _noInputChannels = streamFormat.mChannelsPerFrame; in OpenMicrophone()
/external/exoplayer/tree_15dc86382f17a24a3e881e52e31a810c1ea44b49/library/core/src/main/java/com/google/android/exoplayer2/text/
DTextRenderer.java87 @Nullable private Format streamFormat; field in TextRenderer
162 streamFormat = formats[0]; in onStreamChanged()
304 streamFormat = null; in onDisabled()
344 decoder = decoderFactory.createDecoder(checkNotNull(streamFormat)); in initDecoder()
397 Log.e(TAG, "Subtitle decoding failed. streamFormat=" + streamFormat, e); in handleDecoderError()
/external/exoplayer/tree_8e57d3715f9092d5ec54ebe2e538f34bfcc34479/library/core/src/main/java/com/google/android/exoplayer2/text/
DTextRenderer.java90 @Nullable private Format streamFormat; field in TextRenderer
164 streamFormat = formats[0]; in onStreamChanged()
306 streamFormat = null; in onDisabled()
346 decoder = decoderFactory.createDecoder(checkNotNull(streamFormat)); in initDecoder()
399 Log.e(TAG, "Subtitle decoding failed. streamFormat=" + streamFormat, e); in handleDecoderError()
/external/sonivox/arm-wt-22k/jetcreator_lib_src/darwin-x86/
DEASLib.c119 AudioStreamBasicDescription streamFormat; variable
491 streamFormat.mSampleRate = sampleRate; in OpenWaveOutDevice()
493 streamFormat.mSampleRate = pConfig->sampleRate; in OpenWaveOutDevice()
495 streamFormat.mFormatID = kAudioFormatLinearPCM; in OpenWaveOutDevice()
496 streamFormat.mFormatFlags = kLinearPCMFormatFlagIsSignedInteger in OpenWaveOutDevice()
501 streamFormat.mBytesPerPacket = 2; in OpenWaveOutDevice()
502 streamFormat.mFramesPerPacket = 1; in OpenWaveOutDevice()
503 streamFormat.mBytesPerFrame = 2; in OpenWaveOutDevice()
504 streamFormat.mChannelsPerFrame = 2; in OpenWaveOutDevice()
505 streamFormat.mBitsPerChannel = 16; in OpenWaveOutDevice()
[all …]
/external/exoplayer/tree_15dc86382f17a24a3e881e52e31a810c1ea44b49/library/core/src/main/java/com/google/android/exoplayer2/video/
DMediaCodecVideoRenderer.java782 for (Format streamFormat : streamFormats) { in getCodecOperatingRateV23()
783 float streamFrameRate = streamFormat.frameRate; in getCodecOperatingRateV23()
1498 for (Format streamFormat : streamFormats) { in getCodecMaxValues()
1499 if (format.colorInfo != null && streamFormat.colorInfo == null) { in getCodecMaxValues()
1502 streamFormat = streamFormat.buildUpon().setColorInfo(format.colorInfo).build(); in getCodecMaxValues()
1504 if (codecInfo.canReuseCodec(format, streamFormat).result != REUSE_RESULT_NO) { in getCodecMaxValues()
1506 (streamFormat.width == Format.NO_VALUE || streamFormat.height == Format.NO_VALUE); in getCodecMaxValues()
1507 maxWidth = max(maxWidth, streamFormat.width); in getCodecMaxValues()
1508 maxHeight = max(maxHeight, streamFormat.height); in getCodecMaxValues()
1509 maxInputSize = max(maxInputSize, getMaxInputSize(codecInfo, streamFormat)); in getCodecMaxValues()
/external/exoplayer/tree_8e57d3715f9092d5ec54ebe2e538f34bfcc34479/library/core/src/main/java/com/google/android/exoplayer2/video/
DMediaCodecVideoRenderer.java835 for (Format streamFormat : streamFormats) { in getCodecOperatingRateV23()
836 float streamFrameRate = streamFormat.frameRate; in getCodecOperatingRateV23()
1554 for (Format streamFormat : streamFormats) { in getCodecMaxValues()
1555 if (format.colorInfo != null && streamFormat.colorInfo == null) { in getCodecMaxValues()
1558 streamFormat = streamFormat.buildUpon().setColorInfo(format.colorInfo).build(); in getCodecMaxValues()
1560 if (codecInfo.canReuseCodec(format, streamFormat).result != REUSE_RESULT_NO) { in getCodecMaxValues()
1562 (streamFormat.width == Format.NO_VALUE || streamFormat.height == Format.NO_VALUE); in getCodecMaxValues()
1563 maxWidth = max(maxWidth, streamFormat.width); in getCodecMaxValues()
1564 maxHeight = max(maxHeight, streamFormat.height); in getCodecMaxValues()
1565 maxInputSize = max(maxInputSize, getMaxInputSize(codecInfo, streamFormat)); in getCodecMaxValues()
/external/exoplayer/tree_8e57d3715f9092d5ec54ebe2e538f34bfcc34479/library/core/src/main/java/com/google/android/exoplayer2/audio/
DMediaCodecAudioRenderer.java462 for (Format streamFormat : streamFormats) { in getCodecOperatingRateV23()
463 int streamSampleRate = streamFormat.sampleRate; in getCodecOperatingRateV23()
785 for (Format streamFormat : streamFormats) { in getCodecMaxInputSize()
786 if (codecInfo.canReuseCodec(format, streamFormat).result != REUSE_RESULT_NO) { in getCodecMaxInputSize()
787 maxInputSize = max(maxInputSize, getCodecMaxInputSize(codecInfo, streamFormat)); in getCodecMaxInputSize()
/external/exoplayer/tree_15dc86382f17a24a3e881e52e31a810c1ea44b49/library/core/src/main/java/com/google/android/exoplayer2/audio/
DMediaCodecAudioRenderer.java461 for (Format streamFormat : streamFormats) { in getCodecOperatingRateV23()
462 int streamSampleRate = streamFormat.sampleRate; in getCodecOperatingRateV23()
781 for (Format streamFormat : streamFormats) { in getCodecMaxInputSize()
782 if (codecInfo.canReuseCodec(format, streamFormat).result != REUSE_RESULT_NO) { in getCodecMaxInputSize()
783 maxInputSize = max(maxInputSize, getCodecMaxInputSize(codecInfo, streamFormat)); in getCodecMaxInputSize()
/external/angle/src/libANGLE/renderer/metal/
DVertexArrayMtl.mm599 const mtl::VertexFormat &streamFormat =
609 mCurrentArrayBufferFormats[attribIndex] = &streamFormat;
623 ASSERT(streamFormat.vertexLoadFunction);
624 streamFormat.vertexLoadFunction(src, binding.getStride(), elementCount,
637 streamFormat.actualAngleFormat().pixelBytes);
640 streamFormat.vertexLoadFunction,
/external/perfetto/ui/src/chrome_extension/
Dchrome_tracing_controller.ts262 streamFormat: 'proto',