Fix building with no sndfile support at all

The stub functions still reference SNDFILE, so we still need to include
the bundled header in this case.
This commit is contained in:
James Le Cuirot 2025-03-08 21:53:55 +00:00
parent f6facdaa68
commit a18438562f
No known key found for this signature in database
GPG key ID: 1226415D00DD3137

View file

@ -43,6 +43,8 @@ private:
static sf_count_t file_tell(void *user_data);
};
#else
#include "../thirdparty/sndfile.h"
#endif
#endif /* SNDFILE_DECODER_H */