
Kernel audio drivers can be categorised into below folders. asoc - ALSA based drivers, asoc/codecs - codec drivers, ipc - APR IPC communication drivers, dsp - DSP low level drivers/Audio ION/ADSP Loader, dsp/codecs - Native encoders and decoders, soc - SoC based drivers(pinctrl/regmap/soundwire) Restructure drivers to above folder format. Include directories also follow above format. Change-Id: I8fa0857baaacd47db126fb5c1f1f5ed7e886dbc0 Signed-off-by: Laxminath Kasam <lkasam@codeaurora.org>
56 righe
1.7 KiB
C
56 righe
1.7 KiB
C
/*
|
|
* Copyright (c) 2013-2016, The Linux Foundation. All rights reserved.
|
|
*
|
|
* This program is free software; you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License version 2 and
|
|
* only version 2 as published by the Free Software Foundation.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*/
|
|
|
|
#ifndef _MSM_AUDIO_EFFECTS_H
|
|
#define _MSM_AUDIO_EFFECTS_H
|
|
|
|
#include <sound/audio_effects.h>
|
|
|
|
#define MAX_PP_PARAMS_SZ 128
|
|
|
|
bool msm_audio_effects_is_effmodule_supp_in_top(int effect_module,
|
|
int topology);
|
|
|
|
int msm_audio_effects_enable_extn(struct audio_client *ac,
|
|
struct msm_nt_eff_all_config *effects,
|
|
bool flag);
|
|
|
|
int msm_audio_effects_reverb_handler(struct audio_client *ac,
|
|
struct reverb_params *reverb,
|
|
long *values);
|
|
|
|
int msm_audio_effects_bass_boost_handler(struct audio_client *ac,
|
|
struct bass_boost_params *bass_boost,
|
|
long *values);
|
|
|
|
int msm_audio_effects_pbe_handler(struct audio_client *ac,
|
|
struct pbe_params *pbe,
|
|
long *values);
|
|
|
|
int msm_audio_effects_virtualizer_handler(struct audio_client *ac,
|
|
struct virtualizer_params *virtualizer,
|
|
long *values);
|
|
|
|
int msm_audio_effects_popless_eq_handler(struct audio_client *ac,
|
|
struct eq_params *eq,
|
|
long *values);
|
|
|
|
int msm_audio_effects_volume_handler(struct audio_client *ac,
|
|
struct soft_volume_params *vol,
|
|
long *values);
|
|
|
|
int msm_audio_effects_volume_handler_v2(struct audio_client *ac,
|
|
struct soft_volume_params *vol,
|
|
long *values, int instance);
|
|
#endif /*_MSM_AUDIO_EFFECTS_H*/
|