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
1c09a5d7
Commit
1c09a5d7
authored
Apr 18, 2021
by
Giovanni Petrantoni
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'master' of
git://github.com/mackron/miniaudio
parents
32d28747
fca829ed
Changes
6
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
707 additions
and
324 deletions
+707
-324
extras/dr_flac.h
extras/dr_flac.h
+60
-11
extras/miniaudio_split/miniaudio.c
extras/miniaudio_split/miniaudio.c
+192
-91
extras/miniaudio_split/miniaudio.h
extras/miniaudio_split/miniaudio.h
+3
-3
miniaudio.h
miniaudio.h
+205
-94
research/miniaudio_engine.c
research/miniaudio_engine.c
+5
-3
research/miniaudio_engine.h
research/miniaudio_engine.h
+242
-122
No files found.
extras/dr_flac.h
View file @
1c09a5d7
/*
/*
FLAC audio decoder. Choice of public domain or MIT-0. See license statements at the end of this file.
FLAC audio decoder. Choice of public domain or MIT-0. See license statements at the end of this file.
dr_flac - v0.12.2
8 - 2021-02-21
dr_flac - v0.12.2
9 - 2021-04-02
David Reid - mackron@gmail.com
David Reid - mackron@gmail.com
...
@@ -232,7 +232,7 @@ extern "C" {
...
@@ -232,7 +232,7 @@ extern "C" {
#define DRFLAC_VERSION_MAJOR 0
#define DRFLAC_VERSION_MAJOR 0
#define DRFLAC_VERSION_MINOR 12
#define DRFLAC_VERSION_MINOR 12
#define DRFLAC_VERSION_REVISION 2
8
#define DRFLAC_VERSION_REVISION 2
9
#define DRFLAC_VERSION_STRING DRFLAC_XSTRINGIFY(DRFLAC_VERSION_MAJOR) "." DRFLAC_XSTRINGIFY(DRFLAC_VERSION_MINOR) "." DRFLAC_XSTRINGIFY(DRFLAC_VERSION_REVISION)
#define DRFLAC_VERSION_STRING DRFLAC_XSTRINGIFY(DRFLAC_VERSION_MAJOR) "." DRFLAC_XSTRINGIFY(DRFLAC_VERSION_MINOR) "." DRFLAC_XSTRINGIFY(DRFLAC_VERSION_REVISION)
#include <stddef.h>
/* For size_t. */
#include <stddef.h>
/* For size_t. */
...
@@ -1577,6 +1577,27 @@ static DRFLAC_INLINE drflac_bool32 drflac_has_sse41(void)
...
@@ -1577,6 +1577,27 @@ static DRFLAC_INLINE drflac_bool32 drflac_has_sse41(void)
#if ((__GNUC__ > 4) || (__GNUC__ == 4 && __GNUC_MINOR__ >= 8))
#if ((__GNUC__ > 4) || (__GNUC__ == 4 && __GNUC_MINOR__ >= 8))
#define DRFLAC_HAS_BYTESWAP16_INTRINSIC
#define DRFLAC_HAS_BYTESWAP16_INTRINSIC
#endif
#endif
#elif defined(__WATCOMC__) && defined(__386__)
#define DRFLAC_HAS_BYTESWAP16_INTRINSIC
#define DRFLAC_HAS_BYTESWAP32_INTRINSIC
#define DRFLAC_HAS_BYTESWAP64_INTRINSIC
extern
__inline
drflac_uint16
_watcom_bswap16
(
drflac_uint16
);
extern
__inline
drflac_uint32
_watcom_bswap32
(
drflac_uint32
);
extern
__inline
drflac_uint64
_watcom_bswap64
(
drflac_uint64
);
#pragma aux _watcom_bswap16 = \
"xchg al, ah" \
parm [ax] \
modify [ax];
#pragma aux _watcom_bswap32 = \
"bswap eax" \
parm [eax] \
modify [eax];
#pragma aux _watcom_bswap64 = \
"bswap eax" \
"bswap edx" \
"xchg eax,edx" \
parm [eax edx] \
modify [eax edx];
#endif
#endif
...
@@ -1800,6 +1821,8 @@ static DRFLAC_INLINE drflac_uint16 drflac__swap_endian_uint16(drflac_uint16 n)
...
@@ -1800,6 +1821,8 @@ static DRFLAC_INLINE drflac_uint16 drflac__swap_endian_uint16(drflac_uint16 n)
return
_byteswap_ushort
(
n
);
return
_byteswap_ushort
(
n
);
#elif defined(__GNUC__) || defined(__clang__)
#elif defined(__GNUC__) || defined(__clang__)
return
__builtin_bswap16
(
n
);
return
__builtin_bswap16
(
n
);
#elif defined(__WATCOMC__) && defined(__386__)
return
_watcom_bswap16
(
n
);
#else
#else
#error "This compiler does not support the byte swap intrinsic."
#error "This compiler does not support the byte swap intrinsic."
#endif
#endif
...
@@ -1829,6 +1852,8 @@ static DRFLAC_INLINE drflac_uint32 drflac__swap_endian_uint32(drflac_uint32 n)
...
@@ -1829,6 +1852,8 @@ static DRFLAC_INLINE drflac_uint32 drflac__swap_endian_uint32(drflac_uint32 n)
#else
#else
return
__builtin_bswap32
(
n
);
return
__builtin_bswap32
(
n
);
#endif
#endif
#elif defined(__WATCOMC__) && defined(__386__)
return
_watcom_bswap32
(
n
);
#else
#else
#error "This compiler does not support the byte swap intrinsic."
#error "This compiler does not support the byte swap intrinsic."
#endif
#endif
...
@@ -1847,6 +1872,8 @@ static DRFLAC_INLINE drflac_uint64 drflac__swap_endian_uint64(drflac_uint64 n)
...
@@ -1847,6 +1872,8 @@ static DRFLAC_INLINE drflac_uint64 drflac__swap_endian_uint64(drflac_uint64 n)
return
_byteswap_uint64
(
n
);
return
_byteswap_uint64
(
n
);
#elif defined(__GNUC__) || defined(__clang__)
#elif defined(__GNUC__) || defined(__clang__)
return
__builtin_bswap64
(
n
);
return
__builtin_bswap64
(
n
);
#elif defined(__WATCOMC__) && defined(__386__)
return
_watcom_bswap64
(
n
);
#else
#else
#error "This compiler does not support the byte swap intrinsic."
#error "This compiler does not support the byte swap intrinsic."
#endif
#endif
...
@@ -2654,6 +2681,9 @@ static drflac_bool32 drflac__find_and_seek_to_next_sync_code(drflac_bs* bs)
...
@@ -2654,6 +2681,9 @@ static drflac_bool32 drflac__find_and_seek_to_next_sync_code(drflac_bs* bs)
#if defined(_MSC_VER) && _MSC_VER >= 1400 && (defined(DRFLAC_X64) || defined(DRFLAC_X86)) && !defined(__clang__)
#if defined(_MSC_VER) && _MSC_VER >= 1400 && (defined(DRFLAC_X64) || defined(DRFLAC_X86)) && !defined(__clang__)
#define DRFLAC_IMPLEMENT_CLZ_MSVC
#define DRFLAC_IMPLEMENT_CLZ_MSVC
#endif
#endif
#if defined(__WATCOMC__) && defined(__386__)
#define DRFLAC_IMPLEMENT_CLZ_WATCOM
#endif
static
DRFLAC_INLINE
drflac_uint32
drflac__clz_software
(
drflac_cache_t
x
)
static
DRFLAC_INLINE
drflac_uint32
drflac__clz_software
(
drflac_cache_t
x
)
{
{
...
@@ -2801,6 +2831,16 @@ static DRFLAC_INLINE drflac_uint32 drflac__clz_msvc(drflac_cache_t x)
...
@@ -2801,6 +2831,16 @@ static DRFLAC_INLINE drflac_uint32 drflac__clz_msvc(drflac_cache_t x)
}
}
#endif
#endif
#ifdef DRFLAC_IMPLEMENT_CLZ_WATCOM
static
__inline
drflac_uint32
drflac__clz_watcom
(
drflac_uint32
);
#pragma aux drflac__clz_watcom = \
"bsr eax, eax" \
"xor eax, 31" \
parm [eax] nomemory \
value [eax] \
modify exact [eax] nomemory;
#endif
static
DRFLAC_INLINE
drflac_uint32
drflac__clz
(
drflac_cache_t
x
)
static
DRFLAC_INLINE
drflac_uint32
drflac__clz
(
drflac_cache_t
x
)
{
{
#ifdef DRFLAC_IMPLEMENT_CLZ_LZCNT
#ifdef DRFLAC_IMPLEMENT_CLZ_LZCNT
...
@@ -2811,6 +2851,8 @@ static DRFLAC_INLINE drflac_uint32 drflac__clz(drflac_cache_t x)
...
@@ -2811,6 +2851,8 @@ static DRFLAC_INLINE drflac_uint32 drflac__clz(drflac_cache_t x)
{
{
#ifdef DRFLAC_IMPLEMENT_CLZ_MSVC
#ifdef DRFLAC_IMPLEMENT_CLZ_MSVC
return
drflac__clz_msvc
(
x
);
return
drflac__clz_msvc
(
x
);
#elif defined(DRFLAC_IMPLEMENT_CLZ_WATCOM)
return
(
x
==
0
)
?
sizeof
(
x
)
*
8
:
drflac__clz_watcom
(
x
);
#else
#else
return
drflac__clz_software
(
x
);
return
drflac__clz_software
(
x
);
#endif
#endif
...
@@ -3194,7 +3236,6 @@ static drflac_bool32 drflac__decode_samples_with_residual__rice__reference(drfla
...
@@ -3194,7 +3236,6 @@ static drflac_bool32 drflac__decode_samples_with_residual__rice__reference(drfla
drflac_uint32 i;
drflac_uint32 i;
DRFLAC_ASSERT(bs != NULL);
DRFLAC_ASSERT(bs != NULL);
DRFLAC_ASSERT(count > 0);
DRFLAC_ASSERT(pSamplesOut != NULL);
DRFLAC_ASSERT(pSamplesOut != NULL);
for (i = 0; i < count; ++i) {
for (i = 0; i < count; ++i) {
...
@@ -3576,7 +3617,6 @@ static drflac_bool32 drflac__decode_samples_with_residual__rice__scalar_zeroorde
...
@@ -3576,7 +3617,6 @@ static drflac_bool32 drflac__decode_samples_with_residual__rice__scalar_zeroorde
drflac_uint32
i
;
drflac_uint32
i
;
DRFLAC_ASSERT
(
bs
!=
NULL
);
DRFLAC_ASSERT
(
bs
!=
NULL
);
DRFLAC_ASSERT
(
count
>
0
);
DRFLAC_ASSERT
(
pSamplesOut
!=
NULL
);
DRFLAC_ASSERT
(
pSamplesOut
!=
NULL
);
(
void
)
bitsPerSample
;
(
void
)
bitsPerSample
;
...
@@ -3622,7 +3662,6 @@ static drflac_bool32 drflac__decode_samples_with_residual__rice__scalar(drflac_b
...
@@ -3622,7 +3662,6 @@ static drflac_bool32 drflac__decode_samples_with_residual__rice__scalar(drflac_b
drflac_uint32
i
;
drflac_uint32
i
;
DRFLAC_ASSERT
(
bs
!=
NULL
);
DRFLAC_ASSERT
(
bs
!=
NULL
);
DRFLAC_ASSERT
(
count
>
0
);
DRFLAC_ASSERT
(
pSamplesOut
!=
NULL
);
DRFLAC_ASSERT
(
pSamplesOut
!=
NULL
);
if
(
order
==
0
)
{
if
(
order
==
0
)
{
...
@@ -4176,7 +4215,6 @@ static drflac_bool32 drflac__decode_samples_with_residual__rice__sse41_64(drflac
...
@@ -4176,7 +4215,6 @@ static drflac_bool32 drflac__decode_samples_with_residual__rice__sse41_64(drflac
static
drflac_bool32
drflac__decode_samples_with_residual__rice__sse41
(
drflac_bs
*
bs
,
drflac_uint32
bitsPerSample
,
drflac_uint32
count
,
drflac_uint8
riceParam
,
drflac_uint32
order
,
drflac_int32
shift
,
const
drflac_int32
*
coefficients
,
drflac_int32
*
pSamplesOut
)
static
drflac_bool32
drflac__decode_samples_with_residual__rice__sse41
(
drflac_bs
*
bs
,
drflac_uint32
bitsPerSample
,
drflac_uint32
count
,
drflac_uint8
riceParam
,
drflac_uint32
order
,
drflac_int32
shift
,
const
drflac_int32
*
coefficients
,
drflac_int32
*
pSamplesOut
)
{
{
DRFLAC_ASSERT
(
bs
!=
NULL
);
DRFLAC_ASSERT
(
bs
!=
NULL
);
DRFLAC_ASSERT
(
count
>
0
);
DRFLAC_ASSERT
(
pSamplesOut
!=
NULL
);
DRFLAC_ASSERT
(
pSamplesOut
!=
NULL
);
/* In my testing the order is rarely > 12, so in this case I'm going to simplify the SSE implementation by only handling order <= 12. */
/* In my testing the order is rarely > 12, so in this case I'm going to simplify the SSE implementation by only handling order <= 12. */
...
@@ -4675,7 +4713,6 @@ static drflac_bool32 drflac__decode_samples_with_residual__rice__neon_64(drflac_
...
@@ -4675,7 +4713,6 @@ static drflac_bool32 drflac__decode_samples_with_residual__rice__neon_64(drflac_
static
drflac_bool32
drflac__decode_samples_with_residual__rice__neon
(
drflac_bs
*
bs
,
drflac_uint32
bitsPerSample
,
drflac_uint32
count
,
drflac_uint8
riceParam
,
drflac_uint32
order
,
drflac_int32
shift
,
const
drflac_int32
*
coefficients
,
drflac_int32
*
pSamplesOut
)
static
drflac_bool32
drflac__decode_samples_with_residual__rice__neon
(
drflac_bs
*
bs
,
drflac_uint32
bitsPerSample
,
drflac_uint32
count
,
drflac_uint8
riceParam
,
drflac_uint32
order
,
drflac_int32
shift
,
const
drflac_int32
*
coefficients
,
drflac_int32
*
pSamplesOut
)
{
{
DRFLAC_ASSERT
(
bs
!=
NULL
);
DRFLAC_ASSERT
(
bs
!=
NULL
);
DRFLAC_ASSERT
(
count
>
0
);
DRFLAC_ASSERT
(
pSamplesOut
!=
NULL
);
DRFLAC_ASSERT
(
pSamplesOut
!=
NULL
);
/* In my testing the order is rarely > 12, so in this case I'm going to simplify the NEON implementation by only handling order <= 12. */
/* In my testing the order is rarely > 12, so in this case I'm going to simplify the NEON implementation by only handling order <= 12. */
...
@@ -4718,7 +4755,6 @@ static drflac_bool32 drflac__read_and_seek_residual__rice(drflac_bs* bs, drflac_
...
@@ -4718,7 +4755,6 @@ static drflac_bool32 drflac__read_and_seek_residual__rice(drflac_bs* bs, drflac_
drflac_uint32
i
;
drflac_uint32
i
;
DRFLAC_ASSERT
(
bs
!=
NULL
);
DRFLAC_ASSERT
(
bs
!=
NULL
);
DRFLAC_ASSERT
(
count
>
0
);
for
(
i
=
0
;
i
<
count
;
++
i
)
{
for
(
i
=
0
;
i
<
count
;
++
i
)
{
if
(
!
drflac__seek_rice_parts
(
bs
,
riceParam
))
{
if
(
!
drflac__seek_rice_parts
(
bs
,
riceParam
))
{
...
@@ -4734,7 +4770,6 @@ static drflac_bool32 drflac__decode_samples_with_residual__unencoded(drflac_bs*
...
@@ -4734,7 +4770,6 @@ static drflac_bool32 drflac__decode_samples_with_residual__unencoded(drflac_bs*
drflac_uint32
i
;
drflac_uint32
i
;
DRFLAC_ASSERT
(
bs
!=
NULL
);
DRFLAC_ASSERT
(
bs
!=
NULL
);
DRFLAC_ASSERT
(
count
>
0
);
DRFLAC_ASSERT
(
unencodedBitsPerSample
<=
31
);
/* <-- unencodedBitsPerSample is a 5 bit number, so cannot exceed 31. */
DRFLAC_ASSERT
(
unencodedBitsPerSample
<=
31
);
/* <-- unencodedBitsPerSample is a 5 bit number, so cannot exceed 31. */
DRFLAC_ASSERT
(
pSamplesOut
!=
NULL
);
DRFLAC_ASSERT
(
pSamplesOut
!=
NULL
);
...
@@ -4798,7 +4833,7 @@ static drflac_bool32 drflac__decode_samples_with_residual(drflac_bs* bs, drflac_
...
@@ -4798,7 +4833,7 @@ static drflac_bool32 drflac__decode_samples_with_residual(drflac_bs* bs, drflac_
}
}
/* Validation check. */
/* Validation check. */
if
((
blockSize
/
(
1
<<
partitionOrder
))
<
=
order
)
{
if
((
blockSize
/
(
1
<<
partitionOrder
))
<
order
)
{
return
DRFLAC_FALSE
;
return
DRFLAC_FALSE
;
}
}
...
@@ -11348,6 +11383,7 @@ DRFLAC_API drflac_bool32 drflac_seek_to_pcm_frame(drflac* pFlac, drflac_uint64 p
...
@@ -11348,6 +11383,7 @@ DRFLAC_API drflac_bool32 drflac_seek_to_pcm_frame(drflac* pFlac, drflac_uint64 p
return
drflac__seek_to_first_frame
(
pFlac
);
return
drflac__seek_to_first_frame
(
pFlac
);
}
else
{
}
else
{
drflac_bool32
wasSuccessful
=
DRFLAC_FALSE
;
drflac_bool32
wasSuccessful
=
DRFLAC_FALSE
;
drflac_uint64
originalPCMFrame
=
pFlac
->
currentPCMFrame
;
/* Clamp the sample to the end. */
/* Clamp the sample to the end. */
if
(
pcmFrameIndex
>
pFlac
->
totalPCMFrameCount
)
{
if
(
pcmFrameIndex
>
pFlac
->
totalPCMFrameCount
)
{
...
@@ -11405,7 +11441,16 @@ DRFLAC_API drflac_bool32 drflac_seek_to_pcm_frame(drflac* pFlac, drflac_uint64 p
...
@@ -11405,7 +11441,16 @@ DRFLAC_API drflac_bool32 drflac_seek_to_pcm_frame(drflac* pFlac, drflac_uint64 p
}
}
}
}
pFlac
->
currentPCMFrame
=
pcmFrameIndex
;
if
(
wasSuccessful
)
{
pFlac
->
currentPCMFrame
=
pcmFrameIndex
;
}
else
{
/* Seek failed. Try putting the decoder back to it's original state. */
if
(
drflac_seek_to_pcm_frame
(
pFlac
,
originalPCMFrame
)
==
DRFLAC_FALSE
)
{
/* Failed to seek back to the original PCM frame. Fall back to 0. */
drflac_seek_to_pcm_frame
(
pFlac
,
0
);
}
}
return
wasSuccessful
;
return
wasSuccessful
;
}
}
}
}
...
@@ -11806,6 +11851,10 @@ DRFLAC_API drflac_bool32 drflac_next_cuesheet_track(drflac_cuesheet_track_iterat
...
@@ -11806,6 +11851,10 @@ DRFLAC_API drflac_bool32 drflac_next_cuesheet_track(drflac_cuesheet_track_iterat
/*
/*
REVISION HISTORY
REVISION HISTORY
================
================
v0.12.29 - 2021-04-02
- Fix a bug where the running PCM frame index is set to an invalid value when over-seeking.
- Fix a decoding error due to an incorrect validation check.
v0.12.28 - 2021-02-21
v0.12.28 - 2021-02-21
- Fix a warning due to referencing _MSC_VER when it is undefined.
- Fix a warning due to referencing _MSC_VER when it is undefined.
...
...
extras/miniaudio_split/miniaudio.c
View file @
1c09a5d7
This diff is collapsed.
Click to expand it.
extras/miniaudio_split/miniaudio.h
View file @
1c09a5d7
/*
/*
Audio playback and capture library. Choice of public domain or MIT-0. See license statements at the end of this file.
Audio playback and capture library. Choice of public domain or MIT-0. See license statements at the end of this file.
miniaudio - v0.10.3
2 - 2020-02-23
miniaudio - v0.10.3
3 - 2021-04-04
David Reid - mackron@gmail.com
David Reid - mackron@gmail.com
...
@@ -20,7 +20,7 @@ extern "C" {
...
@@ -20,7 +20,7 @@ extern "C" {
#define MA_VERSION_MAJOR 0
#define MA_VERSION_MAJOR 0
#define MA_VERSION_MINOR 10
#define MA_VERSION_MINOR 10
#define MA_VERSION_REVISION 3
2
#define MA_VERSION_REVISION 3
3
#define MA_VERSION_STRING MA_XSTRINGIFY(MA_VERSION_MAJOR) "." MA_XSTRINGIFY(MA_VERSION_MINOR) "." MA_XSTRINGIFY(MA_VERSION_REVISION)
#define MA_VERSION_STRING MA_XSTRINGIFY(MA_VERSION_MAJOR) "." MA_XSTRINGIFY(MA_VERSION_MINOR) "." MA_XSTRINGIFY(MA_VERSION_REVISION)
#if defined(_MSC_VER) && !defined(__clang__)
#if defined(_MSC_VER) && !defined(__clang__)
...
@@ -4330,7 +4330,7 @@ Offsets a pointer by the specified number of PCM frames.
...
@@ -4330,7 +4330,7 @@ Offsets a pointer by the specified number of PCM frames.
*/
*/
MA_API
void
*
ma_offset_pcm_frames_ptr
(
void
*
p
,
ma_uint64
offsetInFrames
,
ma_format
format
,
ma_uint32
channels
);
MA_API
void
*
ma_offset_pcm_frames_ptr
(
void
*
p
,
ma_uint64
offsetInFrames
,
ma_format
format
,
ma_uint32
channels
);
MA_API
const
void
*
ma_offset_pcm_frames_const_ptr
(
const
void
*
p
,
ma_uint64
offsetInFrames
,
ma_format
format
,
ma_uint32
channels
);
MA_API
const
void
*
ma_offset_pcm_frames_const_ptr
(
const
void
*
p
,
ma_uint64
offsetInFrames
,
ma_format
format
,
ma_uint32
channels
);
static
MA_INLINE
float
*
ma_offset_pcm_frames_ptr_f32
(
float
*
p
,
ma_uint64
offsetInFrames
,
ma_uint32
channels
)
{
return
(
float
*
)
ma_offset_pcm_frames_
const_
ptr
((
void
*
)
p
,
offsetInFrames
,
ma_format_f32
,
channels
);
}
static
MA_INLINE
float
*
ma_offset_pcm_frames_ptr_f32
(
float
*
p
,
ma_uint64
offsetInFrames
,
ma_uint32
channels
)
{
return
(
float
*
)
ma_offset_pcm_frames_ptr
((
void
*
)
p
,
offsetInFrames
,
ma_format_f32
,
channels
);
}
static
MA_INLINE
const
float
*
ma_offset_pcm_frames_const_ptr_f32
(
const
float
*
p
,
ma_uint64
offsetInFrames
,
ma_uint32
channels
)
{
return
(
const
float
*
)
ma_offset_pcm_frames_const_ptr
((
const
void
*
)
p
,
offsetInFrames
,
ma_format_f32
,
channels
);
}
static
MA_INLINE
const
float
*
ma_offset_pcm_frames_const_ptr_f32
(
const
float
*
p
,
ma_uint64
offsetInFrames
,
ma_uint32
channels
)
{
return
(
const
float
*
)
ma_offset_pcm_frames_const_ptr
((
const
void
*
)
p
,
offsetInFrames
,
ma_format_f32
,
channels
);
}
...
...
miniaudio.h
View file @
1c09a5d7
This diff is collapsed.
Click to expand it.
research/miniaudio_engine.c
View file @
1c09a5d7
...
@@ -188,10 +188,12 @@ int main(int argc, char** argv)
...
@@ -188,10 +188,12 @@ int main(int argc, char** argv)
}
}
//ma_spatializer_set_position(&g_spatializer, ma_vec3f_init_3f(posX, 0, posZ));
//ma_spatializer_set_position(&g_spatializer, ma_vec3f_init_3f(posX, 0, posZ));
ma_sound_set_position
(
&
sound
,
posX
,
0
,
posZ
);
ma_sound_set_position
(
&
sound
,
0
,
0
,
-
2
);
ma_sound_set_velocity
(
&
sound
,
step
*
1000
,
0
,
0
);
ma_engine_listener_set_position
(
&
engine
,
0
,
0
,
0
,
-
20
);
ma_engine_listener_set_direction
(
&
engine
,
0
,
-
1
,
0
,
0
);
//ma_sound_set_velocity(&sound, step*1000, 0, 0);
//ma_engine_listener_set_direciton(&engine
, (float)ma_cos(angle), 0, (float)ma_sin(angle));
ma_engine_listener_set_direction
(
&
engine
,
0
,
(
float
)
ma_cos
(
angle
),
0
,
(
float
)
ma_sin
(
angle
));
angle
+=
stepAngle
;
angle
+=
stepAngle
;
ma_sleep
(
1
);
ma_sleep
(
1
);
...
...
research/miniaudio_engine.h
View file @
1c09a5d7
This diff is collapsed.
Click to expand it.
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