Home
last modified time | relevance | path

Searched refs:SoundFieldAttributes (Results 1 – 25 of 26) sorted by relevance

12

/xr/scenecore/scenecore/src/main/java/androidx/xr/scenecore/
DSoundFieldAttributes.kt21 import androidx.xr.runtime.internal.SoundFieldAttributes as RtSoundFieldAttributes
26 public class SoundFieldAttributes(@SpatializerConstants.AmbisonicsOrder public val order: Int) { class
53 internal fun RtSoundFieldAttributes.toSoundFieldAttributes(): SoundFieldAttributes { in toSoundFieldAttributes()
54 return SoundFieldAttributes(this.ambisonicsOrder.ambisonicsOrderToJxr()) in toSoundFieldAttributes()
DSpatialAudioTrack.kt77 ): SoundFieldAttributes? { in getSoundFieldAttributes()
153 attributes: SoundFieldAttributes, in setSoundFieldAttributes()
DSpatialMediaPlayer.kt66 attributes: SoundFieldAttributes, in setSoundFieldAttributes()
DSpatialSoundPool.kt85 attributes: SoundFieldAttributes, in play()
/xr/scenecore/scenecore/src/main/java/androidx/xr/scenecore/impl/
DAudioTrackExtensionsWrapperImpl.java26 import androidx.xr.runtime.internal.SoundFieldAttributes;
62 public SoundFieldAttributes getSoundFieldAttributes(@NonNull AudioTrack audioTrack) { in getSoundFieldAttributes()
63 com.android.extensions.xr.media.SoundFieldAttributes extAttributes = in getSoundFieldAttributes()
70 return new SoundFieldAttributes(extAttributes.getAmbisonicsOrder()); in getSoundFieldAttributes()
100 @NonNull AudioTrack.Builder builder, @NonNull SoundFieldAttributes attributes) { in setSoundFieldAttributes()
101 com.android.extensions.xr.media.SoundFieldAttributes extAttributes = in setSoundFieldAttributes()
DMediaUtils.java21 import androidx.xr.runtime.internal.SoundFieldAttributes;
42 static com.android.extensions.xr.media.SoundFieldAttributes
43 convertSoundFieldAttributesToExtensions(SoundFieldAttributes attributes) { in convertSoundFieldAttributesToExtensions()
45 return new com.android.extensions.xr.media.SoundFieldAttributes.Builder() in convertSoundFieldAttributesToExtensions()
DMediaPlayerExtensionsWrapperImpl.java24 import androidx.xr.runtime.internal.SoundFieldAttributes;
48 @NonNull MediaPlayer mediaPlayer, @NonNull SoundFieldAttributes attributes) { in setSoundFieldAttributes()
49 com.android.extensions.xr.media.SoundFieldAttributes extAttributes = in setSoundFieldAttributes()
DSoundPoolExtensionsWrapperImpl.java22 import androidx.xr.runtime.internal.SoundFieldAttributes;
55 SoundFieldAttributes params, in play()
60 com.android.extensions.xr.media.SoundFieldAttributes extAttributes = in play()
/xr/scenecore/scenecore/src/test/java/androidx/xr/scenecore/
DSoundFieldAttributesTest.kt31 SoundFieldAttributes(SpatializerConstants.AMBISONICS_ORDER_FIRST_ORDER) in init_createsCorrectRuntimeAmbisonicsIntDef()
37 SoundFieldAttributes(SpatializerConstants.AMBISONICS_ORDER_SECOND_ORDER) in init_createsCorrectRuntimeAmbisonicsIntDef()
43 SoundFieldAttributes(SpatializerConstants.AMBISONICS_ORDER_THIRD_ORDER) in init_createsCorrectRuntimeAmbisonicsIntDef()
DSpatialMediaPlayerTest.kt27 import androidx.xr.runtime.internal.SoundFieldAttributes as RtSoundFieldAttributes
96 SoundFieldAttributes(SpatializerConstants.AMBISONICS_ORDER_THIRD_ORDER) in setWithSoundField_callsRuntimeMediaPlayerSetSoundField()
DSpatialAudioTrackTest.kt27 import androidx.xr.runtime.internal.SoundFieldAttributes as RtSoundFieldAttributes
143 SoundFieldAttributes(SpatializerConstants.AMBISONICS_ORDER_FIRST_ORDER) in setWithSoundField_callsRuntimeAudioTrackBuilderSetSoundField()
DSpatialSoundPoolTest.kt125 val soundFieldAttributes = SoundFieldAttributes(AMBISONICS_ORDER_FIRST_ORDER) in playWithSoundField_callsRuntimeSoundPoolPlaySoundField()
/xr/runtime/runtime-testing/src/main/kotlin/androidx/xr/runtime/testing/
DFakeAudioTrackExtensionsWrapper.kt23 import androidx.xr.runtime.internal.SoundFieldAttributes
32 override fun getSoundFieldAttributes(track: AudioTrack): SoundFieldAttributes? = null in getPointSourceParams()
47 attributes: SoundFieldAttributes,
DFakeMediaPlayerExtensionsWrapper.kt23 import androidx.xr.runtime.internal.SoundFieldAttributes
33 attributes: SoundFieldAttributes, in setSoundFieldAttributes()
DFakeSoundPoolExtensionsWrapper.kt22 import androidx.xr.runtime.internal.SoundFieldAttributes
43 attributes: SoundFieldAttributes,
/xr/scenecore/scenecore/src/test/java/androidx/xr/scenecore/impl/
DAudioTrackExtensionsWrapperImplTest.java28 import androidx.xr.runtime.internal.SoundFieldAttributes;
109 SoundFieldAttributes expectedRtAttr = in setSoundFieldAttr_callsExtensionsSetSoundFieldAttr()
110 new SoundFieldAttributes(SpatializerConstants.AMBISONICS_ORDER_THIRD_ORDER); in setSoundFieldAttr_callsExtensionsSetSoundFieldAttr()
169 new com.android.extensions.xr.media.SoundFieldAttributes.Builder() in getSoundFieldAttributes_callsExtensionsGetSoundFieldAttributes()
174 SoundFieldAttributes expectedRtAttr = in getSoundFieldAttributes_callsExtensionsGetSoundFieldAttributes()
175 new SoundFieldAttributes(SpatializerConstants.AMBISONICS_ORDER_THIRD_ORDER); in getSoundFieldAttributes_callsExtensionsGetSoundFieldAttributes()
179 SoundFieldAttributes actual = wrapper.getSoundFieldAttributes(track); in getSoundFieldAttributes_callsExtensionsGetSoundFieldAttributes()
191 SoundFieldAttributes actual = wrapper.getSoundFieldAttributes(track); in getSoundFieldAttributes_returnsNullIfNotInExtensions()
DMediaUtilsTest.java26 import androidx.xr.runtime.internal.SoundFieldAttributes;
58 SoundFieldAttributes rtAttributes = in convertSoundFieldAttributes_returnsExtensionsAttributes()
59 new SoundFieldAttributes(SpatializerConstants.AMBISONICS_ORDER_THIRD_ORDER); in convertSoundFieldAttributes_returnsExtensionsAttributes()
61 com.android.extensions.xr.media.SoundFieldAttributes result = in convertSoundFieldAttributes_returnsExtensionsAttributes()
DMediaPlayerExtensionsWrapperImplTest.java28 import androidx.xr.runtime.internal.SoundFieldAttributes;
83 SoundFieldAttributes expectedRtAttr = in setSoundFieldAttr_callsExtensionsSetSoundFieldAttr()
84 new SoundFieldAttributes(SpatializerConstants.AMBISONICS_ORDER_THIRD_ORDER); in setSoundFieldAttr_callsExtensionsSetSoundFieldAttr()
DSoundPoolExtensionsWrapperImplTest.java27 import androidx.xr.runtime.internal.SoundFieldAttributes;
100 SoundFieldAttributes attributes = in playWithSoundField_callsExtensionsPlayWithSoundField()
101 new SoundFieldAttributes(SpatializerConstants.AMBISONICS_ORDER_THIRD_ORDER); in playWithSoundField_callsExtensionsPlayWithSoundField()
/xr/runtime/runtime/src/main/kotlin/androidx/xr/runtime/internal/
DAudioTrackExtensionsWrapper.kt39 public fun getSoundFieldAttributes(track: AudioTrack): SoundFieldAttributes?
83 attributes: SoundFieldAttributes,
DSoundFieldAttributes.kt23 public class SoundFieldAttributes( class
DMediaPlayerExtensionsWrapper.kt39 public fun setSoundFieldAttributes(mediaPlayer: MediaPlayer, attributes: SoundFieldAttributes)
DSoundPoolExtensionsWrapper.kt62 attributes: SoundFieldAttributes,
/xr/scenecore/scenecore/api/
Drestricted_current.txt626 …ndroidx.annotation.RestrictTo.Scope.LIBRARY_GROUP_PREFIX) public final class SoundFieldAttributes {
627 ctor public SoundFieldAttributes(int order);
630 field public static final String TAG = "SoundFieldAttributes";
646 …method public static androidx.xr.scenecore.SoundFieldAttributes? getSoundFieldAttributes(androidx.…
654 …method public androidx.xr.scenecore.SoundFieldAttributes? getSoundFieldAttributes(androidx.xr.runt…
661 …, android.media.AudioTrack.Builder builder, androidx.xr.scenecore.SoundFieldAttributes attributes);
667 …, android.media.AudioTrack.Builder builder, androidx.xr.scenecore.SoundFieldAttributes attributes);
764 …ion, android.media.MediaPlayer mediaPlayer, androidx.xr.scenecore.SoundFieldAttributes attributes);
770 …ion, android.media.MediaPlayer mediaPlayer, androidx.xr.scenecore.SoundFieldAttributes attributes);
776 …oid.media.SoundPool soundPool, int soundID, androidx.xr.scenecore.SoundFieldAttributes attributes,…
[all …]
/xr/runtime/runtime-testing/api/
Drestricted_current.txt59 …method public androidx.xr.runtime.internal.SoundFieldAttributes? getSoundFieldAttributes(android.m…
63 …id.media.AudioTrack.Builder builder, androidx.xr.runtime.internal.SoundFieldAttributes attributes);
231 …droid.media.MediaPlayer mediaPlayer, androidx.xr.runtime.internal.SoundFieldAttributes attributes);
424 …ia.SoundPool soundPool, int soundId, androidx.xr.runtime.internal.SoundFieldAttributes attributes,…

12