/* * Copyright (c) 2022 Huawei Device Co., Ltd. * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation; either version 2 * of the License, or (at your option) any later version. * * 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. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */ #ifndef DSP_OPS_H #define DSP_OPS_H #include "audio_host.h" #ifdef __cplusplus #if __cplusplus extern "C" { #endif #endif /* __cplusplus */ int32_t DspDaiDeviceInit(struct AudioCard *card, const struct DaiDevice *device); int32_t DspDeviceInit(const struct DspDevice *device); int32_t DspDeviceReadReg(const struct DspDevice *device, const void *msgs, const uint32_t len); int32_t DspDeviceWriteReg(const struct DspDevice *device, const void *msgs, const uint32_t len); int32_t DspDaiStartup(const struct AudioCard *card, const struct DaiDevice *device); int32_t DspDaiHwParams(const struct AudioCard *card, const struct AudioPcmHwParams *param); int32_t DspDecodeAudioStream(const struct AudioCard *card, const uint8_t *buf, const struct DspDevice *device); int32_t DspEncodeAudioStream(const struct AudioCard *card, const uint8_t *buf, const struct DspDevice *device); int32_t DspEqualizerActive(const struct AudioCard *card, const uint8_t *buf, const struct DspDevice *device); #ifdef __cplusplus #if __cplusplus } #endif #endif /* __cplusplus */ #endif /* DSP_OPS_H */