diff options
author | Chris Robinson <[email protected]> | 2019-05-24 12:06:52 -0700 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2019-05-24 12:06:52 -0700 |
commit | 674ca3cf243acfb4bb698fec86ca1b0da839dc9f (patch) | |
tree | 173590d2c57394882decd7d7e7f70bba31aa59a1 /OpenAL32/Include | |
parent | 1f45cc051ad0aeac0033fd1c7e53c7834089021a (diff) |
Move a couple table definitions to where they're used
Diffstat (limited to 'OpenAL32/Include')
-rw-r--r-- | OpenAL32/Include/sample_cvt.h | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/OpenAL32/Include/sample_cvt.h b/OpenAL32/Include/sample_cvt.h index a3b53d44..4d742f1c 100644 --- a/OpenAL32/Include/sample_cvt.h +++ b/OpenAL32/Include/sample_cvt.h @@ -4,20 +4,10 @@ #include "AL/al.h" #include "alBuffer.h" -#ifdef __cplusplus -extern "C" { -#endif - -extern const ALshort muLawDecompressionTable[256]; -extern const ALshort aLawDecompressionTable[256]; void Convert_ALshort_ALima4(ALshort *dst, const ALubyte *src, ALsizei numchans, ALsizei len, ALsizei align); void Convert_ALshort_ALmsadpcm(ALshort *dst, const ALubyte *src, ALsizei numchans, ALsizei len, ALsizei align); -#ifdef __cplusplus -} // extern "C" -#endif - #endif /* SAMPLE_CVT_H */ |