Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
M
miniaudio
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Locked Files
Issues
0
Issues
0
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Security & Compliance
Security & Compliance
Dependency List
License Compliance
Packages
Packages
List
Container Registry
Analytics
Analytics
CI / CD
Code Review
Insights
Issues
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
MyCard
miniaudio
Commits
ac62b0a0
Commit
ac62b0a0
authored
Aug 16, 2020
by
Pedro K Custodio
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Include dr_wav if only one of MA_NO_DECODING or MA_NO_ENCODING is defined.
parent
48735840
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
miniaudio.h
miniaudio.h
+2
-2
No files found.
miniaudio.h
View file @
ac62b0a0
...
...
@@ -42536,7 +42536,7 @@ MA_API ma_result ma_default_vfs_init(ma_default_vfs* pVFS, const ma_allocation_c
Decoding and Encoding Headers. These are auto-generated from a tool.
**************************************************************************************************************************************************************/
#if !defined(MA_NO_WAV) &&
!defined(MA_NO_DECODING) && !defined(MA_NO_ENCODING
)
#if !defined(MA_NO_WAV) &&
(!defined(MA_NO_DECODING) || !defined(MA_NO_ENCODING)
)
/* dr_wav_h begin */
#ifndef dr_wav_h
#define dr_wav_h
...
...
@@ -47064,7 +47064,7 @@ code below please report the bug to the respective repository for the relevant p
***************************************************************************************************************************************************************
**************************************************************************************************************************************************************/
#if !defined(MA_NO_WAV) &&
!defined(MA_NO_DECODING) && !defined(MA_NO_ENCODING
)
#if !defined(MA_NO_WAV) &&
(!defined(MA_NO_DECODING) || !defined(MA_NO_ENCODING)
)
#if !defined(DR_WAV_IMPLEMENTATION) && !defined(DRWAV_IMPLEMENTATION) /* For backwards compatibility. Will be removed in version 0.11 for cleanliness. */
/* dr_wav_c begin */
#ifndef dr_wav_c
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment