diff options
author | Chris Robinson <[email protected]> | 2012-06-28 18:49:49 -0700 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2012-06-28 18:49:49 -0700 |
commit | 583dc8dbcaf8ce59678fe287b1e584c2f99b7f3c (patch) | |
tree | f71172e7731bb6711e6a4768196f76aec02e6635 /OpenAL32/alBuffer.c | |
parent | befa4e7528f5ca1f54481bf137706de0239e98eb (diff) |
Don't use all caps for enum value names
Diffstat (limited to 'OpenAL32/alBuffer.c')
-rw-r--r-- | OpenAL32/alBuffer.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/OpenAL32/alBuffer.c b/OpenAL32/alBuffer.c index 3e2fcaa4..77975218 100644 --- a/OpenAL32/alBuffer.c +++ b/OpenAL32/alBuffer.c @@ -1088,8 +1088,8 @@ static ALalaw EncodeALaw(ALshort val) static void DecodeIMA4Block(ALshort *dst, const ALima4 *src, ALint numchans) { - ALint sample[MAXCHANNELS], index[MAXCHANNELS]; - ALuint code[MAXCHANNELS]; + ALint sample[MaxChannels], index[MaxChannels]; + ALuint code[MaxChannels]; ALsizei j,k,c; for(c = 0;c < numchans;c++) @@ -1750,7 +1750,7 @@ DECL_TEMPLATE(ALubyte3, ALubyte3) static void Convert_##T##_ALima4(T *dst, const ALima4 *src, ALuint numchans, \ ALuint len) \ { \ - ALshort tmp[65*MAXCHANNELS]; /* Max samples an IMA4 frame can be */ \ + ALshort tmp[65*MaxChannels]; /* Max samples an IMA4 frame can be */ \ ALuint i, j, k; \ \ i = 0; \ @@ -1786,9 +1786,9 @@ DECL_TEMPLATE(ALubyte3) static void Convert_ALima4_##T(ALima4 *dst, const T *src, ALuint numchans, \ ALuint len) \ { \ - ALshort tmp[65*MAXCHANNELS]; /* Max samples an IMA4 frame can be */ \ - ALint sample[MAXCHANNELS] = {0,0,0,0,0,0,0,0}; \ - ALint index[MAXCHANNELS] = {0,0,0,0,0,0,0,0}; \ + ALshort tmp[65*MaxChannels]; /* Max samples an IMA4 frame can be */ \ + ALint sample[MaxChannels] = {0,0,0,0,0,0,0,0}; \ + ALint index[MaxChannels] = {0,0,0,0,0,0,0,0}; \ ALuint i, j; \ \ for(i = 0;i < len;i += 65) \ |