| /xr/scenecore/scenecore/src/main/java/androidx/xr/scenecore/ |
| D | SoundFieldAttributes.kt | 21 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()
|
| D | SpatialAudioTrack.kt | 77 ): SoundFieldAttributes? { in getSoundFieldAttributes() 153 attributes: SoundFieldAttributes, in setSoundFieldAttributes()
|
| D | SpatialMediaPlayer.kt | 66 attributes: SoundFieldAttributes, in setSoundFieldAttributes()
|
| D | SpatialSoundPool.kt | 85 attributes: SoundFieldAttributes, in play()
|
| /xr/scenecore/scenecore/src/main/java/androidx/xr/scenecore/impl/ |
| D | AudioTrackExtensionsWrapperImpl.java | 26 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()
|
| D | MediaUtils.java | 21 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()
|
| D | MediaPlayerExtensionsWrapperImpl.java | 24 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()
|
| D | SoundPoolExtensionsWrapperImpl.java | 22 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/ |
| D | SoundFieldAttributesTest.kt | 31 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()
|
| D | SpatialMediaPlayerTest.kt | 27 import androidx.xr.runtime.internal.SoundFieldAttributes as RtSoundFieldAttributes 96 SoundFieldAttributes(SpatializerConstants.AMBISONICS_ORDER_THIRD_ORDER) in setWithSoundField_callsRuntimeMediaPlayerSetSoundField()
|
| D | SpatialAudioTrackTest.kt | 27 import androidx.xr.runtime.internal.SoundFieldAttributes as RtSoundFieldAttributes 143 SoundFieldAttributes(SpatializerConstants.AMBISONICS_ORDER_FIRST_ORDER) in setWithSoundField_callsRuntimeAudioTrackBuilderSetSoundField()
|
| D | SpatialSoundPoolTest.kt | 125 val soundFieldAttributes = SoundFieldAttributes(AMBISONICS_ORDER_FIRST_ORDER) in playWithSoundField_callsRuntimeSoundPoolPlaySoundField()
|
| /xr/runtime/runtime-testing/src/main/kotlin/androidx/xr/runtime/testing/ |
| D | FakeAudioTrackExtensionsWrapper.kt | 23 import androidx.xr.runtime.internal.SoundFieldAttributes 32 override fun getSoundFieldAttributes(track: AudioTrack): SoundFieldAttributes? = null in getPointSourceParams() 47 attributes: SoundFieldAttributes,
|
| D | FakeMediaPlayerExtensionsWrapper.kt | 23 import androidx.xr.runtime.internal.SoundFieldAttributes 33 attributes: SoundFieldAttributes, in setSoundFieldAttributes()
|
| D | FakeSoundPoolExtensionsWrapper.kt | 22 import androidx.xr.runtime.internal.SoundFieldAttributes 43 attributes: SoundFieldAttributes,
|
| /xr/scenecore/scenecore/src/test/java/androidx/xr/scenecore/impl/ |
| D | AudioTrackExtensionsWrapperImplTest.java | 28 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()
|
| D | MediaUtilsTest.java | 26 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()
|
| D | MediaPlayerExtensionsWrapperImplTest.java | 28 import androidx.xr.runtime.internal.SoundFieldAttributes; 83 SoundFieldAttributes expectedRtAttr = in setSoundFieldAttr_callsExtensionsSetSoundFieldAttr() 84 new SoundFieldAttributes(SpatializerConstants.AMBISONICS_ORDER_THIRD_ORDER); in setSoundFieldAttr_callsExtensionsSetSoundFieldAttr()
|
| D | SoundPoolExtensionsWrapperImplTest.java | 27 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/ |
| D | AudioTrackExtensionsWrapper.kt | 39 public fun getSoundFieldAttributes(track: AudioTrack): SoundFieldAttributes? 83 attributes: SoundFieldAttributes,
|
| D | SoundFieldAttributes.kt | 23 public class SoundFieldAttributes( class
|
| D | MediaPlayerExtensionsWrapper.kt | 39 public fun setSoundFieldAttributes(mediaPlayer: MediaPlayer, attributes: SoundFieldAttributes)
|
| D | SoundPoolExtensionsWrapper.kt | 62 attributes: SoundFieldAttributes,
|
| /xr/scenecore/scenecore/api/ |
| D | restricted_current.txt | 626 …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/ |
| D | restricted_current.txt | 59 …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,…
|