[Video] More tweaks to AVAudioSession options (#4910)
This commit is contained in:
parent
dd0d50a6f0
commit
5bfe5aa503
8 changed files with 74 additions and 10 deletions
|
|
@ -1,4 +1,5 @@
|
|||
import {NotImplementedError} from '../NotImplemented'
|
||||
import {AudioCategory} from './types'
|
||||
|
||||
export function getIsReducedMotionEnabled(): boolean {
|
||||
if (typeof window === 'undefined') {
|
||||
|
|
@ -10,3 +11,7 @@ export function getIsReducedMotionEnabled(): boolean {
|
|||
export function setAudioMixWithOthers(mixWithOthers: boolean): void {
|
||||
throw new NotImplementedError({mixWithOthers})
|
||||
}
|
||||
|
||||
export function setAudioCategory(audioCategory: AudioCategory): void {
|
||||
throw new NotImplementedError({audioCategory})
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue