From c801d7da7935731dd71fde695eb8ee8419c71d03 Mon Sep 17 00:00:00 2001 From: XANTRONIX Development Date: Tue, 1 Feb 2022 13:49:22 -0500 Subject: Implement xas_riff_file_open() Implement xas_riff_file_open() to open files for reading; implement a RIFF header reader to parse and validate a header, and to extract PCM sample metadata requisite to process a stream --- include/xas/riff.h | 3 +++ 1 file changed, 3 insertions(+) (limited to 'include') diff --git a/include/xas/riff.h b/include/xas/riff.h index 6e097c3..823a9ae 100644 --- a/include/xas/riff.h +++ b/include/xas/riff.h @@ -55,4 +55,7 @@ xas_audio_stream *xas_riff_file_new(const char *path, size_t channels, int flags); +xas_audio_stream *xas_riff_file_open(const char *path, + int flags); + #endif /* _XAS_RIFF_H */ -- cgit v1.2.3