OpenRTX/platform/drivers/audio/file_source.h
Silvano Seva 821b6cb288 audio: apply clang-format to file_source
Signed-off-by: Silvano Seva <silseva@fastwebnet.it>
2026-02-14 15:32:52 +01:00

28 lines
539 B
C

/*
* SPDX-FileCopyrightText: Copyright 2020-2026 OpenRTX Contributors
*
* SPDX-License-Identifier: GPL-3.0-or-later
*/
#ifndef FILE_SOURCE_H
#define FILE_SOURCE_H
#include "interfaces/audio.h"
#ifdef __cplusplus
extern "C" {
#endif
/**
* Driver providing an audio input stream from a file. File format should be
* raw, 16 bit, little endian. The configuration parameter is the file name with
* the full path.
*/
extern const struct audioDriver file_source_audio_driver;
#ifdef __cplusplus
}
#endif
#endif /* STM32_DAC_H */