move PCM_NATIVE_BITDEPTH definiton into global config code

Change-Id: I391bcffca670916c2c88426e2ba2603351326cee
This commit is contained in:
Solomon Peachy 2021-08-07 11:14:15 -04:00
parent eeb0aaf36f
commit 39fff5cb53
3 changed files with 5 additions and 10 deletions

View file

@ -692,4 +692,9 @@ AUDIOHW_SETTING(BALANCE, "%", 0, 1, -100, 100, 0)
AUDIOHW_SETTING(CHANNELS, "", 0, 1, 0, 5, 0)
AUDIOHW_SETTING(STEREO_WIDTH, "%", 0, 5, 0, 250, 100)
/* if not otherwise defined, set to 16 */
#if !defined(PCM_NATIVE_BITDEPTH)
# define PCM_NATIVE_BITDEPTH 16
#endif
#endif /* _AUDIOHW_H_ */