Move the sample conversion routines to a separate file
This commit is contained in:
parent
bf4ddfef6d
commit
143f786d1a
@ -515,6 +515,7 @@ SET(OPENAL_OBJS OpenAL32/alAuxEffectSlot.c
|
||||
OpenAL32/alSource.c
|
||||
OpenAL32/alState.c
|
||||
OpenAL32/alThunk.c
|
||||
OpenAL32/sample_cvt.c
|
||||
)
|
||||
SET(ALC_OBJS Alc/ALc.c
|
||||
Alc/ALu.c
|
||||
|
9
OpenAL32/Include/sample_cvt.h
Normal file
9
OpenAL32/Include/sample_cvt.h
Normal file
@ -0,0 +1,9 @@
|
||||
#ifndef SAMPLE_CVT_H
|
||||
#define SAMPLE_CVT_H
|
||||
|
||||
#include "AL/al.h"
|
||||
#include "alBuffer.h"
|
||||
|
||||
void ConvertData(ALvoid *dst, enum UserFmtType dstType, const ALvoid *src, enum UserFmtType srcType, ALsizei numchans, ALsizei len, ALsizei align);
|
||||
|
||||
#endif /* SAMPLE_CVT_H */
|
1264
OpenAL32/alBuffer.c
1264
OpenAL32/alBuffer.c
File diff suppressed because it is too large
Load Diff
1266
OpenAL32/sample_cvt.c
Normal file
1266
OpenAL32/sample_cvt.c
Normal file
File diff suppressed because it is too large
Load Diff
Loading…
Reference in New Issue
Block a user