2025-10-08 16:05:00 +04:00
|
|
|
/* SPDX-License-Identifier: GPL-2.0-or-later */
|
|
|
|
|
#ifndef HW_AUDIO_MODEL_H
|
|
|
|
|
#define HW_AUDIO_MODEL_H
|
|
|
|
|
|
|
|
|
|
void audio_register_model_with_cb(const char *name, const char *descr,
|
2025-10-13 14:22:45 +04:00
|
|
|
void (*init_audio_model)(const char *audiodev));
|
2025-10-08 16:05:00 +04:00
|
|
|
void audio_register_model(const char *name, const char *descr,
|
2025-10-27 17:44:10 +04:00
|
|
|
const char *typename);
|
2025-10-08 16:05:00 +04:00
|
|
|
|
|
|
|
|
void audio_model_init(void);
|
|
|
|
|
void audio_print_available_models(void);
|
|
|
|
|
void audio_set_model(const char *name, const char *audiodev);
|
|
|
|
|
|
|
|
|
|
#endif
|