2024-11-09 14:45:04 +01:00
|
|
|
#ifndef AUDIOFILE_H
|
|
|
|
#define AUDIOFILE_H
|
|
|
|
|
|
|
|
#include <sndfile.h>
|
2024-11-11 15:29:44 +01:00
|
|
|
#include <stdlib.h>
|
2024-11-09 14:45:04 +01:00
|
|
|
|
|
|
|
SNDFILE *audiofile_read(const char *path, SF_INFO *sfinfo);
|
|
|
|
SNDFILE *audiofile_open_for_write(const char *path, SF_INFO *og_info);
|
2024-11-11 15:29:44 +01:00
|
|
|
int audiofile_copy_metadata(SNDFILE *source, SNDFILE *target);
|
2024-11-09 14:45:04 +01:00
|
|
|
|
|
|
|
#endif
|