-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #759 from edge-classic/compile-time-sound-formats
Make most sound/music formats compile-time options
- Loading branch information
Showing
25 changed files
with
3,410 additions
and
3,304 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,18 @@ | ||
#if EDGE_WAV_SUPPORT | ||
#define DR_WAV_NO_STDIO | ||
#define DR_WAV_IMPLEMENTATION | ||
#define DR_FLAC_NO_STDIO | ||
#define DR_FLAC_NO_CRC | ||
#define DR_FLAC_IMPLEMENTATION | ||
#include "dr_wav.h" | ||
#endif | ||
|
||
#if EDGE_MP3_SUPPORT | ||
#define DR_MP3_NO_STDIO | ||
#define DR_MP3_IMPLEMENTATION | ||
#include "dr_mp3.h" | ||
#endif | ||
|
||
#if EDGE_FLAC_SUPPORT | ||
#define DR_FLAC_NO_STDIO | ||
#define DR_FLAC_NO_CRC | ||
#define DR_FLAC_IMPLEMENTATION | ||
#include "dr_flac.h" | ||
#include "dr_mp3.h" | ||
#include "dr_wav.h" | ||
#endif |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.