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 committed by Christoph Oelckers
parent f6facdaa68
commit 6928b8609d

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 */