msm-audio-effects-q6-v2.h 1.2 KB

123456789101112131415161718192021222324252627282930313233343536
  1. /*
  2. * Copyright (c) 2013-2016, The Linux Foundation. All rights reserved.
  3. *
  4. * This program is free software; you can redistribute it and/or modify
  5. * it under the terms of the GNU General Public License version 2 and
  6. * only version 2 as published by the Free Software Foundation.
  7. *
  8. * This program is distributed in the hope that it will be useful,
  9. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  10. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  11. * GNU General Public License for more details.
  12. */
  13. #ifndef _MSM_AUDIO_EFFECTS_H
  14. #define _MSM_AUDIO_EFFECTS_H
  15. #include <sound/audio_effects.h>
  16. #define MAX_PP_PARAMS_SZ 128
  17. int msm_audio_effects_reverb_handler(struct audio_client *ac,
  18. struct reverb_params *reverb,
  19. long *values);
  20. int msm_audio_effects_bass_boost_handler(struct audio_client *ac,
  21. struct bass_boost_params *bass_boost,
  22. long *values);
  23. int msm_audio_effects_virtualizer_handler(struct audio_client *ac,
  24. struct virtualizer_params *virtualizer,
  25. long *values);
  26. int msm_audio_effects_popless_eq_handler(struct audio_client *ac,
  27. struct eq_params *eq,
  28. long *values);
  29. #endif /*_MSM_AUDIO_EFFECTS_H*/