q6audio_common.h 1.0 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. /* Copyright (c) 2012-2014, 2017 The Linux Foundation. All rights reserved.
  2. *
  3. * This program is free software; you can redistribute it and/or modify
  4. * it under the terms of the GNU General Public License version 2 and
  5. * only version 2 as published by the Free Software Foundation.
  6. *
  7. * This program is distributed in the hope that it will be useful,
  8. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  9. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  10. * GNU General Public License for more details.
  11. *
  12. */
  13. /* For Decoders */
  14. #ifndef __Q6_AUDIO_COMMON_H__
  15. #define __Q6_AUDIO_COMMON_H__
  16. #include <dsp/apr_audio-v2.h>
  17. #include <dsp/q6asm-v2.h>
  18. void q6_audio_cb(uint32_t opcode, uint32_t token,
  19. uint32_t *payload, void *priv);
  20. void audio_aio_cb(uint32_t opcode, uint32_t token,
  21. uint32_t *payload, void *audio);
  22. /* For Encoders */
  23. void q6asm_in_cb(uint32_t opcode, uint32_t token,
  24. uint32_t *payload, void *priv);
  25. void audio_in_get_dsp_frames(void *audio,
  26. uint32_t token, uint32_t *payload);
  27. #endif /*__Q6_AUDIO_COMMON_H__*/