diff options
author | XANTRONIX Development | 2022-02-01 14:03:40 -0500 |
---|---|---|
committer | XANTRONIX Development | 2022-02-01 14:03:40 -0500 |
commit | f502d1a5193760c3e16f170af2e07f0a0ba94784 (patch) | |
tree | e00c7e4399ce88e530baf4397d201810a9a8fc68 /include | |
parent | d512e7c6b2699cfe0c088b36fd8d8c390b2a234f (diff) | |
download | xas-f502d1a5193760c3e16f170af2e07f0a0ba94784.tar.gz xas-f502d1a5193760c3e16f170af2e07f0a0ba94784.tar.bz2 xas-f502d1a5193760c3e16f170af2e07f0a0ba94784.zip |
Rename src/riff.c methods for sake of consistency
Diffstat (limited to 'include')
-rw-r--r-- | include/xas/riff.h | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/include/xas/riff.h b/include/xas/riff.h index 823a9ae..220eea2 100644 --- a/include/xas/riff.h +++ b/include/xas/riff.h @@ -49,13 +49,12 @@ typedef struct _xas_riff xas_riff; #pragma pack(pop) -xas_audio_stream *xas_riff_file_new(const char *path, +xas_audio_stream *xas_riff_new_file(const char *path, size_t sample_size, size_t sample_rate, size_t channels, int flags); -xas_audio_stream *xas_riff_file_open(const char *path, - int flags); +xas_audio_stream *xas_riff_open_file(const char *path, int flags); #endif /* _XAS_RIFF_H */ |