| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139 | 
							- # Kconfig - Actions media player
 
- #
 
- # Copyright (c) 2016 Actions Corporation
 
- #
 
- # SPDX-License-Identifier: Apache-2.0
 
- #
 
- menuconfig MEDIA
 
- 	bool
 
- 	prompt "media"
 
- 	imply MEDIA_PLAYER
 
- 	default n
 
- 	help
 
- 	This option enables actions media
 
- config MEDIA_PLAYER
 
- 	bool
 
- 	prompt "media player Support"
 
- 	depends on MEDIA
 
- 	select MEDIA_SERVICE
 
- 	select STREAM
 
- 	select MEDIA_EFFECT
 
- 	select SECTION_OVERLAY
 
- 	default n
 
- 	help
 
- 	This option enables actions media player
 
- config MEDIA_SERVICE
 
- 	bool
 
- 	prompt "Media Service Support"
 
- 	select THREAD_TIMER
 
- 	select AUDIO_SYSTEM
 
- 	select ACTIONS_LIBRARY
 
- 	select ACTIONS_ALGORITHMS_LIBRARY
 
- 	select ACTS_EBERGY_STATISTICS
 
- 	select DSP
 
- 	select DSP_HAL
 
- 	select ACTIONS_DECODER
 
- 	select ACTIONS_ENCODER
 
- 	select AUDIO
 
- 	default n
 
- 	help
 
- 	This option enables actions Media service.
 
- config MEDIASRV_PRIORITY
 
-     int
 
-     prompt "Media Service Thread Priority"
 
-     default 1
 
-     depends on MEDIA_SERVICE
 
-     help
 
-     This option set audio thread priority  
 
- config MEDIASRV_STACKSIZE
 
-     int
 
-     prompt "Media Service Thread Stack Size"
 
-     default 2048
 
-     depends on MEDIA_SERVICE
 
-     help
 
-     This option set stack size for audio service thread	 
 
- config MEDIA_EFFECT
 
- 	bool
 
- 	prompt "media effect Support"
 
- 	depends on MEDIA_PLAYER
 
- 	default n
 
- 	help
 
- 	This option enables actions media effect
 
- config MEDIA_EFFECT_OUTMODE
 
- 	int
 
- 	prompt "media effect output mode Support"
 
- 	depends on MEDIA_PLAYER
 
- 	default 0
 
- 	help
 
- 	This option enables actions media output mode 
 
- config MUSIC_EFFECT
 
- 	bool
 
- 	prompt "music effect Support"
 
- 	depends on MEDIA_PLAYER
 
- 	select MEDIA_EFFECT
 
- 	select MUSIC_DAE
 
- 	select MUSIC_DAE_FADE
 
- 	default n
 
- 	help
 
- 	This option enables actions music effect
 
- config MUSIC_DRC_EFFECT
 
- 	bool
 
- 	prompt "music drc effect Support"
 
- 	depends on MUSIC_EFFECT
 
- 	select MEDIA_EFFECT
 
- 	default n
 
- 	help
 
- 	This option enables actions music drc effect
 
- config VOICE_EFFECT
 
- 	bool
 
- 	prompt "voice effect Support"
 
- 	depends on MEDIA_EFFECT
 
- 	default n
 
- 	help
 
- 	This option enables actions voice effect
 
- config AEC_TAIL_LENGTH
 
- 	int
 
- 	prompt "AEC tail length config"
 
- 	depends on VOICE_EFFECT
 
- 	default 48
 
- 	help
 
- 	This option set AEC tail length config
 
- config MEDIA_DSP_SLEEP
 
- 	bool
 
- 	prompt "dsp sleep Support"
 
- 	depends on MEDIA
 
- 	default y
 
- 	help
 
- 	This option enables dsp sleep
 
- config MEDIA_DSP_SLEEP_MODE
 
- 	int
 
- 	prompt "dsp sleep mode, 0: light sleep, 1: deep sleep"
 
- 	depends on MEDIA
 
- 	default 1
 
- 	help
 
- 	This option dsp sleep mode, 0: light sleep, 1: deep sleep
 
- config VIDEO_PLAYER
 
- 	bool
 
- 	prompt "video player Support"
 
- 	default n
 
- 	help
 
- 	This option enables actions video player
 
- 	
 
- rsource "libal/Kconfig"
 
 
  |