2007-11-13 18:02:18 -08:00
|
|
|
/**
|
|
|
|
* OpenAL cross platform audio library
|
|
|
|
* Copyright (C) 1999-2007 by authors.
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Library General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 2 of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This library is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Library General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Library General Public
|
|
|
|
* License along with this library; if not, write to the
|
2014-08-18 14:11:03 +02:00
|
|
|
* Free Software Foundation, Inc.,
|
|
|
|
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
2007-11-13 18:02:18 -08:00
|
|
|
* Or go to http://www.gnu.org/copyleft/lgpl.html
|
|
|
|
*/
|
|
|
|
|
2008-01-16 14:09:04 -08:00
|
|
|
#include "config.h"
|
|
|
|
|
2007-11-13 18:02:18 -08:00
|
|
|
#include <stdlib.h>
|
2015-10-14 03:23:19 -07:00
|
|
|
#include <limits.h>
|
2007-11-13 18:02:18 -08:00
|
|
|
#include <float.h>
|
2012-08-20 12:22:00 -07:00
|
|
|
|
2018-11-18 03:25:32 -08:00
|
|
|
#include <cmath>
|
2018-11-18 02:15:31 -08:00
|
|
|
#include <algorithm>
|
|
|
|
|
2007-11-13 18:02:18 -08:00
|
|
|
#include "AL/al.h"
|
|
|
|
#include "AL/alc.h"
|
2018-11-17 23:02:27 -08:00
|
|
|
|
2012-08-20 12:22:00 -07:00
|
|
|
#include "alMain.h"
|
2018-11-17 23:02:27 -08:00
|
|
|
#include "alcontext.h"
|
2007-11-13 18:02:18 -08:00
|
|
|
#include "alError.h"
|
|
|
|
#include "alSource.h"
|
2007-12-31 01:09:57 -08:00
|
|
|
#include "alBuffer.h"
|
2018-03-22 07:05:40 -07:00
|
|
|
#include "alFilter.h"
|
2008-01-16 14:01:24 -08:00
|
|
|
#include "alAuxEffectSlot.h"
|
2018-02-24 09:24:18 -08:00
|
|
|
#include "ringbuffer.h"
|
2007-11-13 18:02:18 -08:00
|
|
|
|
2015-09-21 05:52:01 -07:00
|
|
|
#include "backends/base.h"
|
|
|
|
|
2014-05-11 03:52:22 -07:00
|
|
|
#include "threads.h"
|
2016-03-29 00:44:58 -07:00
|
|
|
#include "almalloc.h"
|
2014-05-11 03:52:22 -07:00
|
|
|
|
2010-11-28 17:37:14 -08:00
|
|
|
|
2018-01-27 13:02:17 -08:00
|
|
|
static ALsource *AllocSource(ALCcontext *context);
|
|
|
|
static void FreeSource(ALCcontext *context, ALsource *source);
|
2017-02-21 16:31:59 -08:00
|
|
|
static void InitSourceParams(ALsource *Source, ALsizei num_sends);
|
|
|
|
static void DeinitSource(ALsource *source, ALsizei num_sends);
|
2017-09-27 11:13:18 -07:00
|
|
|
static void UpdateSourceProps(ALsource *source, ALvoice *voice, ALsizei num_sends, ALCcontext *context);
|
2017-02-27 15:35:15 -08:00
|
|
|
static ALint64 GetSourceSampleOffset(ALsource *Source, ALCcontext *context, ALuint64 *clocktime);
|
|
|
|
static ALdouble GetSourceSecOffset(ALsource *Source, ALCcontext *context, ALuint64 *clocktime);
|
|
|
|
static ALdouble GetSourceOffset(ALsource *Source, ALenum name, ALCcontext *context);
|
2017-04-08 14:29:08 -07:00
|
|
|
static ALboolean GetSampleOffset(ALsource *Source, ALuint *offset, ALsizei *frac);
|
2017-03-19 13:48:40 -07:00
|
|
|
static ALboolean ApplyOffset(ALsource *Source, ALvoice *voice);
|
2007-11-13 18:02:18 -08:00
|
|
|
|
2018-01-27 13:02:17 -08:00
|
|
|
static inline void LockSourceList(ALCcontext *context)
|
|
|
|
{ almtx_lock(&context->SourceLock); }
|
|
|
|
static inline void UnlockSourceList(ALCcontext *context)
|
|
|
|
{ almtx_unlock(&context->SourceLock); }
|
2018-01-27 11:56:31 -08:00
|
|
|
|
|
|
|
static inline ALsource *LookupSource(ALCcontext *context, ALuint id)
|
2018-01-27 13:02:17 -08:00
|
|
|
{
|
|
|
|
ALuint lidx = (id-1) >> 6;
|
|
|
|
ALsizei slidx = (id-1) & 0x3f;
|
|
|
|
|
2018-11-18 02:15:31 -08:00
|
|
|
if(UNLIKELY(lidx >= context->SourceList.size()))
|
|
|
|
return nullptr;
|
|
|
|
SourceSubList &sublist{context->SourceList[lidx]};
|
|
|
|
if(UNLIKELY(sublist.FreeMask & (U64(1)<<slidx)))
|
|
|
|
return nullptr;
|
|
|
|
return sublist.Sources + slidx;
|
2018-01-27 13:02:17 -08:00
|
|
|
}
|
2018-01-27 11:56:31 -08:00
|
|
|
|
2018-01-27 01:51:01 -08:00
|
|
|
static inline ALbuffer *LookupBuffer(ALCdevice *device, ALuint id)
|
|
|
|
{
|
|
|
|
ALuint lidx = (id-1) >> 6;
|
|
|
|
ALsizei slidx = (id-1) & 0x3f;
|
|
|
|
|
2018-11-18 22:31:51 -08:00
|
|
|
if(UNLIKELY(lidx >= device->BufferList.size()))
|
|
|
|
return nullptr;
|
|
|
|
BufferSubList &sublist = device->BufferList[lidx];
|
|
|
|
if(UNLIKELY(sublist.FreeMask & (U64(1)<<slidx)))
|
|
|
|
return nullptr;
|
|
|
|
return sublist.Buffers + slidx;
|
2018-01-27 01:51:01 -08:00
|
|
|
}
|
|
|
|
|
2018-01-27 19:40:47 -08:00
|
|
|
static inline ALfilter *LookupFilter(ALCdevice *device, ALuint id)
|
|
|
|
{
|
|
|
|
ALuint lidx = (id-1) >> 6;
|
|
|
|
ALsizei slidx = (id-1) & 0x3f;
|
|
|
|
|
2018-11-18 23:02:31 -08:00
|
|
|
if(UNLIKELY(lidx >= device->FilterList.size()))
|
|
|
|
return nullptr;
|
|
|
|
FilterSubList &sublist = device->FilterList[lidx];
|
|
|
|
if(UNLIKELY(sublist.FreeMask & (U64(1)<<slidx)))
|
|
|
|
return nullptr;
|
|
|
|
return sublist.Filters + slidx;
|
2018-01-27 19:40:47 -08:00
|
|
|
}
|
|
|
|
|
2018-01-27 17:24:18 -08:00
|
|
|
static inline ALeffectslot *LookupEffectSlot(ALCcontext *context, ALuint id)
|
|
|
|
{
|
2018-11-18 02:39:27 -08:00
|
|
|
--id;
|
|
|
|
if(UNLIKELY(id >= context->EffectSlotList.size()))
|
|
|
|
return nullptr;
|
|
|
|
return context->EffectSlotList[id];
|
2018-01-27 17:24:18 -08:00
|
|
|
}
|
|
|
|
|
2018-01-27 01:51:01 -08:00
|
|
|
|
2015-09-22 08:48:26 -07:00
|
|
|
typedef enum SourceProp {
|
|
|
|
srcPitch = AL_PITCH,
|
|
|
|
srcGain = AL_GAIN,
|
|
|
|
srcMinGain = AL_MIN_GAIN,
|
|
|
|
srcMaxGain = AL_MAX_GAIN,
|
|
|
|
srcMaxDistance = AL_MAX_DISTANCE,
|
|
|
|
srcRolloffFactor = AL_ROLLOFF_FACTOR,
|
|
|
|
srcDopplerFactor = AL_DOPPLER_FACTOR,
|
|
|
|
srcConeOuterGain = AL_CONE_OUTER_GAIN,
|
|
|
|
srcSecOffset = AL_SEC_OFFSET,
|
|
|
|
srcSampleOffset = AL_SAMPLE_OFFSET,
|
|
|
|
srcByteOffset = AL_BYTE_OFFSET,
|
|
|
|
srcConeInnerAngle = AL_CONE_INNER_ANGLE,
|
|
|
|
srcConeOuterAngle = AL_CONE_OUTER_ANGLE,
|
|
|
|
srcRefDistance = AL_REFERENCE_DISTANCE,
|
|
|
|
|
|
|
|
srcPosition = AL_POSITION,
|
|
|
|
srcVelocity = AL_VELOCITY,
|
|
|
|
srcDirection = AL_DIRECTION,
|
|
|
|
|
|
|
|
srcSourceRelative = AL_SOURCE_RELATIVE,
|
|
|
|
srcLooping = AL_LOOPING,
|
|
|
|
srcBuffer = AL_BUFFER,
|
|
|
|
srcSourceState = AL_SOURCE_STATE,
|
|
|
|
srcBuffersQueued = AL_BUFFERS_QUEUED,
|
|
|
|
srcBuffersProcessed = AL_BUFFERS_PROCESSED,
|
|
|
|
srcSourceType = AL_SOURCE_TYPE,
|
2012-12-05 09:22:38 -08:00
|
|
|
|
|
|
|
/* ALC_EXT_EFX */
|
2015-09-22 08:48:26 -07:00
|
|
|
srcConeOuterGainHF = AL_CONE_OUTER_GAINHF,
|
|
|
|
srcAirAbsorptionFactor = AL_AIR_ABSORPTION_FACTOR,
|
|
|
|
srcRoomRolloffFactor = AL_ROOM_ROLLOFF_FACTOR,
|
|
|
|
srcDirectFilterGainHFAuto = AL_DIRECT_FILTER_GAINHF_AUTO,
|
|
|
|
srcAuxSendFilterGainAuto = AL_AUXILIARY_SEND_FILTER_GAIN_AUTO,
|
|
|
|
srcAuxSendFilterGainHFAuto = AL_AUXILIARY_SEND_FILTER_GAINHF_AUTO,
|
|
|
|
srcDirectFilter = AL_DIRECT_FILTER,
|
|
|
|
srcAuxSendFilter = AL_AUXILIARY_SEND_FILTER,
|
2012-12-05 09:22:38 -08:00
|
|
|
|
2012-12-05 13:48:33 -08:00
|
|
|
/* AL_SOFT_direct_channels */
|
2015-09-22 08:48:26 -07:00
|
|
|
srcDirectChannelsSOFT = AL_DIRECT_CHANNELS_SOFT,
|
2012-12-05 13:48:33 -08:00
|
|
|
|
|
|
|
/* AL_EXT_source_distance_model */
|
2015-09-22 08:48:26 -07:00
|
|
|
srcDistanceModel = AL_DISTANCE_MODEL,
|
2012-12-05 13:48:33 -08:00
|
|
|
|
2012-12-05 09:22:38 -08:00
|
|
|
/* AL_SOFT_source_latency */
|
2015-09-22 08:48:26 -07:00
|
|
|
srcSampleOffsetLatencySOFT = AL_SAMPLE_OFFSET_LATENCY_SOFT,
|
|
|
|
srcSecOffsetLatencySOFT = AL_SEC_OFFSET_LATENCY_SOFT,
|
2014-10-31 22:43:13 -07:00
|
|
|
|
2016-03-25 14:40:44 -07:00
|
|
|
/* AL_EXT_STEREO_ANGLES */
|
|
|
|
srcAngles = AL_STEREO_ANGLES,
|
|
|
|
|
2016-04-25 00:30:47 -07:00
|
|
|
/* AL_EXT_SOURCE_RADIUS */
|
|
|
|
srcRadius = AL_SOURCE_RADIUS,
|
|
|
|
|
2014-10-31 22:43:13 -07:00
|
|
|
/* AL_EXT_BFORMAT */
|
2015-09-22 08:48:26 -07:00
|
|
|
srcOrientation = AL_ORIENTATION,
|
2017-04-21 15:48:39 -07:00
|
|
|
|
|
|
|
/* AL_SOFT_source_resampler */
|
|
|
|
srcResampler = AL_SOURCE_RESAMPLER_SOFT,
|
2017-05-05 02:41:34 -07:00
|
|
|
|
|
|
|
/* AL_SOFT_source_spatialize */
|
|
|
|
srcSpatialize = AL_SOURCE_SPATIALIZE_SOFT,
|
2017-12-03 14:45:19 -08:00
|
|
|
|
|
|
|
/* ALC_SOFT_device_clock */
|
|
|
|
srcSampleOffsetClockSOFT = AL_SAMPLE_OFFSET_CLOCK_SOFT,
|
|
|
|
srcSecOffsetClockSOFT = AL_SEC_OFFSET_CLOCK_SOFT,
|
2015-09-22 08:48:26 -07:00
|
|
|
} SourceProp;
|
2012-12-05 09:55:05 -08:00
|
|
|
|
2015-09-22 08:48:26 -07:00
|
|
|
static ALboolean SetSourcefv(ALsource *Source, ALCcontext *Context, SourceProp prop, const ALfloat *values);
|
|
|
|
static ALboolean SetSourceiv(ALsource *Source, ALCcontext *Context, SourceProp prop, const ALint *values);
|
|
|
|
static ALboolean SetSourcei64v(ALsource *Source, ALCcontext *Context, SourceProp prop, const ALint64SOFT *values);
|
2012-08-28 22:16:55 -07:00
|
|
|
|
2015-09-22 08:48:26 -07:00
|
|
|
static ALboolean GetSourcedv(ALsource *Source, ALCcontext *Context, SourceProp prop, ALdouble *values);
|
|
|
|
static ALboolean GetSourceiv(ALsource *Source, ALCcontext *Context, SourceProp prop, ALint *values);
|
|
|
|
static ALboolean GetSourcei64v(ALsource *Source, ALCcontext *Context, SourceProp prop, ALint64 *values);
|
2012-08-20 14:16:58 -07:00
|
|
|
|
2018-02-01 23:56:35 -08:00
|
|
|
static inline ALvoice *GetSourceVoice(ALsource *source, ALCcontext *context)
|
2016-11-22 02:28:18 -08:00
|
|
|
{
|
2018-02-01 23:56:35 -08:00
|
|
|
ALint idx = source->VoiceIdx;
|
|
|
|
if(idx >= 0 && idx < context->VoiceCount)
|
2016-11-22 02:28:18 -08:00
|
|
|
{
|
2018-02-01 23:56:35 -08:00
|
|
|
ALvoice *voice = context->Voices[idx];
|
|
|
|
if(ATOMIC_LOAD(&voice->Source, almemory_order_acquire) == source)
|
|
|
|
return voice;
|
2016-11-22 02:28:18 -08:00
|
|
|
}
|
2018-02-01 23:56:35 -08:00
|
|
|
source->VoiceIdx = -1;
|
2016-11-22 02:28:18 -08:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2017-03-23 01:16:13 -07:00
|
|
|
/**
|
|
|
|
* Returns if the last known state for the source was playing or paused. Does
|
|
|
|
* not sync with the mixer voice.
|
|
|
|
*/
|
2017-03-12 19:27:51 -07:00
|
|
|
static inline bool IsPlayingOrPaused(ALsource *source)
|
2018-02-24 09:44:52 -08:00
|
|
|
{ return source->state == AL_PLAYING || source->state == AL_PAUSED; }
|
2017-02-24 01:47:34 -08:00
|
|
|
|
2017-03-23 01:16:13 -07:00
|
|
|
/**
|
|
|
|
* Returns an updated source state using the matching voice's status (or lack
|
|
|
|
* thereof).
|
|
|
|
*/
|
|
|
|
static inline ALenum GetSourceState(ALsource *source, ALvoice *voice)
|
2017-03-06 13:16:14 -08:00
|
|
|
{
|
2018-02-24 09:44:52 -08:00
|
|
|
if(!voice && source->state == AL_PLAYING)
|
|
|
|
source->state = AL_STOPPED;
|
|
|
|
return source->state;
|
2017-03-06 13:16:14 -08:00
|
|
|
}
|
|
|
|
|
2017-03-23 01:16:13 -07:00
|
|
|
/**
|
|
|
|
* Returns if the source should specify an update, given the context's
|
|
|
|
* deferring state and the source's last known state.
|
|
|
|
*/
|
2017-03-12 19:27:51 -07:00
|
|
|
static inline bool SourceShouldUpdate(ALsource *source, ALCcontext *context)
|
Provide asynchronous property updates for sources
This necessitates a change in how source updates are handled. Rather than just
being able to update sources when a dependent object state is changed (e.g. a
listener gain change), now all source updates must be proactively provided.
Consequently, apps that do not utilize any deferring (AL_SOFT_defer_updates or
alcSuspendContext/alcProcessContext) may utilize more CPU since it'll be
filling out more update containers for the mixer thread to use.
The upside is that there's less blocking between the app's calling thread and
the mixer thread, particularly for vectors and other multi-value properties
(filters and sends). Deferring behavior when used is also improved, since
updates that shouldn't be applied yet are simply not provided. And when they
are provided, the mixer doesn't have to ignore them, meaning the actual
deferring of a context doesn't have to synchrnously force an update -- the
process call will send any pending updates, which the mixer will apply even if
another deferral occurs before the mixer runs, because it'll still be there
waiting on the next mixer invocation.
There is one slight bug introduced by this commit. When a listener change is
made, or changes to multiple sources while updates are being deferred, it is
possible for the mixer to run while the sources are prepping their updates,
causing some of the source updates to be seen before the other. This will be
fixed in short order.
2016-05-14 23:43:40 -07:00
|
|
|
{
|
2017-03-12 19:27:51 -07:00
|
|
|
return !ATOMIC_LOAD(&context->DeferUpdates, almemory_order_acquire) &&
|
|
|
|
IsPlayingOrPaused(source);
|
Provide asynchronous property updates for sources
This necessitates a change in how source updates are handled. Rather than just
being able to update sources when a dependent object state is changed (e.g. a
listener gain change), now all source updates must be proactively provided.
Consequently, apps that do not utilize any deferring (AL_SOFT_defer_updates or
alcSuspendContext/alcProcessContext) may utilize more CPU since it'll be
filling out more update containers for the mixer thread to use.
The upside is that there's less blocking between the app's calling thread and
the mixer thread, particularly for vectors and other multi-value properties
(filters and sends). Deferring behavior when used is also improved, since
updates that shouldn't be applied yet are simply not provided. And when they
are provided, the mixer doesn't have to ignore them, meaning the actual
deferring of a context doesn't have to synchrnously force an update -- the
process call will send any pending updates, which the mixer will apply even if
another deferral occurs before the mixer runs, because it'll still be there
waiting on the next mixer invocation.
There is one slight bug introduced by this commit. When a listener change is
made, or changes to multiple sources while updates are being deferred, it is
possible for the mixer to run while the sources are prepping their updates,
causing some of the source updates to be seen before the other. This will be
fixed in short order.
2016-05-14 23:43:40 -07:00
|
|
|
}
|
|
|
|
|
2018-02-24 09:24:18 -08:00
|
|
|
|
|
|
|
/** Can only be called while the mixer is locked! */
|
|
|
|
static void SendStateChangeEvent(ALCcontext *context, ALuint id, ALenum state)
|
|
|
|
{
|
2018-09-20 21:59:38 -07:00
|
|
|
AsyncEvent evt = ASYNC_EVENT(EventType_SourceStateChange);
|
2018-02-24 09:24:18 -08:00
|
|
|
ALbitfieldSOFT enabledevt;
|
|
|
|
|
|
|
|
enabledevt = ATOMIC_LOAD(&context->EnabledEvts, almemory_order_acquire);
|
|
|
|
if(!(enabledevt&EventType_SourceStateChange)) return;
|
|
|
|
|
2018-09-20 21:59:38 -07:00
|
|
|
evt.u.user.type = AL_EVENT_TYPE_SOURCE_STATE_CHANGED_SOFT;
|
|
|
|
evt.u.user.id = id;
|
|
|
|
evt.u.user.param = state;
|
|
|
|
snprintf(evt.u.user.msg, sizeof(evt.u.user.msg), "Source ID %u state changed to %s", id,
|
2018-02-24 09:24:18 -08:00
|
|
|
(state==AL_INITIAL) ? "AL_INITIAL" :
|
|
|
|
(state==AL_PLAYING) ? "AL_PLAYING" :
|
|
|
|
(state==AL_PAUSED) ? "AL_PAUSED" :
|
|
|
|
(state==AL_STOPPED) ? "AL_STOPPED" : "<unknown>"
|
|
|
|
);
|
|
|
|
/* The mixer may have queued a state change that's not yet been processed,
|
|
|
|
* and we don't want state change messages to occur out of order, so send
|
|
|
|
* it through the async queue to ensure proper ordering.
|
|
|
|
*/
|
2018-03-03 21:57:42 -08:00
|
|
|
if(ll_ringbuffer_write(context->AsyncEvents, (const char*)&evt, 1) == 1)
|
|
|
|
alsem_post(&context->EventSem);
|
2018-02-24 09:24:18 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2012-12-05 20:51:25 -08:00
|
|
|
static ALint FloatValsByProp(ALenum prop)
|
|
|
|
{
|
2015-09-22 08:48:26 -07:00
|
|
|
if(prop != (ALenum)((SourceProp)prop))
|
2012-12-05 20:51:25 -08:00
|
|
|
return 0;
|
2015-09-22 08:48:26 -07:00
|
|
|
switch((SourceProp)prop)
|
2012-12-05 20:51:25 -08:00
|
|
|
{
|
2015-09-22 08:48:26 -07:00
|
|
|
case AL_PITCH:
|
|
|
|
case AL_GAIN:
|
|
|
|
case AL_MIN_GAIN:
|
|
|
|
case AL_MAX_GAIN:
|
|
|
|
case AL_MAX_DISTANCE:
|
|
|
|
case AL_ROLLOFF_FACTOR:
|
|
|
|
case AL_DOPPLER_FACTOR:
|
|
|
|
case AL_CONE_OUTER_GAIN:
|
|
|
|
case AL_SEC_OFFSET:
|
|
|
|
case AL_SAMPLE_OFFSET:
|
|
|
|
case AL_BYTE_OFFSET:
|
|
|
|
case AL_CONE_INNER_ANGLE:
|
|
|
|
case AL_CONE_OUTER_ANGLE:
|
|
|
|
case AL_REFERENCE_DISTANCE:
|
|
|
|
case AL_CONE_OUTER_GAINHF:
|
|
|
|
case AL_AIR_ABSORPTION_FACTOR:
|
|
|
|
case AL_ROOM_ROLLOFF_FACTOR:
|
|
|
|
case AL_DIRECT_FILTER_GAINHF_AUTO:
|
|
|
|
case AL_AUXILIARY_SEND_FILTER_GAIN_AUTO:
|
|
|
|
case AL_AUXILIARY_SEND_FILTER_GAINHF_AUTO:
|
|
|
|
case AL_DIRECT_CHANNELS_SOFT:
|
|
|
|
case AL_DISTANCE_MODEL:
|
|
|
|
case AL_SOURCE_RELATIVE:
|
|
|
|
case AL_LOOPING:
|
|
|
|
case AL_SOURCE_STATE:
|
|
|
|
case AL_BUFFERS_QUEUED:
|
|
|
|
case AL_BUFFERS_PROCESSED:
|
|
|
|
case AL_SOURCE_TYPE:
|
2016-04-25 00:30:47 -07:00
|
|
|
case AL_SOURCE_RADIUS:
|
2017-04-21 15:48:39 -07:00
|
|
|
case AL_SOURCE_RESAMPLER_SOFT:
|
2017-05-05 02:41:34 -07:00
|
|
|
case AL_SOURCE_SPATIALIZE_SOFT:
|
2012-12-05 20:51:25 -08:00
|
|
|
return 1;
|
|
|
|
|
2016-03-25 14:40:44 -07:00
|
|
|
case AL_STEREO_ANGLES:
|
2012-12-05 20:51:25 -08:00
|
|
|
return 2;
|
|
|
|
|
2015-09-22 08:48:26 -07:00
|
|
|
case AL_POSITION:
|
|
|
|
case AL_VELOCITY:
|
|
|
|
case AL_DIRECTION:
|
2012-12-05 20:51:25 -08:00
|
|
|
return 3;
|
|
|
|
|
2015-09-22 08:48:26 -07:00
|
|
|
case AL_ORIENTATION:
|
2014-10-31 22:43:13 -07:00
|
|
|
return 6;
|
|
|
|
|
2015-09-22 08:48:26 -07:00
|
|
|
case AL_SEC_OFFSET_LATENCY_SOFT:
|
2017-12-03 14:45:19 -08:00
|
|
|
case AL_SEC_OFFSET_CLOCK_SOFT:
|
2012-12-05 20:51:25 -08:00
|
|
|
break; /* Double only */
|
2015-09-22 08:48:26 -07:00
|
|
|
|
|
|
|
case AL_BUFFER:
|
|
|
|
case AL_DIRECT_FILTER:
|
|
|
|
case AL_AUXILIARY_SEND_FILTER:
|
|
|
|
break; /* i/i64 only */
|
|
|
|
case AL_SAMPLE_OFFSET_LATENCY_SOFT:
|
2017-12-03 14:45:19 -08:00
|
|
|
case AL_SAMPLE_OFFSET_CLOCK_SOFT:
|
2015-09-22 08:48:26 -07:00
|
|
|
break; /* i64 only */
|
2012-12-05 20:51:25 -08:00
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
static ALint DoubleValsByProp(ALenum prop)
|
|
|
|
{
|
2015-09-22 08:48:26 -07:00
|
|
|
if(prop != (ALenum)((SourceProp)prop))
|
2012-12-05 20:51:25 -08:00
|
|
|
return 0;
|
2015-09-22 08:48:26 -07:00
|
|
|
switch((SourceProp)prop)
|
2012-12-05 20:51:25 -08:00
|
|
|
{
|
2015-09-22 08:48:26 -07:00
|
|
|
case AL_PITCH:
|
|
|
|
case AL_GAIN:
|
|
|
|
case AL_MIN_GAIN:
|
|
|
|
case AL_MAX_GAIN:
|
|
|
|
case AL_MAX_DISTANCE:
|
|
|
|
case AL_ROLLOFF_FACTOR:
|
|
|
|
case AL_DOPPLER_FACTOR:
|
|
|
|
case AL_CONE_OUTER_GAIN:
|
|
|
|
case AL_SEC_OFFSET:
|
|
|
|
case AL_SAMPLE_OFFSET:
|
|
|
|
case AL_BYTE_OFFSET:
|
|
|
|
case AL_CONE_INNER_ANGLE:
|
|
|
|
case AL_CONE_OUTER_ANGLE:
|
|
|
|
case AL_REFERENCE_DISTANCE:
|
|
|
|
case AL_CONE_OUTER_GAINHF:
|
|
|
|
case AL_AIR_ABSORPTION_FACTOR:
|
|
|
|
case AL_ROOM_ROLLOFF_FACTOR:
|
|
|
|
case AL_DIRECT_FILTER_GAINHF_AUTO:
|
|
|
|
case AL_AUXILIARY_SEND_FILTER_GAIN_AUTO:
|
|
|
|
case AL_AUXILIARY_SEND_FILTER_GAINHF_AUTO:
|
|
|
|
case AL_DIRECT_CHANNELS_SOFT:
|
|
|
|
case AL_DISTANCE_MODEL:
|
|
|
|
case AL_SOURCE_RELATIVE:
|
|
|
|
case AL_LOOPING:
|
|
|
|
case AL_SOURCE_STATE:
|
|
|
|
case AL_BUFFERS_QUEUED:
|
|
|
|
case AL_BUFFERS_PROCESSED:
|
|
|
|
case AL_SOURCE_TYPE:
|
2016-04-25 00:30:47 -07:00
|
|
|
case AL_SOURCE_RADIUS:
|
2017-04-21 15:48:39 -07:00
|
|
|
case AL_SOURCE_RESAMPLER_SOFT:
|
2017-05-05 02:41:34 -07:00
|
|
|
case AL_SOURCE_SPATIALIZE_SOFT:
|
2012-12-05 20:51:25 -08:00
|
|
|
return 1;
|
|
|
|
|
2015-09-22 08:48:26 -07:00
|
|
|
case AL_SEC_OFFSET_LATENCY_SOFT:
|
2017-12-03 14:45:19 -08:00
|
|
|
case AL_SEC_OFFSET_CLOCK_SOFT:
|
2016-03-25 14:40:44 -07:00
|
|
|
case AL_STEREO_ANGLES:
|
2012-12-05 20:51:25 -08:00
|
|
|
return 2;
|
|
|
|
|
2015-09-22 08:48:26 -07:00
|
|
|
case AL_POSITION:
|
|
|
|
case AL_VELOCITY:
|
|
|
|
case AL_DIRECTION:
|
2012-12-05 20:51:25 -08:00
|
|
|
return 3;
|
2014-10-31 22:43:13 -07:00
|
|
|
|
2015-09-22 08:48:26 -07:00
|
|
|
case AL_ORIENTATION:
|
2014-10-31 22:43:13 -07:00
|
|
|
return 6;
|
2015-09-22 08:48:26 -07:00
|
|
|
|
|
|
|
case AL_BUFFER:
|
|
|
|
case AL_DIRECT_FILTER:
|
|
|
|
case AL_AUXILIARY_SEND_FILTER:
|
|
|
|
break; /* i/i64 only */
|
|
|
|
case AL_SAMPLE_OFFSET_LATENCY_SOFT:
|
2017-12-03 14:45:19 -08:00
|
|
|
case AL_SAMPLE_OFFSET_CLOCK_SOFT:
|
2015-09-22 08:48:26 -07:00
|
|
|
break; /* i64 only */
|
2012-12-05 20:51:25 -08:00
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
2012-08-28 22:16:55 -07:00
|
|
|
|
2012-12-05 19:58:01 -08:00
|
|
|
static ALint IntValsByProp(ALenum prop)
|
|
|
|
{
|
2015-09-22 08:48:26 -07:00
|
|
|
if(prop != (ALenum)((SourceProp)prop))
|
2012-12-05 19:58:01 -08:00
|
|
|
return 0;
|
2015-09-22 08:48:26 -07:00
|
|
|
switch((SourceProp)prop)
|
2012-12-05 19:58:01 -08:00
|
|
|
{
|
2015-09-22 08:48:26 -07:00
|
|
|
case AL_PITCH:
|
|
|
|
case AL_GAIN:
|
|
|
|
case AL_MIN_GAIN:
|
|
|
|
case AL_MAX_GAIN:
|
|
|
|
case AL_MAX_DISTANCE:
|
|
|
|
case AL_ROLLOFF_FACTOR:
|
|
|
|
case AL_DOPPLER_FACTOR:
|
|
|
|
case AL_CONE_OUTER_GAIN:
|
|
|
|
case AL_SEC_OFFSET:
|
|
|
|
case AL_SAMPLE_OFFSET:
|
|
|
|
case AL_BYTE_OFFSET:
|
|
|
|
case AL_CONE_INNER_ANGLE:
|
|
|
|
case AL_CONE_OUTER_ANGLE:
|
|
|
|
case AL_REFERENCE_DISTANCE:
|
|
|
|
case AL_CONE_OUTER_GAINHF:
|
|
|
|
case AL_AIR_ABSORPTION_FACTOR:
|
|
|
|
case AL_ROOM_ROLLOFF_FACTOR:
|
|
|
|
case AL_DIRECT_FILTER_GAINHF_AUTO:
|
|
|
|
case AL_AUXILIARY_SEND_FILTER_GAIN_AUTO:
|
|
|
|
case AL_AUXILIARY_SEND_FILTER_GAINHF_AUTO:
|
|
|
|
case AL_DIRECT_CHANNELS_SOFT:
|
|
|
|
case AL_DISTANCE_MODEL:
|
|
|
|
case AL_SOURCE_RELATIVE:
|
|
|
|
case AL_LOOPING:
|
|
|
|
case AL_BUFFER:
|
|
|
|
case AL_SOURCE_STATE:
|
|
|
|
case AL_BUFFERS_QUEUED:
|
|
|
|
case AL_BUFFERS_PROCESSED:
|
|
|
|
case AL_SOURCE_TYPE:
|
|
|
|
case AL_DIRECT_FILTER:
|
2016-04-25 00:30:47 -07:00
|
|
|
case AL_SOURCE_RADIUS:
|
2017-04-21 15:48:39 -07:00
|
|
|
case AL_SOURCE_RESAMPLER_SOFT:
|
2017-05-05 02:41:34 -07:00
|
|
|
case AL_SOURCE_SPATIALIZE_SOFT:
|
2012-12-05 19:58:01 -08:00
|
|
|
return 1;
|
|
|
|
|
2015-09-22 08:48:26 -07:00
|
|
|
case AL_POSITION:
|
|
|
|
case AL_VELOCITY:
|
|
|
|
case AL_DIRECTION:
|
|
|
|
case AL_AUXILIARY_SEND_FILTER:
|
2012-12-05 19:58:01 -08:00
|
|
|
return 3;
|
|
|
|
|
2015-09-22 08:48:26 -07:00
|
|
|
case AL_ORIENTATION:
|
2014-10-31 22:43:13 -07:00
|
|
|
return 6;
|
|
|
|
|
2015-09-22 08:48:26 -07:00
|
|
|
case AL_SAMPLE_OFFSET_LATENCY_SOFT:
|
2017-12-03 14:45:19 -08:00
|
|
|
case AL_SAMPLE_OFFSET_CLOCK_SOFT:
|
2012-12-05 19:58:01 -08:00
|
|
|
break; /* i64 only */
|
2015-09-22 08:48:26 -07:00
|
|
|
case AL_SEC_OFFSET_LATENCY_SOFT:
|
2017-12-03 14:45:19 -08:00
|
|
|
case AL_SEC_OFFSET_CLOCK_SOFT:
|
2015-09-22 08:48:26 -07:00
|
|
|
break; /* Double only */
|
2016-03-25 14:40:44 -07:00
|
|
|
case AL_STEREO_ANGLES:
|
|
|
|
break; /* Float/double only */
|
2012-12-05 19:58:01 -08:00
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
static ALint Int64ValsByProp(ALenum prop)
|
|
|
|
{
|
2015-09-22 08:48:26 -07:00
|
|
|
if(prop != (ALenum)((SourceProp)prop))
|
2012-12-05 19:58:01 -08:00
|
|
|
return 0;
|
2015-09-22 08:48:26 -07:00
|
|
|
switch((SourceProp)prop)
|
2012-12-05 19:58:01 -08:00
|
|
|
{
|
2015-09-22 08:48:26 -07:00
|
|
|
case AL_PITCH:
|
|
|
|
case AL_GAIN:
|
|
|
|
case AL_MIN_GAIN:
|
|
|
|
case AL_MAX_GAIN:
|
|
|
|
case AL_MAX_DISTANCE:
|
|
|
|
case AL_ROLLOFF_FACTOR:
|
|
|
|
case AL_DOPPLER_FACTOR:
|
|
|
|
case AL_CONE_OUTER_GAIN:
|
|
|
|
case AL_SEC_OFFSET:
|
|
|
|
case AL_SAMPLE_OFFSET:
|
|
|
|
case AL_BYTE_OFFSET:
|
|
|
|
case AL_CONE_INNER_ANGLE:
|
|
|
|
case AL_CONE_OUTER_ANGLE:
|
|
|
|
case AL_REFERENCE_DISTANCE:
|
|
|
|
case AL_CONE_OUTER_GAINHF:
|
|
|
|
case AL_AIR_ABSORPTION_FACTOR:
|
|
|
|
case AL_ROOM_ROLLOFF_FACTOR:
|
|
|
|
case AL_DIRECT_FILTER_GAINHF_AUTO:
|
|
|
|
case AL_AUXILIARY_SEND_FILTER_GAIN_AUTO:
|
|
|
|
case AL_AUXILIARY_SEND_FILTER_GAINHF_AUTO:
|
|
|
|
case AL_DIRECT_CHANNELS_SOFT:
|
|
|
|
case AL_DISTANCE_MODEL:
|
|
|
|
case AL_SOURCE_RELATIVE:
|
|
|
|
case AL_LOOPING:
|
|
|
|
case AL_BUFFER:
|
|
|
|
case AL_SOURCE_STATE:
|
|
|
|
case AL_BUFFERS_QUEUED:
|
|
|
|
case AL_BUFFERS_PROCESSED:
|
|
|
|
case AL_SOURCE_TYPE:
|
|
|
|
case AL_DIRECT_FILTER:
|
2016-04-25 00:30:47 -07:00
|
|
|
case AL_SOURCE_RADIUS:
|
2017-04-21 15:48:39 -07:00
|
|
|
case AL_SOURCE_RESAMPLER_SOFT:
|
2017-05-05 02:41:34 -07:00
|
|
|
case AL_SOURCE_SPATIALIZE_SOFT:
|
2012-12-05 19:58:01 -08:00
|
|
|
return 1;
|
|
|
|
|
2015-09-22 08:48:26 -07:00
|
|
|
case AL_SAMPLE_OFFSET_LATENCY_SOFT:
|
2017-12-03 14:45:19 -08:00
|
|
|
case AL_SAMPLE_OFFSET_CLOCK_SOFT:
|
2012-12-05 19:58:01 -08:00
|
|
|
return 2;
|
|
|
|
|
2015-09-22 08:48:26 -07:00
|
|
|
case AL_POSITION:
|
|
|
|
case AL_VELOCITY:
|
|
|
|
case AL_DIRECTION:
|
|
|
|
case AL_AUXILIARY_SEND_FILTER:
|
2012-12-05 19:58:01 -08:00
|
|
|
return 3;
|
2014-10-31 22:43:13 -07:00
|
|
|
|
2015-09-22 08:48:26 -07:00
|
|
|
case AL_ORIENTATION:
|
2014-10-31 22:43:13 -07:00
|
|
|
return 6;
|
2015-09-22 08:48:26 -07:00
|
|
|
|
|
|
|
case AL_SEC_OFFSET_LATENCY_SOFT:
|
2017-12-03 14:45:19 -08:00
|
|
|
case AL_SEC_OFFSET_CLOCK_SOFT:
|
2015-09-22 08:48:26 -07:00
|
|
|
break; /* Double only */
|
2016-03-25 14:40:44 -07:00
|
|
|
case AL_STEREO_ANGLES:
|
|
|
|
break; /* Float/double only */
|
2012-12-05 19:58:01 -08:00
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2012-08-28 22:16:55 -07:00
|
|
|
#define CHECKVAL(x) do { \
|
|
|
|
if(!(x)) \
|
2018-01-24 17:07:01 -08:00
|
|
|
{ \
|
2018-01-25 15:59:59 -08:00
|
|
|
alSetError(Context, AL_INVALID_VALUE, "Value out of range"); \
|
2018-01-24 17:07:01 -08:00
|
|
|
return AL_FALSE; \
|
|
|
|
} \
|
2012-08-28 22:16:55 -07:00
|
|
|
} while(0)
|
|
|
|
|
Provide asynchronous property updates for sources
This necessitates a change in how source updates are handled. Rather than just
being able to update sources when a dependent object state is changed (e.g. a
listener gain change), now all source updates must be proactively provided.
Consequently, apps that do not utilize any deferring (AL_SOFT_defer_updates or
alcSuspendContext/alcProcessContext) may utilize more CPU since it'll be
filling out more update containers for the mixer thread to use.
The upside is that there's less blocking between the app's calling thread and
the mixer thread, particularly for vectors and other multi-value properties
(filters and sends). Deferring behavior when used is also improved, since
updates that shouldn't be applied yet are simply not provided. And when they
are provided, the mixer doesn't have to ignore them, meaning the actual
deferring of a context doesn't have to synchrnously force an update -- the
process call will send any pending updates, which the mixer will apply even if
another deferral occurs before the mixer runs, because it'll still be there
waiting on the next mixer invocation.
There is one slight bug introduced by this commit. When a listener change is
made, or changes to multiple sources while updates are being deferred, it is
possible for the mixer to run while the sources are prepping their updates,
causing some of the source updates to be seen before the other. This will be
fixed in short order.
2016-05-14 23:43:40 -07:00
|
|
|
#define DO_UPDATEPROPS() do { \
|
2017-04-17 21:16:01 -07:00
|
|
|
ALvoice *voice; \
|
|
|
|
if(SourceShouldUpdate(Source, Context) && \
|
|
|
|
(voice=GetSourceVoice(Source, Context)) != NULL) \
|
2017-09-27 11:13:18 -07:00
|
|
|
UpdateSourceProps(Source, voice, device->NumAuxSends, Context); \
|
2016-11-23 01:31:13 -08:00
|
|
|
else \
|
2018-11-13 20:26:32 -08:00
|
|
|
ATOMIC_STORE(&Source->PropsClean, AL_FALSE, almemory_order_release); \
|
Provide asynchronous property updates for sources
This necessitates a change in how source updates are handled. Rather than just
being able to update sources when a dependent object state is changed (e.g. a
listener gain change), now all source updates must be proactively provided.
Consequently, apps that do not utilize any deferring (AL_SOFT_defer_updates or
alcSuspendContext/alcProcessContext) may utilize more CPU since it'll be
filling out more update containers for the mixer thread to use.
The upside is that there's less blocking between the app's calling thread and
the mixer thread, particularly for vectors and other multi-value properties
(filters and sends). Deferring behavior when used is also improved, since
updates that shouldn't be applied yet are simply not provided. And when they
are provided, the mixer doesn't have to ignore them, meaning the actual
deferring of a context doesn't have to synchrnously force an update -- the
process call will send any pending updates, which the mixer will apply even if
another deferral occurs before the mixer runs, because it'll still be there
waiting on the next mixer invocation.
There is one slight bug introduced by this commit. When a listener change is
made, or changes to multiple sources while updates are being deferred, it is
possible for the mixer to run while the sources are prepping their updates,
causing some of the source updates to be seen before the other. This will be
fixed in short order.
2016-05-14 23:43:40 -07:00
|
|
|
} while(0)
|
|
|
|
|
2015-09-22 08:48:26 -07:00
|
|
|
static ALboolean SetSourcefv(ALsource *Source, ALCcontext *Context, SourceProp prop, const ALfloat *values)
|
2012-08-28 22:16:55 -07:00
|
|
|
{
|
Provide asynchronous property updates for sources
This necessitates a change in how source updates are handled. Rather than just
being able to update sources when a dependent object state is changed (e.g. a
listener gain change), now all source updates must be proactively provided.
Consequently, apps that do not utilize any deferring (AL_SOFT_defer_updates or
alcSuspendContext/alcProcessContext) may utilize more CPU since it'll be
filling out more update containers for the mixer thread to use.
The upside is that there's less blocking between the app's calling thread and
the mixer thread, particularly for vectors and other multi-value properties
(filters and sends). Deferring behavior when used is also improved, since
updates that shouldn't be applied yet are simply not provided. And when they
are provided, the mixer doesn't have to ignore them, meaning the actual
deferring of a context doesn't have to synchrnously force an update -- the
process call will send any pending updates, which the mixer will apply even if
another deferral occurs before the mixer runs, because it'll still be there
waiting on the next mixer invocation.
There is one slight bug introduced by this commit. When a listener change is
made, or changes to multiple sources while updates are being deferred, it is
possible for the mixer to run while the sources are prepping their updates,
causing some of the source updates to be seen before the other. This will be
fixed in short order.
2016-05-14 23:43:40 -07:00
|
|
|
ALCdevice *device = Context->Device;
|
2012-12-05 09:22:38 -08:00
|
|
|
ALint ival;
|
|
|
|
|
|
|
|
switch(prop)
|
2012-08-28 22:16:55 -07:00
|
|
|
{
|
2015-09-22 08:48:26 -07:00
|
|
|
case AL_SEC_OFFSET_LATENCY_SOFT:
|
2017-12-03 14:45:19 -08:00
|
|
|
case AL_SEC_OFFSET_CLOCK_SOFT:
|
2015-09-22 08:48:26 -07:00
|
|
|
/* Query only */
|
2018-01-25 15:59:59 -08:00
|
|
|
SETERR_RETURN(Context, AL_INVALID_OPERATION, AL_FALSE,
|
|
|
|
"Setting read-only source property 0x%04x", prop);
|
2015-09-22 08:48:26 -07:00
|
|
|
|
2012-08-28 22:16:55 -07:00
|
|
|
case AL_PITCH:
|
|
|
|
CHECKVAL(*values >= 0.0f);
|
|
|
|
|
|
|
|
Source->Pitch = *values;
|
Provide asynchronous property updates for sources
This necessitates a change in how source updates are handled. Rather than just
being able to update sources when a dependent object state is changed (e.g. a
listener gain change), now all source updates must be proactively provided.
Consequently, apps that do not utilize any deferring (AL_SOFT_defer_updates or
alcSuspendContext/alcProcessContext) may utilize more CPU since it'll be
filling out more update containers for the mixer thread to use.
The upside is that there's less blocking between the app's calling thread and
the mixer thread, particularly for vectors and other multi-value properties
(filters and sends). Deferring behavior when used is also improved, since
updates that shouldn't be applied yet are simply not provided. And when they
are provided, the mixer doesn't have to ignore them, meaning the actual
deferring of a context doesn't have to synchrnously force an update -- the
process call will send any pending updates, which the mixer will apply even if
another deferral occurs before the mixer runs, because it'll still be there
waiting on the next mixer invocation.
There is one slight bug introduced by this commit. When a listener change is
made, or changes to multiple sources while updates are being deferred, it is
possible for the mixer to run while the sources are prepping their updates,
causing some of the source updates to be seen before the other. This will be
fixed in short order.
2016-05-14 23:43:40 -07:00
|
|
|
DO_UPDATEPROPS();
|
2013-10-07 09:54:35 -07:00
|
|
|
return AL_TRUE;
|
2012-08-28 22:16:55 -07:00
|
|
|
|
|
|
|
case AL_CONE_INNER_ANGLE:
|
|
|
|
CHECKVAL(*values >= 0.0f && *values <= 360.0f);
|
|
|
|
|
|
|
|
Source->InnerAngle = *values;
|
Provide asynchronous property updates for sources
This necessitates a change in how source updates are handled. Rather than just
being able to update sources when a dependent object state is changed (e.g. a
listener gain change), now all source updates must be proactively provided.
Consequently, apps that do not utilize any deferring (AL_SOFT_defer_updates or
alcSuspendContext/alcProcessContext) may utilize more CPU since it'll be
filling out more update containers for the mixer thread to use.
The upside is that there's less blocking between the app's calling thread and
the mixer thread, particularly for vectors and other multi-value properties
(filters and sends). Deferring behavior when used is also improved, since
updates that shouldn't be applied yet are simply not provided. And when they
are provided, the mixer doesn't have to ignore them, meaning the actual
deferring of a context doesn't have to synchrnously force an update -- the
process call will send any pending updates, which the mixer will apply even if
another deferral occurs before the mixer runs, because it'll still be there
waiting on the next mixer invocation.
There is one slight bug introduced by this commit. When a listener change is
made, or changes to multiple sources while updates are being deferred, it is
possible for the mixer to run while the sources are prepping their updates,
causing some of the source updates to be seen before the other. This will be
fixed in short order.
2016-05-14 23:43:40 -07:00
|
|
|
DO_UPDATEPROPS();
|
2013-10-07 09:54:35 -07:00
|
|
|
return AL_TRUE;
|
2012-08-28 22:16:55 -07:00
|
|
|
|
|
|
|
case AL_CONE_OUTER_ANGLE:
|
|
|
|
CHECKVAL(*values >= 0.0f && *values <= 360.0f);
|
|
|
|
|
|
|
|
Source->OuterAngle = *values;
|
Provide asynchronous property updates for sources
This necessitates a change in how source updates are handled. Rather than just
being able to update sources when a dependent object state is changed (e.g. a
listener gain change), now all source updates must be proactively provided.
Consequently, apps that do not utilize any deferring (AL_SOFT_defer_updates or
alcSuspendContext/alcProcessContext) may utilize more CPU since it'll be
filling out more update containers for the mixer thread to use.
The upside is that there's less blocking between the app's calling thread and
the mixer thread, particularly for vectors and other multi-value properties
(filters and sends). Deferring behavior when used is also improved, since
updates that shouldn't be applied yet are simply not provided. And when they
are provided, the mixer doesn't have to ignore them, meaning the actual
deferring of a context doesn't have to synchrnously force an update -- the
process call will send any pending updates, which the mixer will apply even if
another deferral occurs before the mixer runs, because it'll still be there
waiting on the next mixer invocation.
There is one slight bug introduced by this commit. When a listener change is
made, or changes to multiple sources while updates are being deferred, it is
possible for the mixer to run while the sources are prepping their updates,
causing some of the source updates to be seen before the other. This will be
fixed in short order.
2016-05-14 23:43:40 -07:00
|
|
|
DO_UPDATEPROPS();
|
2013-10-07 09:54:35 -07:00
|
|
|
return AL_TRUE;
|
2012-08-28 22:16:55 -07:00
|
|
|
|
|
|
|
case AL_GAIN:
|
|
|
|
CHECKVAL(*values >= 0.0f);
|
|
|
|
|
|
|
|
Source->Gain = *values;
|
Provide asynchronous property updates for sources
This necessitates a change in how source updates are handled. Rather than just
being able to update sources when a dependent object state is changed (e.g. a
listener gain change), now all source updates must be proactively provided.
Consequently, apps that do not utilize any deferring (AL_SOFT_defer_updates or
alcSuspendContext/alcProcessContext) may utilize more CPU since it'll be
filling out more update containers for the mixer thread to use.
The upside is that there's less blocking between the app's calling thread and
the mixer thread, particularly for vectors and other multi-value properties
(filters and sends). Deferring behavior when used is also improved, since
updates that shouldn't be applied yet are simply not provided. And when they
are provided, the mixer doesn't have to ignore them, meaning the actual
deferring of a context doesn't have to synchrnously force an update -- the
process call will send any pending updates, which the mixer will apply even if
another deferral occurs before the mixer runs, because it'll still be there
waiting on the next mixer invocation.
There is one slight bug introduced by this commit. When a listener change is
made, or changes to multiple sources while updates are being deferred, it is
possible for the mixer to run while the sources are prepping their updates,
causing some of the source updates to be seen before the other. This will be
fixed in short order.
2016-05-14 23:43:40 -07:00
|
|
|
DO_UPDATEPROPS();
|
2013-10-07 09:54:35 -07:00
|
|
|
return AL_TRUE;
|
2012-08-28 22:16:55 -07:00
|
|
|
|
|
|
|
case AL_MAX_DISTANCE:
|
|
|
|
CHECKVAL(*values >= 0.0f);
|
|
|
|
|
|
|
|
Source->MaxDistance = *values;
|
Provide asynchronous property updates for sources
This necessitates a change in how source updates are handled. Rather than just
being able to update sources when a dependent object state is changed (e.g. a
listener gain change), now all source updates must be proactively provided.
Consequently, apps that do not utilize any deferring (AL_SOFT_defer_updates or
alcSuspendContext/alcProcessContext) may utilize more CPU since it'll be
filling out more update containers for the mixer thread to use.
The upside is that there's less blocking between the app's calling thread and
the mixer thread, particularly for vectors and other multi-value properties
(filters and sends). Deferring behavior when used is also improved, since
updates that shouldn't be applied yet are simply not provided. And when they
are provided, the mixer doesn't have to ignore them, meaning the actual
deferring of a context doesn't have to synchrnously force an update -- the
process call will send any pending updates, which the mixer will apply even if
another deferral occurs before the mixer runs, because it'll still be there
waiting on the next mixer invocation.
There is one slight bug introduced by this commit. When a listener change is
made, or changes to multiple sources while updates are being deferred, it is
possible for the mixer to run while the sources are prepping their updates,
causing some of the source updates to be seen before the other. This will be
fixed in short order.
2016-05-14 23:43:40 -07:00
|
|
|
DO_UPDATEPROPS();
|
2013-10-07 09:54:35 -07:00
|
|
|
return AL_TRUE;
|
2012-08-28 22:16:55 -07:00
|
|
|
|
|
|
|
case AL_ROLLOFF_FACTOR:
|
|
|
|
CHECKVAL(*values >= 0.0f);
|
|
|
|
|
2017-05-05 03:19:50 -07:00
|
|
|
Source->RolloffFactor = *values;
|
Provide asynchronous property updates for sources
This necessitates a change in how source updates are handled. Rather than just
being able to update sources when a dependent object state is changed (e.g. a
listener gain change), now all source updates must be proactively provided.
Consequently, apps that do not utilize any deferring (AL_SOFT_defer_updates or
alcSuspendContext/alcProcessContext) may utilize more CPU since it'll be
filling out more update containers for the mixer thread to use.
The upside is that there's less blocking between the app's calling thread and
the mixer thread, particularly for vectors and other multi-value properties
(filters and sends). Deferring behavior when used is also improved, since
updates that shouldn't be applied yet are simply not provided. And when they
are provided, the mixer doesn't have to ignore them, meaning the actual
deferring of a context doesn't have to synchrnously force an update -- the
process call will send any pending updates, which the mixer will apply even if
another deferral occurs before the mixer runs, because it'll still be there
waiting on the next mixer invocation.
There is one slight bug introduced by this commit. When a listener change is
made, or changes to multiple sources while updates are being deferred, it is
possible for the mixer to run while the sources are prepping their updates,
causing some of the source updates to be seen before the other. This will be
fixed in short order.
2016-05-14 23:43:40 -07:00
|
|
|
DO_UPDATEPROPS();
|
2013-10-07 09:54:35 -07:00
|
|
|
return AL_TRUE;
|
2012-08-28 22:16:55 -07:00
|
|
|
|
|
|
|
case AL_REFERENCE_DISTANCE:
|
|
|
|
CHECKVAL(*values >= 0.0f);
|
|
|
|
|
|
|
|
Source->RefDistance = *values;
|
Provide asynchronous property updates for sources
This necessitates a change in how source updates are handled. Rather than just
being able to update sources when a dependent object state is changed (e.g. a
listener gain change), now all source updates must be proactively provided.
Consequently, apps that do not utilize any deferring (AL_SOFT_defer_updates or
alcSuspendContext/alcProcessContext) may utilize more CPU since it'll be
filling out more update containers for the mixer thread to use.
The upside is that there's less blocking between the app's calling thread and
the mixer thread, particularly for vectors and other multi-value properties
(filters and sends). Deferring behavior when used is also improved, since
updates that shouldn't be applied yet are simply not provided. And when they
are provided, the mixer doesn't have to ignore them, meaning the actual
deferring of a context doesn't have to synchrnously force an update -- the
process call will send any pending updates, which the mixer will apply even if
another deferral occurs before the mixer runs, because it'll still be there
waiting on the next mixer invocation.
There is one slight bug introduced by this commit. When a listener change is
made, or changes to multiple sources while updates are being deferred, it is
possible for the mixer to run while the sources are prepping their updates,
causing some of the source updates to be seen before the other. This will be
fixed in short order.
2016-05-14 23:43:40 -07:00
|
|
|
DO_UPDATEPROPS();
|
2013-10-07 09:54:35 -07:00
|
|
|
return AL_TRUE;
|
2012-08-28 22:16:55 -07:00
|
|
|
|
|
|
|
case AL_MIN_GAIN:
|
2016-08-29 01:53:52 -07:00
|
|
|
CHECKVAL(*values >= 0.0f);
|
2012-08-28 22:16:55 -07:00
|
|
|
|
|
|
|
Source->MinGain = *values;
|
Provide asynchronous property updates for sources
This necessitates a change in how source updates are handled. Rather than just
being able to update sources when a dependent object state is changed (e.g. a
listener gain change), now all source updates must be proactively provided.
Consequently, apps that do not utilize any deferring (AL_SOFT_defer_updates or
alcSuspendContext/alcProcessContext) may utilize more CPU since it'll be
filling out more update containers for the mixer thread to use.
The upside is that there's less blocking between the app's calling thread and
the mixer thread, particularly for vectors and other multi-value properties
(filters and sends). Deferring behavior when used is also improved, since
updates that shouldn't be applied yet are simply not provided. And when they
are provided, the mixer doesn't have to ignore them, meaning the actual
deferring of a context doesn't have to synchrnously force an update -- the
process call will send any pending updates, which the mixer will apply even if
another deferral occurs before the mixer runs, because it'll still be there
waiting on the next mixer invocation.
There is one slight bug introduced by this commit. When a listener change is
made, or changes to multiple sources while updates are being deferred, it is
possible for the mixer to run while the sources are prepping their updates,
causing some of the source updates to be seen before the other. This will be
fixed in short order.
2016-05-14 23:43:40 -07:00
|
|
|
DO_UPDATEPROPS();
|
2013-10-07 09:54:35 -07:00
|
|
|
return AL_TRUE;
|
2012-08-28 22:16:55 -07:00
|
|
|
|
|
|
|
case AL_MAX_GAIN:
|
2016-08-29 01:53:52 -07:00
|
|
|
CHECKVAL(*values >= 0.0f);
|
2012-08-28 22:16:55 -07:00
|
|
|
|
|
|
|
Source->MaxGain = *values;
|
Provide asynchronous property updates for sources
This necessitates a change in how source updates are handled. Rather than just
being able to update sources when a dependent object state is changed (e.g. a
listener gain change), now all source updates must be proactively provided.
Consequently, apps that do not utilize any deferring (AL_SOFT_defer_updates or
alcSuspendContext/alcProcessContext) may utilize more CPU since it'll be
filling out more update containers for the mixer thread to use.
The upside is that there's less blocking between the app's calling thread and
the mixer thread, particularly for vectors and other multi-value properties
(filters and sends). Deferring behavior when used is also improved, since
updates that shouldn't be applied yet are simply not provided. And when they
are provided, the mixer doesn't have to ignore them, meaning the actual
deferring of a context doesn't have to synchrnously force an update -- the
process call will send any pending updates, which the mixer will apply even if
another deferral occurs before the mixer runs, because it'll still be there
waiting on the next mixer invocation.
There is one slight bug introduced by this commit. When a listener change is
made, or changes to multiple sources while updates are being deferred, it is
possible for the mixer to run while the sources are prepping their updates,
causing some of the source updates to be seen before the other. This will be
fixed in short order.
2016-05-14 23:43:40 -07:00
|
|
|
DO_UPDATEPROPS();
|
2013-10-07 09:54:35 -07:00
|
|
|
return AL_TRUE;
|
2012-08-28 22:16:55 -07:00
|
|
|
|
|
|
|
case AL_CONE_OUTER_GAIN:
|
|
|
|
CHECKVAL(*values >= 0.0f && *values <= 1.0f);
|
|
|
|
|
|
|
|
Source->OuterGain = *values;
|
Provide asynchronous property updates for sources
This necessitates a change in how source updates are handled. Rather than just
being able to update sources when a dependent object state is changed (e.g. a
listener gain change), now all source updates must be proactively provided.
Consequently, apps that do not utilize any deferring (AL_SOFT_defer_updates or
alcSuspendContext/alcProcessContext) may utilize more CPU since it'll be
filling out more update containers for the mixer thread to use.
The upside is that there's less blocking between the app's calling thread and
the mixer thread, particularly for vectors and other multi-value properties
(filters and sends). Deferring behavior when used is also improved, since
updates that shouldn't be applied yet are simply not provided. And when they
are provided, the mixer doesn't have to ignore them, meaning the actual
deferring of a context doesn't have to synchrnously force an update -- the
process call will send any pending updates, which the mixer will apply even if
another deferral occurs before the mixer runs, because it'll still be there
waiting on the next mixer invocation.
There is one slight bug introduced by this commit. When a listener change is
made, or changes to multiple sources while updates are being deferred, it is
possible for the mixer to run while the sources are prepping their updates,
causing some of the source updates to be seen before the other. This will be
fixed in short order.
2016-05-14 23:43:40 -07:00
|
|
|
DO_UPDATEPROPS();
|
2013-10-07 09:54:35 -07:00
|
|
|
return AL_TRUE;
|
2012-08-28 22:16:55 -07:00
|
|
|
|
|
|
|
case AL_CONE_OUTER_GAINHF:
|
|
|
|
CHECKVAL(*values >= 0.0f && *values <= 1.0f);
|
|
|
|
|
|
|
|
Source->OuterGainHF = *values;
|
Provide asynchronous property updates for sources
This necessitates a change in how source updates are handled. Rather than just
being able to update sources when a dependent object state is changed (e.g. a
listener gain change), now all source updates must be proactively provided.
Consequently, apps that do not utilize any deferring (AL_SOFT_defer_updates or
alcSuspendContext/alcProcessContext) may utilize more CPU since it'll be
filling out more update containers for the mixer thread to use.
The upside is that there's less blocking between the app's calling thread and
the mixer thread, particularly for vectors and other multi-value properties
(filters and sends). Deferring behavior when used is also improved, since
updates that shouldn't be applied yet are simply not provided. And when they
are provided, the mixer doesn't have to ignore them, meaning the actual
deferring of a context doesn't have to synchrnously force an update -- the
process call will send any pending updates, which the mixer will apply even if
another deferral occurs before the mixer runs, because it'll still be there
waiting on the next mixer invocation.
There is one slight bug introduced by this commit. When a listener change is
made, or changes to multiple sources while updates are being deferred, it is
possible for the mixer to run while the sources are prepping their updates,
causing some of the source updates to be seen before the other. This will be
fixed in short order.
2016-05-14 23:43:40 -07:00
|
|
|
DO_UPDATEPROPS();
|
2013-10-07 09:54:35 -07:00
|
|
|
return AL_TRUE;
|
2012-08-28 22:16:55 -07:00
|
|
|
|
|
|
|
case AL_AIR_ABSORPTION_FACTOR:
|
|
|
|
CHECKVAL(*values >= 0.0f && *values <= 10.0f);
|
|
|
|
|
|
|
|
Source->AirAbsorptionFactor = *values;
|
Provide asynchronous property updates for sources
This necessitates a change in how source updates are handled. Rather than just
being able to update sources when a dependent object state is changed (e.g. a
listener gain change), now all source updates must be proactively provided.
Consequently, apps that do not utilize any deferring (AL_SOFT_defer_updates or
alcSuspendContext/alcProcessContext) may utilize more CPU since it'll be
filling out more update containers for the mixer thread to use.
The upside is that there's less blocking between the app's calling thread and
the mixer thread, particularly for vectors and other multi-value properties
(filters and sends). Deferring behavior when used is also improved, since
updates that shouldn't be applied yet are simply not provided. And when they
are provided, the mixer doesn't have to ignore them, meaning the actual
deferring of a context doesn't have to synchrnously force an update -- the
process call will send any pending updates, which the mixer will apply even if
another deferral occurs before the mixer runs, because it'll still be there
waiting on the next mixer invocation.
There is one slight bug introduced by this commit. When a listener change is
made, or changes to multiple sources while updates are being deferred, it is
possible for the mixer to run while the sources are prepping their updates,
causing some of the source updates to be seen before the other. This will be
fixed in short order.
2016-05-14 23:43:40 -07:00
|
|
|
DO_UPDATEPROPS();
|
2013-10-07 09:54:35 -07:00
|
|
|
return AL_TRUE;
|
2012-08-28 22:16:55 -07:00
|
|
|
|
|
|
|
case AL_ROOM_ROLLOFF_FACTOR:
|
|
|
|
CHECKVAL(*values >= 0.0f && *values <= 10.0f);
|
|
|
|
|
|
|
|
Source->RoomRolloffFactor = *values;
|
Provide asynchronous property updates for sources
This necessitates a change in how source updates are handled. Rather than just
being able to update sources when a dependent object state is changed (e.g. a
listener gain change), now all source updates must be proactively provided.
Consequently, apps that do not utilize any deferring (AL_SOFT_defer_updates or
alcSuspendContext/alcProcessContext) may utilize more CPU since it'll be
filling out more update containers for the mixer thread to use.
The upside is that there's less blocking between the app's calling thread and
the mixer thread, particularly for vectors and other multi-value properties
(filters and sends). Deferring behavior when used is also improved, since
updates that shouldn't be applied yet are simply not provided. And when they
are provided, the mixer doesn't have to ignore them, meaning the actual
deferring of a context doesn't have to synchrnously force an update -- the
process call will send any pending updates, which the mixer will apply even if
another deferral occurs before the mixer runs, because it'll still be there
waiting on the next mixer invocation.
There is one slight bug introduced by this commit. When a listener change is
made, or changes to multiple sources while updates are being deferred, it is
possible for the mixer to run while the sources are prepping their updates,
causing some of the source updates to be seen before the other. This will be
fixed in short order.
2016-05-14 23:43:40 -07:00
|
|
|
DO_UPDATEPROPS();
|
2013-10-07 09:54:35 -07:00
|
|
|
return AL_TRUE;
|
2012-08-28 22:16:55 -07:00
|
|
|
|
|
|
|
case AL_DOPPLER_FACTOR:
|
|
|
|
CHECKVAL(*values >= 0.0f && *values <= 1.0f);
|
|
|
|
|
|
|
|
Source->DopplerFactor = *values;
|
Provide asynchronous property updates for sources
This necessitates a change in how source updates are handled. Rather than just
being able to update sources when a dependent object state is changed (e.g. a
listener gain change), now all source updates must be proactively provided.
Consequently, apps that do not utilize any deferring (AL_SOFT_defer_updates or
alcSuspendContext/alcProcessContext) may utilize more CPU since it'll be
filling out more update containers for the mixer thread to use.
The upside is that there's less blocking between the app's calling thread and
the mixer thread, particularly for vectors and other multi-value properties
(filters and sends). Deferring behavior when used is also improved, since
updates that shouldn't be applied yet are simply not provided. And when they
are provided, the mixer doesn't have to ignore them, meaning the actual
deferring of a context doesn't have to synchrnously force an update -- the
process call will send any pending updates, which the mixer will apply even if
another deferral occurs before the mixer runs, because it'll still be there
waiting on the next mixer invocation.
There is one slight bug introduced by this commit. When a listener change is
made, or changes to multiple sources while updates are being deferred, it is
possible for the mixer to run while the sources are prepping their updates,
causing some of the source updates to be seen before the other. This will be
fixed in short order.
2016-05-14 23:43:40 -07:00
|
|
|
DO_UPDATEPROPS();
|
2013-10-07 09:54:35 -07:00
|
|
|
return AL_TRUE;
|
2012-08-28 22:16:55 -07:00
|
|
|
|
|
|
|
case AL_SEC_OFFSET:
|
|
|
|
case AL_SAMPLE_OFFSET:
|
|
|
|
case AL_BYTE_OFFSET:
|
|
|
|
CHECKVAL(*values >= 0.0f);
|
|
|
|
|
2012-12-05 09:22:38 -08:00
|
|
|
Source->OffsetType = prop;
|
2012-08-28 22:16:55 -07:00
|
|
|
Source->Offset = *values;
|
|
|
|
|
2017-03-19 13:48:40 -07:00
|
|
|
if(IsPlayingOrPaused(Source))
|
2012-08-28 22:16:55 -07:00
|
|
|
{
|
2017-02-27 15:35:15 -08:00
|
|
|
ALvoice *voice;
|
|
|
|
|
2017-02-07 19:32:49 -08:00
|
|
|
ALCdevice_Lock(Context->Device);
|
2017-02-24 01:47:34 -08:00
|
|
|
/* Double-check that the source is still playing while we have
|
|
|
|
* the lock.
|
|
|
|
*/
|
2017-02-27 15:35:15 -08:00
|
|
|
voice = GetSourceVoice(Source, Context);
|
|
|
|
if(voice)
|
2012-08-28 22:16:55 -07:00
|
|
|
{
|
2017-02-27 15:35:15 -08:00
|
|
|
if(ApplyOffset(Source, voice) == AL_FALSE)
|
2017-02-24 01:47:34 -08:00
|
|
|
{
|
|
|
|
ALCdevice_Unlock(Context->Device);
|
2018-01-25 15:59:59 -08:00
|
|
|
SETERR_RETURN(Context, AL_INVALID_VALUE, AL_FALSE, "Invalid offset");
|
2017-02-24 01:47:34 -08:00
|
|
|
}
|
2012-08-28 22:16:55 -07:00
|
|
|
}
|
2017-02-07 19:32:49 -08:00
|
|
|
ALCdevice_Unlock(Context->Device);
|
2012-08-28 22:16:55 -07:00
|
|
|
}
|
2013-10-07 09:54:35 -07:00
|
|
|
return AL_TRUE;
|
2012-08-28 22:16:55 -07:00
|
|
|
|
2016-04-25 00:30:47 -07:00
|
|
|
case AL_SOURCE_RADIUS:
|
2018-11-18 03:25:32 -08:00
|
|
|
CHECKVAL(*values >= 0.0f && std::isfinite(*values));
|
2016-04-25 00:30:47 -07:00
|
|
|
|
|
|
|
Source->Radius = *values;
|
Provide asynchronous property updates for sources
This necessitates a change in how source updates are handled. Rather than just
being able to update sources when a dependent object state is changed (e.g. a
listener gain change), now all source updates must be proactively provided.
Consequently, apps that do not utilize any deferring (AL_SOFT_defer_updates or
alcSuspendContext/alcProcessContext) may utilize more CPU since it'll be
filling out more update containers for the mixer thread to use.
The upside is that there's less blocking between the app's calling thread and
the mixer thread, particularly for vectors and other multi-value properties
(filters and sends). Deferring behavior when used is also improved, since
updates that shouldn't be applied yet are simply not provided. And when they
are provided, the mixer doesn't have to ignore them, meaning the actual
deferring of a context doesn't have to synchrnously force an update -- the
process call will send any pending updates, which the mixer will apply even if
another deferral occurs before the mixer runs, because it'll still be there
waiting on the next mixer invocation.
There is one slight bug introduced by this commit. When a listener change is
made, or changes to multiple sources while updates are being deferred, it is
possible for the mixer to run while the sources are prepping their updates,
causing some of the source updates to be seen before the other. This will be
fixed in short order.
2016-05-14 23:43:40 -07:00
|
|
|
DO_UPDATEPROPS();
|
2016-04-25 00:30:47 -07:00
|
|
|
return AL_TRUE;
|
2012-08-28 22:16:55 -07:00
|
|
|
|
2016-03-25 14:40:44 -07:00
|
|
|
case AL_STEREO_ANGLES:
|
2018-11-18 03:25:32 -08:00
|
|
|
CHECKVAL(std::isfinite(values[0]) && std::isfinite(values[1]));
|
2016-03-25 14:40:44 -07:00
|
|
|
|
|
|
|
Source->StereoPan[0] = values[0];
|
|
|
|
Source->StereoPan[1] = values[1];
|
Provide asynchronous property updates for sources
This necessitates a change in how source updates are handled. Rather than just
being able to update sources when a dependent object state is changed (e.g. a
listener gain change), now all source updates must be proactively provided.
Consequently, apps that do not utilize any deferring (AL_SOFT_defer_updates or
alcSuspendContext/alcProcessContext) may utilize more CPU since it'll be
filling out more update containers for the mixer thread to use.
The upside is that there's less blocking between the app's calling thread and
the mixer thread, particularly for vectors and other multi-value properties
(filters and sends). Deferring behavior when used is also improved, since
updates that shouldn't be applied yet are simply not provided. And when they
are provided, the mixer doesn't have to ignore them, meaning the actual
deferring of a context doesn't have to synchrnously force an update -- the
process call will send any pending updates, which the mixer will apply even if
another deferral occurs before the mixer runs, because it'll still be there
waiting on the next mixer invocation.
There is one slight bug introduced by this commit. When a listener change is
made, or changes to multiple sources while updates are being deferred, it is
possible for the mixer to run while the sources are prepping their updates,
causing some of the source updates to be seen before the other. This will be
fixed in short order.
2016-05-14 23:43:40 -07:00
|
|
|
DO_UPDATEPROPS();
|
2016-03-25 14:40:44 -07:00
|
|
|
return AL_TRUE;
|
|
|
|
|
|
|
|
|
2012-08-28 22:16:55 -07:00
|
|
|
case AL_POSITION:
|
2018-11-18 03:25:32 -08:00
|
|
|
CHECKVAL(std::isfinite(values[0]) && std::isfinite(values[1]) && std::isfinite(values[2]));
|
2012-08-28 22:16:55 -07:00
|
|
|
|
Provide asynchronous property updates for sources
This necessitates a change in how source updates are handled. Rather than just
being able to update sources when a dependent object state is changed (e.g. a
listener gain change), now all source updates must be proactively provided.
Consequently, apps that do not utilize any deferring (AL_SOFT_defer_updates or
alcSuspendContext/alcProcessContext) may utilize more CPU since it'll be
filling out more update containers for the mixer thread to use.
The upside is that there's less blocking between the app's calling thread and
the mixer thread, particularly for vectors and other multi-value properties
(filters and sends). Deferring behavior when used is also improved, since
updates that shouldn't be applied yet are simply not provided. And when they
are provided, the mixer doesn't have to ignore them, meaning the actual
deferring of a context doesn't have to synchrnously force an update -- the
process call will send any pending updates, which the mixer will apply even if
another deferral occurs before the mixer runs, because it'll still be there
waiting on the next mixer invocation.
There is one slight bug introduced by this commit. When a listener change is
made, or changes to multiple sources while updates are being deferred, it is
possible for the mixer to run while the sources are prepping their updates,
causing some of the source updates to be seen before the other. This will be
fixed in short order.
2016-05-14 23:43:40 -07:00
|
|
|
Source->Position[0] = values[0];
|
|
|
|
Source->Position[1] = values[1];
|
|
|
|
Source->Position[2] = values[2];
|
|
|
|
DO_UPDATEPROPS();
|
2013-10-07 09:54:35 -07:00
|
|
|
return AL_TRUE;
|
2012-08-28 22:16:55 -07:00
|
|
|
|
|
|
|
case AL_VELOCITY:
|
2018-11-18 03:25:32 -08:00
|
|
|
CHECKVAL(std::isfinite(values[0]) && std::isfinite(values[1]) && std::isfinite(values[2]));
|
2012-08-28 22:16:55 -07:00
|
|
|
|
Provide asynchronous property updates for sources
This necessitates a change in how source updates are handled. Rather than just
being able to update sources when a dependent object state is changed (e.g. a
listener gain change), now all source updates must be proactively provided.
Consequently, apps that do not utilize any deferring (AL_SOFT_defer_updates or
alcSuspendContext/alcProcessContext) may utilize more CPU since it'll be
filling out more update containers for the mixer thread to use.
The upside is that there's less blocking between the app's calling thread and
the mixer thread, particularly for vectors and other multi-value properties
(filters and sends). Deferring behavior when used is also improved, since
updates that shouldn't be applied yet are simply not provided. And when they
are provided, the mixer doesn't have to ignore them, meaning the actual
deferring of a context doesn't have to synchrnously force an update -- the
process call will send any pending updates, which the mixer will apply even if
another deferral occurs before the mixer runs, because it'll still be there
waiting on the next mixer invocation.
There is one slight bug introduced by this commit. When a listener change is
made, or changes to multiple sources while updates are being deferred, it is
possible for the mixer to run while the sources are prepping their updates,
causing some of the source updates to be seen before the other. This will be
fixed in short order.
2016-05-14 23:43:40 -07:00
|
|
|
Source->Velocity[0] = values[0];
|
|
|
|
Source->Velocity[1] = values[1];
|
|
|
|
Source->Velocity[2] = values[2];
|
|
|
|
DO_UPDATEPROPS();
|
2013-10-07 09:54:35 -07:00
|
|
|
return AL_TRUE;
|
2012-08-28 22:16:55 -07:00
|
|
|
|
|
|
|
case AL_DIRECTION:
|
2018-11-18 03:25:32 -08:00
|
|
|
CHECKVAL(std::isfinite(values[0]) && std::isfinite(values[1]) && std::isfinite(values[2]));
|
2012-08-28 22:16:55 -07:00
|
|
|
|
Provide asynchronous property updates for sources
This necessitates a change in how source updates are handled. Rather than just
being able to update sources when a dependent object state is changed (e.g. a
listener gain change), now all source updates must be proactively provided.
Consequently, apps that do not utilize any deferring (AL_SOFT_defer_updates or
alcSuspendContext/alcProcessContext) may utilize more CPU since it'll be
filling out more update containers for the mixer thread to use.
The upside is that there's less blocking between the app's calling thread and
the mixer thread, particularly for vectors and other multi-value properties
(filters and sends). Deferring behavior when used is also improved, since
updates that shouldn't be applied yet are simply not provided. And when they
are provided, the mixer doesn't have to ignore them, meaning the actual
deferring of a context doesn't have to synchrnously force an update -- the
process call will send any pending updates, which the mixer will apply even if
another deferral occurs before the mixer runs, because it'll still be there
waiting on the next mixer invocation.
There is one slight bug introduced by this commit. When a listener change is
made, or changes to multiple sources while updates are being deferred, it is
possible for the mixer to run while the sources are prepping their updates,
causing some of the source updates to be seen before the other. This will be
fixed in short order.
2016-05-14 23:43:40 -07:00
|
|
|
Source->Direction[0] = values[0];
|
|
|
|
Source->Direction[1] = values[1];
|
|
|
|
Source->Direction[2] = values[2];
|
|
|
|
DO_UPDATEPROPS();
|
2013-10-07 09:54:35 -07:00
|
|
|
return AL_TRUE;
|
2012-08-28 22:16:55 -07:00
|
|
|
|
2014-10-31 22:43:13 -07:00
|
|
|
case AL_ORIENTATION:
|
2018-11-18 03:25:32 -08:00
|
|
|
CHECKVAL(std::isfinite(values[0]) && std::isfinite(values[1]) && std::isfinite(values[2]) &&
|
|
|
|
std::isfinite(values[3]) && std::isfinite(values[4]) && std::isfinite(values[5]));
|
2014-10-31 22:43:13 -07:00
|
|
|
|
|
|
|
Source->Orientation[0][0] = values[0];
|
|
|
|
Source->Orientation[0][1] = values[1];
|
|
|
|
Source->Orientation[0][2] = values[2];
|
|
|
|
Source->Orientation[1][0] = values[3];
|
|
|
|
Source->Orientation[1][1] = values[4];
|
|
|
|
Source->Orientation[1][2] = values[5];
|
Provide asynchronous property updates for sources
This necessitates a change in how source updates are handled. Rather than just
being able to update sources when a dependent object state is changed (e.g. a
listener gain change), now all source updates must be proactively provided.
Consequently, apps that do not utilize any deferring (AL_SOFT_defer_updates or
alcSuspendContext/alcProcessContext) may utilize more CPU since it'll be
filling out more update containers for the mixer thread to use.
The upside is that there's less blocking between the app's calling thread and
the mixer thread, particularly for vectors and other multi-value properties
(filters and sends). Deferring behavior when used is also improved, since
updates that shouldn't be applied yet are simply not provided. And when they
are provided, the mixer doesn't have to ignore them, meaning the actual
deferring of a context doesn't have to synchrnously force an update -- the
process call will send any pending updates, which the mixer will apply even if
another deferral occurs before the mixer runs, because it'll still be there
waiting on the next mixer invocation.
There is one slight bug introduced by this commit. When a listener change is
made, or changes to multiple sources while updates are being deferred, it is
possible for the mixer to run while the sources are prepping their updates,
causing some of the source updates to be seen before the other. This will be
fixed in short order.
2016-05-14 23:43:40 -07:00
|
|
|
DO_UPDATEPROPS();
|
2014-10-31 22:43:13 -07:00
|
|
|
return AL_TRUE;
|
2012-12-05 09:22:38 -08:00
|
|
|
|
|
|
|
|
2015-09-22 08:48:26 -07:00
|
|
|
case AL_SOURCE_RELATIVE:
|
|
|
|
case AL_LOOPING:
|
|
|
|
case AL_SOURCE_STATE:
|
|
|
|
case AL_SOURCE_TYPE:
|
|
|
|
case AL_DISTANCE_MODEL:
|
|
|
|
case AL_DIRECT_FILTER_GAINHF_AUTO:
|
|
|
|
case AL_AUXILIARY_SEND_FILTER_GAIN_AUTO:
|
|
|
|
case AL_AUXILIARY_SEND_FILTER_GAINHF_AUTO:
|
|
|
|
case AL_DIRECT_CHANNELS_SOFT:
|
2017-04-21 15:48:39 -07:00
|
|
|
case AL_SOURCE_RESAMPLER_SOFT:
|
2017-05-05 02:41:34 -07:00
|
|
|
case AL_SOURCE_SPATIALIZE_SOFT:
|
2012-12-05 09:22:38 -08:00
|
|
|
ival = (ALint)values[0];
|
2015-09-22 08:48:26 -07:00
|
|
|
return SetSourceiv(Source, Context, prop, &ival);
|
2012-12-05 09:22:38 -08:00
|
|
|
|
2015-09-22 08:48:26 -07:00
|
|
|
case AL_BUFFERS_QUEUED:
|
|
|
|
case AL_BUFFERS_PROCESSED:
|
2012-12-05 09:22:38 -08:00
|
|
|
ival = (ALint)((ALuint)values[0]);
|
2015-09-22 08:48:26 -07:00
|
|
|
return SetSourceiv(Source, Context, prop, &ival);
|
|
|
|
|
|
|
|
case AL_BUFFER:
|
|
|
|
case AL_DIRECT_FILTER:
|
|
|
|
case AL_AUXILIARY_SEND_FILTER:
|
|
|
|
case AL_SAMPLE_OFFSET_LATENCY_SOFT:
|
2017-12-03 14:45:19 -08:00
|
|
|
case AL_SAMPLE_OFFSET_CLOCK_SOFT:
|
2015-09-22 08:48:26 -07:00
|
|
|
break;
|
2012-08-28 22:16:55 -07:00
|
|
|
}
|
|
|
|
|
2012-12-05 09:22:38 -08:00
|
|
|
ERR("Unexpected property: 0x%04x\n", prop);
|
2018-01-25 15:59:59 -08:00
|
|
|
SETERR_RETURN(Context, AL_INVALID_ENUM, AL_FALSE, "Invalid source float property 0x%04x", prop);
|
2012-08-28 22:16:55 -07:00
|
|
|
}
|
|
|
|
|
2015-09-22 08:48:26 -07:00
|
|
|
static ALboolean SetSourceiv(ALsource *Source, ALCcontext *Context, SourceProp prop, const ALint *values)
|
2012-08-28 22:16:55 -07:00
|
|
|
{
|
|
|
|
ALCdevice *device = Context->Device;
|
|
|
|
ALbuffer *buffer = NULL;
|
|
|
|
ALfilter *filter = NULL;
|
|
|
|
ALeffectslot *slot = NULL;
|
|
|
|
ALbufferlistitem *oldlist;
|
2014-10-31 22:43:13 -07:00
|
|
|
ALfloat fvals[6];
|
2012-08-28 22:16:55 -07:00
|
|
|
|
2012-12-05 09:55:05 -08:00
|
|
|
switch(prop)
|
2012-08-28 22:16:55 -07:00
|
|
|
{
|
2015-09-22 08:48:26 -07:00
|
|
|
case AL_SOURCE_STATE:
|
|
|
|
case AL_SOURCE_TYPE:
|
|
|
|
case AL_BUFFERS_QUEUED:
|
|
|
|
case AL_BUFFERS_PROCESSED:
|
|
|
|
/* Query only */
|
2018-01-25 15:59:59 -08:00
|
|
|
SETERR_RETURN(Context, AL_INVALID_OPERATION, AL_FALSE,
|
|
|
|
"Setting read-only source property 0x%04x", prop);
|
2015-09-22 08:48:26 -07:00
|
|
|
|
2012-08-28 22:16:55 -07:00
|
|
|
case AL_SOURCE_RELATIVE:
|
|
|
|
CHECKVAL(*values == AL_FALSE || *values == AL_TRUE);
|
|
|
|
|
|
|
|
Source->HeadRelative = (ALboolean)*values;
|
Provide asynchronous property updates for sources
This necessitates a change in how source updates are handled. Rather than just
being able to update sources when a dependent object state is changed (e.g. a
listener gain change), now all source updates must be proactively provided.
Consequently, apps that do not utilize any deferring (AL_SOFT_defer_updates or
alcSuspendContext/alcProcessContext) may utilize more CPU since it'll be
filling out more update containers for the mixer thread to use.
The upside is that there's less blocking between the app's calling thread and
the mixer thread, particularly for vectors and other multi-value properties
(filters and sends). Deferring behavior when used is also improved, since
updates that shouldn't be applied yet are simply not provided. And when they
are provided, the mixer doesn't have to ignore them, meaning the actual
deferring of a context doesn't have to synchrnously force an update -- the
process call will send any pending updates, which the mixer will apply even if
another deferral occurs before the mixer runs, because it'll still be there
waiting on the next mixer invocation.
There is one slight bug introduced by this commit. When a listener change is
made, or changes to multiple sources while updates are being deferred, it is
possible for the mixer to run while the sources are prepping their updates,
causing some of the source updates to be seen before the other. This will be
fixed in short order.
2016-05-14 23:43:40 -07:00
|
|
|
DO_UPDATEPROPS();
|
2013-10-07 09:54:35 -07:00
|
|
|
return AL_TRUE;
|
2012-08-28 22:16:55 -07:00
|
|
|
|
|
|
|
case AL_LOOPING:
|
|
|
|
CHECKVAL(*values == AL_FALSE || *values == AL_TRUE);
|
|
|
|
|
2017-04-18 00:58:33 -07:00
|
|
|
Source->Looping = (ALboolean)*values;
|
|
|
|
if(IsPlayingOrPaused(Source))
|
2017-04-02 06:35:44 -07:00
|
|
|
{
|
2017-04-18 00:58:33 -07:00
|
|
|
ALvoice *voice = GetSourceVoice(Source, Context);
|
|
|
|
if(voice)
|
|
|
|
{
|
|
|
|
if(Source->Looping)
|
|
|
|
ATOMIC_STORE(&voice->loop_buffer, Source->queue, almemory_order_release);
|
|
|
|
else
|
2018-11-15 03:13:54 -08:00
|
|
|
ATOMIC_STORE(&voice->loop_buffer, static_cast<ALbufferlistitem*>(nullptr),
|
|
|
|
almemory_order_release);
|
2017-04-18 00:58:33 -07:00
|
|
|
|
|
|
|
/* If the source is playing, wait for the current mix to finish
|
|
|
|
* to ensure it isn't currently looping back or reaching the
|
|
|
|
* end.
|
|
|
|
*/
|
|
|
|
while((ATOMIC_LOAD(&device->MixCount, almemory_order_acquire)&1))
|
|
|
|
althrd_yield();
|
|
|
|
}
|
2017-04-02 06:35:44 -07:00
|
|
|
}
|
2013-10-07 09:54:35 -07:00
|
|
|
return AL_TRUE;
|
2012-08-28 22:16:55 -07:00
|
|
|
|
|
|
|
case AL_BUFFER:
|
2018-01-27 01:51:01 -08:00
|
|
|
LockBufferList(device);
|
2016-05-10 23:42:44 -07:00
|
|
|
if(!(*values == 0 || (buffer=LookupBuffer(device, *values)) != NULL))
|
|
|
|
{
|
2018-01-27 01:51:01 -08:00
|
|
|
UnlockBufferList(device);
|
2018-01-25 15:59:59 -08:00
|
|
|
SETERR_RETURN(Context, AL_INVALID_VALUE, AL_FALSE, "Invalid buffer ID %u",
|
|
|
|
*values);
|
2016-05-10 23:42:44 -07:00
|
|
|
}
|
2012-08-28 22:16:55 -07:00
|
|
|
|
2018-01-23 10:38:27 -08:00
|
|
|
if(buffer && buffer->MappedAccess != 0 &&
|
|
|
|
!(buffer->MappedAccess&AL_MAP_PERSISTENT_BIT_SOFT))
|
2018-01-20 11:49:01 -08:00
|
|
|
{
|
2018-01-27 01:51:01 -08:00
|
|
|
UnlockBufferList(device);
|
2018-01-25 15:59:59 -08:00
|
|
|
SETERR_RETURN(Context, AL_INVALID_OPERATION, AL_FALSE,
|
|
|
|
"Setting non-persistently mapped buffer %u", buffer->id);
|
2018-01-20 11:49:01 -08:00
|
|
|
}
|
|
|
|
else
|
2012-08-28 22:16:55 -07:00
|
|
|
{
|
2017-03-06 13:16:14 -08:00
|
|
|
ALenum state = GetSourceState(Source, GetSourceVoice(Source, Context));
|
|
|
|
if(state == AL_PLAYING || state == AL_PAUSED)
|
|
|
|
{
|
2018-01-27 01:51:01 -08:00
|
|
|
UnlockBufferList(device);
|
2018-01-25 15:59:59 -08:00
|
|
|
SETERR_RETURN(Context, AL_INVALID_OPERATION, AL_FALSE,
|
|
|
|
"Setting buffer on playing or paused source %u", Source->id);
|
2017-03-06 13:16:14 -08:00
|
|
|
}
|
2012-08-28 22:16:55 -07:00
|
|
|
}
|
|
|
|
|
2017-04-18 00:58:33 -07:00
|
|
|
oldlist = Source->queue;
|
2012-08-28 22:16:55 -07:00
|
|
|
if(buffer != NULL)
|
|
|
|
{
|
|
|
|
/* Add the selected buffer to a one-item queue */
|
2018-11-15 03:13:54 -08:00
|
|
|
ALbufferlistitem *newlist = static_cast<ALbufferlistitem*>(al_calloc(DEF_ALIGN,
|
|
|
|
FAM_SIZE(ALbufferlistitem, buffers, 1)));
|
|
|
|
ATOMIC_INIT(&newlist->next, static_cast<ALbufferlistitem*>(nullptr));
|
2018-03-27 08:27:16 -07:00
|
|
|
newlist->max_samples = buffer->SampleLen;
|
2017-12-15 22:59:51 -08:00
|
|
|
newlist->num_buffers = 1;
|
|
|
|
newlist->buffers[0] = buffer;
|
2012-08-28 22:16:55 -07:00
|
|
|
IncrementRef(&buffer->ref);
|
|
|
|
|
2014-05-10 03:33:41 -07:00
|
|
|
/* Source is now Static */
|
|
|
|
Source->SourceType = AL_STATIC;
|
2017-04-18 00:58:33 -07:00
|
|
|
Source->queue = newlist;
|
2012-08-28 22:16:55 -07:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
/* Source is now Undetermined */
|
|
|
|
Source->SourceType = AL_UNDETERMINED;
|
2017-04-18 00:58:33 -07:00
|
|
|
Source->queue = NULL;
|
2012-08-28 22:16:55 -07:00
|
|
|
}
|
2018-01-27 01:51:01 -08:00
|
|
|
UnlockBufferList(device);
|
2012-08-28 22:16:55 -07:00
|
|
|
|
|
|
|
/* Delete all elements in the previous queue */
|
|
|
|
while(oldlist != NULL)
|
|
|
|
{
|
2017-12-15 22:59:51 -08:00
|
|
|
ALsizei i;
|
2012-08-28 22:16:55 -07:00
|
|
|
ALbufferlistitem *temp = oldlist;
|
2017-04-19 19:54:17 -07:00
|
|
|
oldlist = ATOMIC_LOAD(&temp->next, almemory_order_relaxed);
|
2012-08-28 22:16:55 -07:00
|
|
|
|
2017-12-15 22:59:51 -08:00
|
|
|
for(i = 0;i < temp->num_buffers;i++)
|
|
|
|
{
|
|
|
|
if(temp->buffers[i])
|
|
|
|
DecrementRef(&temp->buffers[i]->ref);
|
|
|
|
}
|
2017-02-27 20:43:16 -08:00
|
|
|
al_free(temp);
|
2012-08-28 22:16:55 -07:00
|
|
|
}
|
2013-10-07 09:54:35 -07:00
|
|
|
return AL_TRUE;
|
2012-08-28 22:16:55 -07:00
|
|
|
|
|
|
|
case AL_SEC_OFFSET:
|
|
|
|
case AL_SAMPLE_OFFSET:
|
|
|
|
case AL_BYTE_OFFSET:
|
|
|
|
CHECKVAL(*values >= 0);
|
|
|
|
|
2012-12-05 09:55:05 -08:00
|
|
|
Source->OffsetType = prop;
|
2012-08-28 22:16:55 -07:00
|
|
|
Source->Offset = *values;
|
|
|
|
|
2017-03-19 13:48:40 -07:00
|
|
|
if(IsPlayingOrPaused(Source))
|
2012-08-28 22:16:55 -07:00
|
|
|
{
|
2017-02-27 15:35:15 -08:00
|
|
|
ALvoice *voice;
|
|
|
|
|
2017-02-07 19:32:49 -08:00
|
|
|
ALCdevice_Lock(Context->Device);
|
2017-02-27 15:35:15 -08:00
|
|
|
voice = GetSourceVoice(Source, Context);
|
|
|
|
if(voice)
|
2012-08-28 22:16:55 -07:00
|
|
|
{
|
2017-02-27 15:35:15 -08:00
|
|
|
if(ApplyOffset(Source, voice) == AL_FALSE)
|
2017-02-24 01:47:34 -08:00
|
|
|
{
|
|
|
|
ALCdevice_Unlock(Context->Device);
|
2018-01-25 15:59:59 -08:00
|
|
|
SETERR_RETURN(Context, AL_INVALID_VALUE, AL_FALSE,
|
|
|
|
"Invalid source offset");
|
2017-02-24 01:47:34 -08:00
|
|
|
}
|
2012-08-28 22:16:55 -07:00
|
|
|
}
|
2017-02-07 19:32:49 -08:00
|
|
|
ALCdevice_Unlock(Context->Device);
|
2012-08-28 22:16:55 -07:00
|
|
|
}
|
2013-10-07 09:54:35 -07:00
|
|
|
return AL_TRUE;
|
2012-12-05 09:55:05 -08:00
|
|
|
|
2012-08-28 22:16:55 -07:00
|
|
|
case AL_DIRECT_FILTER:
|
2018-01-27 21:16:24 -08:00
|
|
|
LockFilterList(device);
|
2016-05-12 23:12:11 -07:00
|
|
|
if(!(*values == 0 || (filter=LookupFilter(device, *values)) != NULL))
|
|
|
|
{
|
2018-01-27 21:16:24 -08:00
|
|
|
UnlockFilterList(device);
|
2018-01-25 15:59:59 -08:00
|
|
|
SETERR_RETURN(Context, AL_INVALID_VALUE, AL_FALSE, "Invalid filter ID %u",
|
|
|
|
*values);
|
2016-05-12 23:12:11 -07:00
|
|
|
}
|
2012-08-28 22:16:55 -07:00
|
|
|
|
|
|
|
if(!filter)
|
|
|
|
{
|
2014-05-11 01:36:18 -07:00
|
|
|
Source->Direct.Gain = 1.0f;
|
|
|
|
Source->Direct.GainHF = 1.0f;
|
2014-05-14 01:24:18 -07:00
|
|
|
Source->Direct.HFReference = LOWPASSFREQREF;
|
2014-05-17 07:54:25 -07:00
|
|
|
Source->Direct.GainLF = 1.0f;
|
|
|
|
Source->Direct.LFReference = HIGHPASSFREQREF;
|
2012-08-28 22:16:55 -07:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2014-05-11 01:36:18 -07:00
|
|
|
Source->Direct.Gain = filter->Gain;
|
|
|
|
Source->Direct.GainHF = filter->GainHF;
|
2014-05-14 01:24:18 -07:00
|
|
|
Source->Direct.HFReference = filter->HFReference;
|
2014-05-17 07:54:25 -07:00
|
|
|
Source->Direct.GainLF = filter->GainLF;
|
|
|
|
Source->Direct.LFReference = filter->LFReference;
|
2012-08-28 22:16:55 -07:00
|
|
|
}
|
2018-01-27 21:16:24 -08:00
|
|
|
UnlockFilterList(device);
|
Provide asynchronous property updates for sources
This necessitates a change in how source updates are handled. Rather than just
being able to update sources when a dependent object state is changed (e.g. a
listener gain change), now all source updates must be proactively provided.
Consequently, apps that do not utilize any deferring (AL_SOFT_defer_updates or
alcSuspendContext/alcProcessContext) may utilize more CPU since it'll be
filling out more update containers for the mixer thread to use.
The upside is that there's less blocking between the app's calling thread and
the mixer thread, particularly for vectors and other multi-value properties
(filters and sends). Deferring behavior when used is also improved, since
updates that shouldn't be applied yet are simply not provided. And when they
are provided, the mixer doesn't have to ignore them, meaning the actual
deferring of a context doesn't have to synchrnously force an update -- the
process call will send any pending updates, which the mixer will apply even if
another deferral occurs before the mixer runs, because it'll still be there
waiting on the next mixer invocation.
There is one slight bug introduced by this commit. When a listener change is
made, or changes to multiple sources while updates are being deferred, it is
possible for the mixer to run while the sources are prepping their updates,
causing some of the source updates to be seen before the other. This will be
fixed in short order.
2016-05-14 23:43:40 -07:00
|
|
|
DO_UPDATEPROPS();
|
2013-10-07 09:54:35 -07:00
|
|
|
return AL_TRUE;
|
2012-08-28 22:16:55 -07:00
|
|
|
|
|
|
|
case AL_DIRECT_FILTER_GAINHF_AUTO:
|
|
|
|
CHECKVAL(*values == AL_FALSE || *values == AL_TRUE);
|
|
|
|
|
|
|
|
Source->DryGainHFAuto = *values;
|
Provide asynchronous property updates for sources
This necessitates a change in how source updates are handled. Rather than just
being able to update sources when a dependent object state is changed (e.g. a
listener gain change), now all source updates must be proactively provided.
Consequently, apps that do not utilize any deferring (AL_SOFT_defer_updates or
alcSuspendContext/alcProcessContext) may utilize more CPU since it'll be
filling out more update containers for the mixer thread to use.
The upside is that there's less blocking between the app's calling thread and
the mixer thread, particularly for vectors and other multi-value properties
(filters and sends). Deferring behavior when used is also improved, since
updates that shouldn't be applied yet are simply not provided. And when they
are provided, the mixer doesn't have to ignore them, meaning the actual
deferring of a context doesn't have to synchrnously force an update -- the
process call will send any pending updates, which the mixer will apply even if
another deferral occurs before the mixer runs, because it'll still be there
waiting on the next mixer invocation.
There is one slight bug introduced by this commit. When a listener change is
made, or changes to multiple sources while updates are being deferred, it is
possible for the mixer to run while the sources are prepping their updates,
causing some of the source updates to be seen before the other. This will be
fixed in short order.
2016-05-14 23:43:40 -07:00
|
|
|
DO_UPDATEPROPS();
|
2013-10-07 09:54:35 -07:00
|
|
|
return AL_TRUE;
|
2012-08-28 22:16:55 -07:00
|
|
|
|
|
|
|
case AL_AUXILIARY_SEND_FILTER_GAIN_AUTO:
|
|
|
|
CHECKVAL(*values == AL_FALSE || *values == AL_TRUE);
|
|
|
|
|
|
|
|
Source->WetGainAuto = *values;
|
Provide asynchronous property updates for sources
This necessitates a change in how source updates are handled. Rather than just
being able to update sources when a dependent object state is changed (e.g. a
listener gain change), now all source updates must be proactively provided.
Consequently, apps that do not utilize any deferring (AL_SOFT_defer_updates or
alcSuspendContext/alcProcessContext) may utilize more CPU since it'll be
filling out more update containers for the mixer thread to use.
The upside is that there's less blocking between the app's calling thread and
the mixer thread, particularly for vectors and other multi-value properties
(filters and sends). Deferring behavior when used is also improved, since
updates that shouldn't be applied yet are simply not provided. And when they
are provided, the mixer doesn't have to ignore them, meaning the actual
deferring of a context doesn't have to synchrnously force an update -- the
process call will send any pending updates, which the mixer will apply even if
another deferral occurs before the mixer runs, because it'll still be there
waiting on the next mixer invocation.
There is one slight bug introduced by this commit. When a listener change is
made, or changes to multiple sources while updates are being deferred, it is
possible for the mixer to run while the sources are prepping their updates,
causing some of the source updates to be seen before the other. This will be
fixed in short order.
2016-05-14 23:43:40 -07:00
|
|
|
DO_UPDATEPROPS();
|
2013-10-07 09:54:35 -07:00
|
|
|
return AL_TRUE;
|
2012-08-28 22:16:55 -07:00
|
|
|
|
|
|
|
case AL_AUXILIARY_SEND_FILTER_GAINHF_AUTO:
|
|
|
|
CHECKVAL(*values == AL_FALSE || *values == AL_TRUE);
|
|
|
|
|
|
|
|
Source->WetGainHFAuto = *values;
|
Provide asynchronous property updates for sources
This necessitates a change in how source updates are handled. Rather than just
being able to update sources when a dependent object state is changed (e.g. a
listener gain change), now all source updates must be proactively provided.
Consequently, apps that do not utilize any deferring (AL_SOFT_defer_updates or
alcSuspendContext/alcProcessContext) may utilize more CPU since it'll be
filling out more update containers for the mixer thread to use.
The upside is that there's less blocking between the app's calling thread and
the mixer thread, particularly for vectors and other multi-value properties
(filters and sends). Deferring behavior when used is also improved, since
updates that shouldn't be applied yet are simply not provided. And when they
are provided, the mixer doesn't have to ignore them, meaning the actual
deferring of a context doesn't have to synchrnously force an update -- the
process call will send any pending updates, which the mixer will apply even if
another deferral occurs before the mixer runs, because it'll still be there
waiting on the next mixer invocation.
There is one slight bug introduced by this commit. When a listener change is
made, or changes to multiple sources while updates are being deferred, it is
possible for the mixer to run while the sources are prepping their updates,
causing some of the source updates to be seen before the other. This will be
fixed in short order.
2016-05-14 23:43:40 -07:00
|
|
|
DO_UPDATEPROPS();
|
2013-10-07 09:54:35 -07:00
|
|
|
return AL_TRUE;
|
2012-08-28 22:16:55 -07:00
|
|
|
|
|
|
|
case AL_DIRECT_CHANNELS_SOFT:
|
|
|
|
CHECKVAL(*values == AL_FALSE || *values == AL_TRUE);
|
|
|
|
|
|
|
|
Source->DirectChannels = *values;
|
Provide asynchronous property updates for sources
This necessitates a change in how source updates are handled. Rather than just
being able to update sources when a dependent object state is changed (e.g. a
listener gain change), now all source updates must be proactively provided.
Consequently, apps that do not utilize any deferring (AL_SOFT_defer_updates or
alcSuspendContext/alcProcessContext) may utilize more CPU since it'll be
filling out more update containers for the mixer thread to use.
The upside is that there's less blocking between the app's calling thread and
the mixer thread, particularly for vectors and other multi-value properties
(filters and sends). Deferring behavior when used is also improved, since
updates that shouldn't be applied yet are simply not provided. And when they
are provided, the mixer doesn't have to ignore them, meaning the actual
deferring of a context doesn't have to synchrnously force an update -- the
process call will send any pending updates, which the mixer will apply even if
another deferral occurs before the mixer runs, because it'll still be there
waiting on the next mixer invocation.
There is one slight bug introduced by this commit. When a listener change is
made, or changes to multiple sources while updates are being deferred, it is
possible for the mixer to run while the sources are prepping their updates,
causing some of the source updates to be seen before the other. This will be
fixed in short order.
2016-05-14 23:43:40 -07:00
|
|
|
DO_UPDATEPROPS();
|
2013-10-07 09:54:35 -07:00
|
|
|
return AL_TRUE;
|
2012-08-28 22:16:55 -07:00
|
|
|
|
|
|
|
case AL_DISTANCE_MODEL:
|
|
|
|
CHECKVAL(*values == AL_NONE ||
|
|
|
|
*values == AL_INVERSE_DISTANCE ||
|
|
|
|
*values == AL_INVERSE_DISTANCE_CLAMPED ||
|
|
|
|
*values == AL_LINEAR_DISTANCE ||
|
|
|
|
*values == AL_LINEAR_DISTANCE_CLAMPED ||
|
|
|
|
*values == AL_EXPONENT_DISTANCE ||
|
|
|
|
*values == AL_EXPONENT_DISTANCE_CLAMPED);
|
|
|
|
|
2018-11-18 03:39:32 -08:00
|
|
|
Source->mDistanceModel = static_cast<DistanceModel>(*values);
|
2012-08-28 22:16:55 -07:00
|
|
|
if(Context->SourceDistanceModel)
|
Provide asynchronous property updates for sources
This necessitates a change in how source updates are handled. Rather than just
being able to update sources when a dependent object state is changed (e.g. a
listener gain change), now all source updates must be proactively provided.
Consequently, apps that do not utilize any deferring (AL_SOFT_defer_updates or
alcSuspendContext/alcProcessContext) may utilize more CPU since it'll be
filling out more update containers for the mixer thread to use.
The upside is that there's less blocking between the app's calling thread and
the mixer thread, particularly for vectors and other multi-value properties
(filters and sends). Deferring behavior when used is also improved, since
updates that shouldn't be applied yet are simply not provided. And when they
are provided, the mixer doesn't have to ignore them, meaning the actual
deferring of a context doesn't have to synchrnously force an update -- the
process call will send any pending updates, which the mixer will apply even if
another deferral occurs before the mixer runs, because it'll still be there
waiting on the next mixer invocation.
There is one slight bug introduced by this commit. When a listener change is
made, or changes to multiple sources while updates are being deferred, it is
possible for the mixer to run while the sources are prepping their updates,
causing some of the source updates to be seen before the other. This will be
fixed in short order.
2016-05-14 23:43:40 -07:00
|
|
|
DO_UPDATEPROPS();
|
2013-10-07 09:54:35 -07:00
|
|
|
return AL_TRUE;
|
2012-08-28 22:16:55 -07:00
|
|
|
|
2017-04-21 15:48:39 -07:00
|
|
|
case AL_SOURCE_RESAMPLER_SOFT:
|
|
|
|
CHECKVAL(*values >= 0 && *values <= ResamplerMax);
|
|
|
|
|
2018-11-15 03:13:54 -08:00
|
|
|
Source->Resampler = static_cast<enum Resampler>(*values);
|
2017-04-21 15:48:39 -07:00
|
|
|
DO_UPDATEPROPS();
|
|
|
|
return AL_TRUE;
|
|
|
|
|
2017-05-05 02:41:34 -07:00
|
|
|
case AL_SOURCE_SPATIALIZE_SOFT:
|
|
|
|
CHECKVAL(*values >= AL_FALSE && *values <= AL_AUTO_SOFT);
|
|
|
|
|
2018-11-15 03:13:54 -08:00
|
|
|
Source->Spatialize = static_cast<enum SpatializeMode>(*values);
|
2017-05-05 02:41:34 -07:00
|
|
|
DO_UPDATEPROPS();
|
|
|
|
return AL_TRUE;
|
|
|
|
|
2012-08-28 22:16:55 -07:00
|
|
|
|
|
|
|
case AL_AUXILIARY_SEND_FILTER:
|
2018-01-27 21:16:24 -08:00
|
|
|
LockEffectSlotList(Context);
|
2018-01-25 15:59:59 -08:00
|
|
|
if(!(values[0] == 0 || (slot=LookupEffectSlot(Context, values[0])) != NULL))
|
|
|
|
{
|
2018-01-27 21:16:24 -08:00
|
|
|
UnlockEffectSlotList(Context);
|
2018-01-25 15:59:59 -08:00
|
|
|
SETERR_RETURN(Context, AL_INVALID_VALUE, AL_FALSE, "Invalid effect ID %u",
|
|
|
|
values[0]);
|
|
|
|
}
|
2018-10-29 02:05:45 +01:00
|
|
|
if((ALuint)values[1] >= (ALuint)device->NumAuxSends)
|
2018-01-25 15:59:59 -08:00
|
|
|
{
|
2018-01-27 21:16:24 -08:00
|
|
|
UnlockEffectSlotList(Context);
|
2018-01-25 15:59:59 -08:00
|
|
|
SETERR_RETURN(Context, AL_INVALID_VALUE, AL_FALSE, "Invalid send %u", values[1]);
|
|
|
|
}
|
2018-01-27 21:16:24 -08:00
|
|
|
LockFilterList(device);
|
2018-01-25 15:59:59 -08:00
|
|
|
if(!(values[2] == 0 || (filter=LookupFilter(device, values[2])) != NULL))
|
2012-08-28 22:16:55 -07:00
|
|
|
{
|
2018-01-27 21:16:24 -08:00
|
|
|
UnlockFilterList(device);
|
|
|
|
UnlockEffectSlotList(Context);
|
2018-01-25 15:59:59 -08:00
|
|
|
SETERR_RETURN(Context, AL_INVALID_VALUE, AL_FALSE, "Invalid filter ID %u",
|
|
|
|
values[2]);
|
2012-08-28 22:16:55 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
if(!filter)
|
|
|
|
{
|
|
|
|
/* Disable filter */
|
|
|
|
Source->Send[values[1]].Gain = 1.0f;
|
|
|
|
Source->Send[values[1]].GainHF = 1.0f;
|
2014-05-14 01:24:18 -07:00
|
|
|
Source->Send[values[1]].HFReference = LOWPASSFREQREF;
|
2014-05-17 07:54:25 -07:00
|
|
|
Source->Send[values[1]].GainLF = 1.0f;
|
|
|
|
Source->Send[values[1]].LFReference = HIGHPASSFREQREF;
|
2012-08-28 22:16:55 -07:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
Source->Send[values[1]].Gain = filter->Gain;
|
|
|
|
Source->Send[values[1]].GainHF = filter->GainHF;
|
2014-05-14 01:24:18 -07:00
|
|
|
Source->Send[values[1]].HFReference = filter->HFReference;
|
2014-05-17 07:54:25 -07:00
|
|
|
Source->Send[values[1]].GainLF = filter->GainLF;
|
|
|
|
Source->Send[values[1]].LFReference = filter->LFReference;
|
2012-08-28 22:16:55 -07:00
|
|
|
}
|
2018-01-27 21:16:24 -08:00
|
|
|
UnlockFilterList(device);
|
Provide asynchronous property updates for sources
This necessitates a change in how source updates are handled. Rather than just
being able to update sources when a dependent object state is changed (e.g. a
listener gain change), now all source updates must be proactively provided.
Consequently, apps that do not utilize any deferring (AL_SOFT_defer_updates or
alcSuspendContext/alcProcessContext) may utilize more CPU since it'll be
filling out more update containers for the mixer thread to use.
The upside is that there's less blocking between the app's calling thread and
the mixer thread, particularly for vectors and other multi-value properties
(filters and sends). Deferring behavior when used is also improved, since
updates that shouldn't be applied yet are simply not provided. And when they
are provided, the mixer doesn't have to ignore them, meaning the actual
deferring of a context doesn't have to synchrnously force an update -- the
process call will send any pending updates, which the mixer will apply even if
another deferral occurs before the mixer runs, because it'll still be there
waiting on the next mixer invocation.
There is one slight bug introduced by this commit. When a listener change is
made, or changes to multiple sources while updates are being deferred, it is
possible for the mixer to run while the sources are prepping their updates,
causing some of the source updates to be seen before the other. This will be
fixed in short order.
2016-05-14 23:43:40 -07:00
|
|
|
|
2017-03-12 19:27:51 -07:00
|
|
|
if(slot != Source->Send[values[1]].Slot && IsPlayingOrPaused(Source))
|
Provide asynchronous property updates for sources
This necessitates a change in how source updates are handled. Rather than just
being able to update sources when a dependent object state is changed (e.g. a
listener gain change), now all source updates must be proactively provided.
Consequently, apps that do not utilize any deferring (AL_SOFT_defer_updates or
alcSuspendContext/alcProcessContext) may utilize more CPU since it'll be
filling out more update containers for the mixer thread to use.
The upside is that there's less blocking between the app's calling thread and
the mixer thread, particularly for vectors and other multi-value properties
(filters and sends). Deferring behavior when used is also improved, since
updates that shouldn't be applied yet are simply not provided. And when they
are provided, the mixer doesn't have to ignore them, meaning the actual
deferring of a context doesn't have to synchrnously force an update -- the
process call will send any pending updates, which the mixer will apply even if
another deferral occurs before the mixer runs, because it'll still be there
waiting on the next mixer invocation.
There is one slight bug introduced by this commit. When a listener change is
made, or changes to multiple sources while updates are being deferred, it is
possible for the mixer to run while the sources are prepping their updates,
causing some of the source updates to be seen before the other. This will be
fixed in short order.
2016-05-14 23:43:40 -07:00
|
|
|
{
|
2017-04-17 21:16:01 -07:00
|
|
|
ALvoice *voice;
|
Provide asynchronous property updates for sources
This necessitates a change in how source updates are handled. Rather than just
being able to update sources when a dependent object state is changed (e.g. a
listener gain change), now all source updates must be proactively provided.
Consequently, apps that do not utilize any deferring (AL_SOFT_defer_updates or
alcSuspendContext/alcProcessContext) may utilize more CPU since it'll be
filling out more update containers for the mixer thread to use.
The upside is that there's less blocking between the app's calling thread and
the mixer thread, particularly for vectors and other multi-value properties
(filters and sends). Deferring behavior when used is also improved, since
updates that shouldn't be applied yet are simply not provided. And when they
are provided, the mixer doesn't have to ignore them, meaning the actual
deferring of a context doesn't have to synchrnously force an update -- the
process call will send any pending updates, which the mixer will apply even if
another deferral occurs before the mixer runs, because it'll still be there
waiting on the next mixer invocation.
There is one slight bug introduced by this commit. When a listener change is
made, or changes to multiple sources while updates are being deferred, it is
possible for the mixer to run while the sources are prepping their updates,
causing some of the source updates to be seen before the other. This will be
fixed in short order.
2016-05-14 23:43:40 -07:00
|
|
|
/* Add refcount on the new slot, and release the previous slot */
|
|
|
|
if(slot) IncrementRef(&slot->ref);
|
2016-05-25 06:45:56 -07:00
|
|
|
if(Source->Send[values[1]].Slot)
|
|
|
|
DecrementRef(&Source->Send[values[1]].Slot->ref);
|
|
|
|
Source->Send[values[1]].Slot = slot;
|
|
|
|
|
2017-04-17 21:16:01 -07:00
|
|
|
/* We must force an update if the auxiliary slot changed on an
|
|
|
|
* active source, in case the slot is about to be deleted.
|
Provide asynchronous property updates for sources
This necessitates a change in how source updates are handled. Rather than just
being able to update sources when a dependent object state is changed (e.g. a
listener gain change), now all source updates must be proactively provided.
Consequently, apps that do not utilize any deferring (AL_SOFT_defer_updates or
alcSuspendContext/alcProcessContext) may utilize more CPU since it'll be
filling out more update containers for the mixer thread to use.
The upside is that there's less blocking between the app's calling thread and
the mixer thread, particularly for vectors and other multi-value properties
(filters and sends). Deferring behavior when used is also improved, since
updates that shouldn't be applied yet are simply not provided. And when they
are provided, the mixer doesn't have to ignore them, meaning the actual
deferring of a context doesn't have to synchrnously force an update -- the
process call will send any pending updates, which the mixer will apply even if
another deferral occurs before the mixer runs, because it'll still be there
waiting on the next mixer invocation.
There is one slight bug introduced by this commit. When a listener change is
made, or changes to multiple sources while updates are being deferred, it is
possible for the mixer to run while the sources are prepping their updates,
causing some of the source updates to be seen before the other. This will be
fixed in short order.
2016-05-14 23:43:40 -07:00
|
|
|
*/
|
2017-04-17 21:16:01 -07:00
|
|
|
if((voice=GetSourceVoice(Source, Context)) != NULL)
|
2017-09-27 11:13:18 -07:00
|
|
|
UpdateSourceProps(Source, voice, device->NumAuxSends, Context);
|
2017-04-17 21:16:01 -07:00
|
|
|
else
|
2018-11-13 20:26:32 -08:00
|
|
|
ATOMIC_STORE(&Source->PropsClean, AL_FALSE, almemory_order_release);
|
Provide asynchronous property updates for sources
This necessitates a change in how source updates are handled. Rather than just
being able to update sources when a dependent object state is changed (e.g. a
listener gain change), now all source updates must be proactively provided.
Consequently, apps that do not utilize any deferring (AL_SOFT_defer_updates or
alcSuspendContext/alcProcessContext) may utilize more CPU since it'll be
filling out more update containers for the mixer thread to use.
The upside is that there's less blocking between the app's calling thread and
the mixer thread, particularly for vectors and other multi-value properties
(filters and sends). Deferring behavior when used is also improved, since
updates that shouldn't be applied yet are simply not provided. And when they
are provided, the mixer doesn't have to ignore them, meaning the actual
deferring of a context doesn't have to synchrnously force an update -- the
process call will send any pending updates, which the mixer will apply even if
another deferral occurs before the mixer runs, because it'll still be there
waiting on the next mixer invocation.
There is one slight bug introduced by this commit. When a listener change is
made, or changes to multiple sources while updates are being deferred, it is
possible for the mixer to run while the sources are prepping their updates,
causing some of the source updates to be seen before the other. This will be
fixed in short order.
2016-05-14 23:43:40 -07:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if(slot) IncrementRef(&slot->ref);
|
2016-05-25 06:45:56 -07:00
|
|
|
if(Source->Send[values[1]].Slot)
|
|
|
|
DecrementRef(&Source->Send[values[1]].Slot->ref);
|
|
|
|
Source->Send[values[1]].Slot = slot;
|
Provide asynchronous property updates for sources
This necessitates a change in how source updates are handled. Rather than just
being able to update sources when a dependent object state is changed (e.g. a
listener gain change), now all source updates must be proactively provided.
Consequently, apps that do not utilize any deferring (AL_SOFT_defer_updates or
alcSuspendContext/alcProcessContext) may utilize more CPU since it'll be
filling out more update containers for the mixer thread to use.
The upside is that there's less blocking between the app's calling thread and
the mixer thread, particularly for vectors and other multi-value properties
(filters and sends). Deferring behavior when used is also improved, since
updates that shouldn't be applied yet are simply not provided. And when they
are provided, the mixer doesn't have to ignore them, meaning the actual
deferring of a context doesn't have to synchrnously force an update -- the
process call will send any pending updates, which the mixer will apply even if
another deferral occurs before the mixer runs, because it'll still be there
waiting on the next mixer invocation.
There is one slight bug introduced by this commit. When a listener change is
made, or changes to multiple sources while updates are being deferred, it is
possible for the mixer to run while the sources are prepping their updates,
causing some of the source updates to be seen before the other. This will be
fixed in short order.
2016-05-14 23:43:40 -07:00
|
|
|
DO_UPDATEPROPS();
|
|
|
|
}
|
2018-01-27 21:16:24 -08:00
|
|
|
UnlockEffectSlotList(Context);
|
Provide asynchronous property updates for sources
This necessitates a change in how source updates are handled. Rather than just
being able to update sources when a dependent object state is changed (e.g. a
listener gain change), now all source updates must be proactively provided.
Consequently, apps that do not utilize any deferring (AL_SOFT_defer_updates or
alcSuspendContext/alcProcessContext) may utilize more CPU since it'll be
filling out more update containers for the mixer thread to use.
The upside is that there's less blocking between the app's calling thread and
the mixer thread, particularly for vectors and other multi-value properties
(filters and sends). Deferring behavior when used is also improved, since
updates that shouldn't be applied yet are simply not provided. And when they
are provided, the mixer doesn't have to ignore them, meaning the actual
deferring of a context doesn't have to synchrnously force an update -- the
process call will send any pending updates, which the mixer will apply even if
another deferral occurs before the mixer runs, because it'll still be there
waiting on the next mixer invocation.
There is one slight bug introduced by this commit. When a listener change is
made, or changes to multiple sources while updates are being deferred, it is
possible for the mixer to run while the sources are prepping their updates,
causing some of the source updates to be seen before the other. This will be
fixed in short order.
2016-05-14 23:43:40 -07:00
|
|
|
|
2013-10-07 09:54:35 -07:00
|
|
|
return AL_TRUE;
|
2012-08-28 22:16:55 -07:00
|
|
|
|
|
|
|
|
2015-09-22 08:48:26 -07:00
|
|
|
/* 1x float */
|
2012-08-28 22:16:55 -07:00
|
|
|
case AL_CONE_INNER_ANGLE:
|
|
|
|
case AL_CONE_OUTER_ANGLE:
|
2015-09-22 08:48:26 -07:00
|
|
|
case AL_PITCH:
|
|
|
|
case AL_GAIN:
|
|
|
|
case AL_MIN_GAIN:
|
|
|
|
case AL_MAX_GAIN:
|
2012-08-28 22:16:55 -07:00
|
|
|
case AL_REFERENCE_DISTANCE:
|
2015-09-22 08:48:26 -07:00
|
|
|
case AL_ROLLOFF_FACTOR:
|
|
|
|
case AL_CONE_OUTER_GAIN:
|
|
|
|
case AL_MAX_DISTANCE:
|
|
|
|
case AL_DOPPLER_FACTOR:
|
|
|
|
case AL_CONE_OUTER_GAINHF:
|
|
|
|
case AL_AIR_ABSORPTION_FACTOR:
|
|
|
|
case AL_ROOM_ROLLOFF_FACTOR:
|
2016-04-25 00:30:47 -07:00
|
|
|
case AL_SOURCE_RADIUS:
|
2012-08-28 22:16:55 -07:00
|
|
|
fvals[0] = (ALfloat)*values;
|
2018-11-15 03:13:54 -08:00
|
|
|
return SetSourcefv(Source, Context, prop, fvals);
|
2012-08-28 22:16:55 -07:00
|
|
|
|
2015-09-22 08:48:26 -07:00
|
|
|
/* 3x float */
|
2012-08-28 22:16:55 -07:00
|
|
|
case AL_POSITION:
|
|
|
|
case AL_VELOCITY:
|
|
|
|
case AL_DIRECTION:
|
|
|
|
fvals[0] = (ALfloat)values[0];
|
|
|
|
fvals[1] = (ALfloat)values[1];
|
|
|
|
fvals[2] = (ALfloat)values[2];
|
2018-11-15 03:13:54 -08:00
|
|
|
return SetSourcefv(Source, Context, prop, fvals);
|
2012-12-06 09:03:48 -08:00
|
|
|
|
2015-09-22 08:48:26 -07:00
|
|
|
/* 6x float */
|
2014-10-31 22:43:13 -07:00
|
|
|
case AL_ORIENTATION:
|
|
|
|
fvals[0] = (ALfloat)values[0];
|
|
|
|
fvals[1] = (ALfloat)values[1];
|
|
|
|
fvals[2] = (ALfloat)values[2];
|
|
|
|
fvals[3] = (ALfloat)values[3];
|
|
|
|
fvals[4] = (ALfloat)values[4];
|
|
|
|
fvals[5] = (ALfloat)values[5];
|
2018-11-15 03:13:54 -08:00
|
|
|
return SetSourcefv(Source, Context, prop, fvals);
|
2014-10-31 22:43:13 -07:00
|
|
|
|
2015-09-22 08:48:26 -07:00
|
|
|
case AL_SAMPLE_OFFSET_LATENCY_SOFT:
|
|
|
|
case AL_SEC_OFFSET_LATENCY_SOFT:
|
2017-12-03 14:45:19 -08:00
|
|
|
case AL_SEC_OFFSET_CLOCK_SOFT:
|
|
|
|
case AL_SAMPLE_OFFSET_CLOCK_SOFT:
|
2016-03-25 14:40:44 -07:00
|
|
|
case AL_STEREO_ANGLES:
|
2012-12-06 09:03:48 -08:00
|
|
|
break;
|
2012-10-14 01:36:46 -07:00
|
|
|
}
|
|
|
|
|
2012-12-05 09:55:05 -08:00
|
|
|
ERR("Unexpected property: 0x%04x\n", prop);
|
2018-01-25 15:59:59 -08:00
|
|
|
SETERR_RETURN(Context, AL_INVALID_ENUM, AL_FALSE, "Invalid source integer property 0x%04x",
|
|
|
|
prop);
|
2012-10-14 01:36:46 -07:00
|
|
|
}
|
|
|
|
|
2015-09-22 08:48:26 -07:00
|
|
|
static ALboolean SetSourcei64v(ALsource *Source, ALCcontext *Context, SourceProp prop, const ALint64SOFT *values)
|
2012-10-14 01:36:46 -07:00
|
|
|
{
|
2014-10-31 22:43:13 -07:00
|
|
|
ALfloat fvals[6];
|
2012-10-14 01:36:46 -07:00
|
|
|
ALint ivals[3];
|
|
|
|
|
2012-12-05 09:55:05 -08:00
|
|
|
switch(prop)
|
2012-10-14 01:36:46 -07:00
|
|
|
{
|
2015-09-22 08:48:26 -07:00
|
|
|
case AL_SOURCE_TYPE:
|
|
|
|
case AL_BUFFERS_QUEUED:
|
|
|
|
case AL_BUFFERS_PROCESSED:
|
|
|
|
case AL_SOURCE_STATE:
|
|
|
|
case AL_SAMPLE_OFFSET_LATENCY_SOFT:
|
2017-12-03 14:45:19 -08:00
|
|
|
case AL_SAMPLE_OFFSET_CLOCK_SOFT:
|
2012-11-01 18:35:20 -07:00
|
|
|
/* Query only */
|
2018-01-25 15:59:59 -08:00
|
|
|
SETERR_RETURN(Context, AL_INVALID_OPERATION, AL_FALSE,
|
|
|
|
"Setting read-only source property 0x%04x", prop);
|
2012-11-01 18:35:20 -07:00
|
|
|
|
2012-10-14 01:36:46 -07:00
|
|
|
/* 1x int */
|
|
|
|
case AL_SOURCE_RELATIVE:
|
|
|
|
case AL_LOOPING:
|
2015-09-22 08:48:26 -07:00
|
|
|
case AL_SEC_OFFSET:
|
2012-10-14 01:36:46 -07:00
|
|
|
case AL_SAMPLE_OFFSET:
|
2015-09-22 08:48:26 -07:00
|
|
|
case AL_BYTE_OFFSET:
|
2012-10-14 01:36:46 -07:00
|
|
|
case AL_DIRECT_FILTER_GAINHF_AUTO:
|
|
|
|
case AL_AUXILIARY_SEND_FILTER_GAIN_AUTO:
|
|
|
|
case AL_AUXILIARY_SEND_FILTER_GAINHF_AUTO:
|
|
|
|
case AL_DIRECT_CHANNELS_SOFT:
|
|
|
|
case AL_DISTANCE_MODEL:
|
2017-04-21 15:48:39 -07:00
|
|
|
case AL_SOURCE_RESAMPLER_SOFT:
|
2017-05-05 02:41:34 -07:00
|
|
|
case AL_SOURCE_SPATIALIZE_SOFT:
|
2012-10-14 01:36:46 -07:00
|
|
|
CHECKVAL(*values <= INT_MAX && *values >= INT_MIN);
|
|
|
|
|
2012-10-25 14:46:27 -07:00
|
|
|
ivals[0] = (ALint)*values;
|
2018-11-15 03:13:54 -08:00
|
|
|
return SetSourceiv(Source, Context, prop, ivals);
|
2012-10-14 01:36:46 -07:00
|
|
|
|
|
|
|
/* 1x uint */
|
|
|
|
case AL_BUFFER:
|
|
|
|
case AL_DIRECT_FILTER:
|
|
|
|
CHECKVAL(*values <= UINT_MAX && *values >= 0);
|
|
|
|
|
|
|
|
ivals[0] = (ALuint)*values;
|
2018-11-15 03:13:54 -08:00
|
|
|
return SetSourceiv(Source, Context, prop, ivals);
|
2012-10-14 01:36:46 -07:00
|
|
|
|
|
|
|
/* 3x uint */
|
|
|
|
case AL_AUXILIARY_SEND_FILTER:
|
|
|
|
CHECKVAL(values[0] <= UINT_MAX && values[0] >= 0 &&
|
|
|
|
values[1] <= UINT_MAX && values[1] >= 0 &&
|
|
|
|
values[2] <= UINT_MAX && values[2] >= 0);
|
|
|
|
|
|
|
|
ivals[0] = (ALuint)values[0];
|
|
|
|
ivals[1] = (ALuint)values[1];
|
|
|
|
ivals[2] = (ALuint)values[2];
|
2018-11-15 03:13:54 -08:00
|
|
|
return SetSourceiv(Source, Context, prop, ivals);
|
2012-10-14 01:36:46 -07:00
|
|
|
|
|
|
|
/* 1x float */
|
|
|
|
case AL_CONE_INNER_ANGLE:
|
|
|
|
case AL_CONE_OUTER_ANGLE:
|
2015-09-22 08:48:26 -07:00
|
|
|
case AL_PITCH:
|
|
|
|
case AL_GAIN:
|
|
|
|
case AL_MIN_GAIN:
|
|
|
|
case AL_MAX_GAIN:
|
2012-10-14 01:36:46 -07:00
|
|
|
case AL_REFERENCE_DISTANCE:
|
2015-09-22 08:48:26 -07:00
|
|
|
case AL_ROLLOFF_FACTOR:
|
|
|
|
case AL_CONE_OUTER_GAIN:
|
|
|
|
case AL_MAX_DISTANCE:
|
|
|
|
case AL_DOPPLER_FACTOR:
|
|
|
|
case AL_CONE_OUTER_GAINHF:
|
|
|
|
case AL_AIR_ABSORPTION_FACTOR:
|
|
|
|
case AL_ROOM_ROLLOFF_FACTOR:
|
2016-04-25 00:30:47 -07:00
|
|
|
case AL_SOURCE_RADIUS:
|
2012-10-14 01:36:46 -07:00
|
|
|
fvals[0] = (ALfloat)*values;
|
2018-11-15 03:13:54 -08:00
|
|
|
return SetSourcefv(Source, Context, prop, fvals);
|
2012-10-14 01:36:46 -07:00
|
|
|
|
|
|
|
/* 3x float */
|
|
|
|
case AL_POSITION:
|
|
|
|
case AL_VELOCITY:
|
|
|
|
case AL_DIRECTION:
|
|
|
|
fvals[0] = (ALfloat)values[0];
|
|
|
|
fvals[1] = (ALfloat)values[1];
|
|
|
|
fvals[2] = (ALfloat)values[2];
|
2018-11-15 03:13:54 -08:00
|
|
|
return SetSourcefv(Source, Context, prop, fvals);
|
2014-10-31 22:43:13 -07:00
|
|
|
|
|
|
|
/* 6x float */
|
|
|
|
case AL_ORIENTATION:
|
|
|
|
fvals[0] = (ALfloat)values[0];
|
|
|
|
fvals[1] = (ALfloat)values[1];
|
|
|
|
fvals[2] = (ALfloat)values[2];
|
|
|
|
fvals[3] = (ALfloat)values[3];
|
|
|
|
fvals[4] = (ALfloat)values[4];
|
|
|
|
fvals[5] = (ALfloat)values[5];
|
2018-11-15 03:13:54 -08:00
|
|
|
return SetSourcefv(Source, Context, prop, fvals);
|
2015-09-22 08:48:26 -07:00
|
|
|
|
|
|
|
case AL_SEC_OFFSET_LATENCY_SOFT:
|
2017-12-03 14:45:19 -08:00
|
|
|
case AL_SEC_OFFSET_CLOCK_SOFT:
|
2016-03-25 14:40:44 -07:00
|
|
|
case AL_STEREO_ANGLES:
|
2015-09-22 08:48:26 -07:00
|
|
|
break;
|
2012-08-28 22:16:55 -07:00
|
|
|
}
|
|
|
|
|
2012-12-05 09:55:05 -08:00
|
|
|
ERR("Unexpected property: 0x%04x\n", prop);
|
2018-01-25 15:59:59 -08:00
|
|
|
SETERR_RETURN(Context, AL_INVALID_ENUM, AL_FALSE, "Invalid source integer64 property 0x%04x",
|
|
|
|
prop);
|
2012-08-28 22:16:55 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
#undef CHECKVAL
|
|
|
|
|
|
|
|
|
2015-09-22 08:48:26 -07:00
|
|
|
static ALboolean GetSourcedv(ALsource *Source, ALCcontext *Context, SourceProp prop, ALdouble *values)
|
2012-08-20 14:16:58 -07:00
|
|
|
{
|
2015-09-21 05:52:01 -07:00
|
|
|
ALCdevice *device = Context->Device;
|
2016-05-28 00:43:14 -07:00
|
|
|
ClockLatency clocktime;
|
2016-05-28 04:11:57 -07:00
|
|
|
ALuint64 srcclock;
|
2013-10-07 09:54:35 -07:00
|
|
|
ALint ivals[3];
|
|
|
|
ALboolean err;
|
2012-08-20 14:16:58 -07:00
|
|
|
|
2012-12-05 09:22:38 -08:00
|
|
|
switch(prop)
|
2012-08-20 14:16:58 -07:00
|
|
|
{
|
2012-12-05 08:27:02 -08:00
|
|
|
case AL_GAIN:
|
|
|
|
*values = Source->Gain;
|
2013-10-07 09:54:35 -07:00
|
|
|
return AL_TRUE;
|
2012-12-05 08:27:02 -08:00
|
|
|
|
2012-10-21 11:36:27 -07:00
|
|
|
case AL_PITCH:
|
|
|
|
*values = Source->Pitch;
|
2013-10-07 09:54:35 -07:00
|
|
|
return AL_TRUE;
|
2012-10-21 11:36:27 -07:00
|
|
|
|
2012-08-20 14:16:58 -07:00
|
|
|
case AL_MAX_DISTANCE:
|
|
|
|
*values = Source->MaxDistance;
|
2013-10-07 09:54:35 -07:00
|
|
|
return AL_TRUE;
|
2012-08-20 14:16:58 -07:00
|
|
|
|
|
|
|
case AL_ROLLOFF_FACTOR:
|
2017-05-05 03:19:50 -07:00
|
|
|
*values = Source->RolloffFactor;
|
2013-10-07 09:54:35 -07:00
|
|
|
return AL_TRUE;
|
2012-08-20 14:16:58 -07:00
|
|
|
|
|
|
|
case AL_REFERENCE_DISTANCE:
|
|
|
|
*values = Source->RefDistance;
|
2013-10-07 09:54:35 -07:00
|
|
|
return AL_TRUE;
|
2012-08-20 14:16:58 -07:00
|
|
|
|
|
|
|
case AL_CONE_INNER_ANGLE:
|
|
|
|
*values = Source->InnerAngle;
|
2013-10-07 09:54:35 -07:00
|
|
|
return AL_TRUE;
|
2012-08-20 14:16:58 -07:00
|
|
|
|
|
|
|
case AL_CONE_OUTER_ANGLE:
|
|
|
|
*values = Source->OuterAngle;
|
2013-10-07 09:54:35 -07:00
|
|
|
return AL_TRUE;
|
2012-08-20 14:16:58 -07:00
|
|
|
|
2012-10-21 11:36:27 -07:00
|
|
|
case AL_MIN_GAIN:
|
|
|
|
*values = Source->MinGain;
|
2013-10-07 09:54:35 -07:00
|
|
|
return AL_TRUE;
|
2012-10-21 11:36:27 -07:00
|
|
|
|
|
|
|
case AL_MAX_GAIN:
|
|
|
|
*values = Source->MaxGain;
|
2013-10-07 09:54:35 -07:00
|
|
|
return AL_TRUE;
|
2012-10-21 11:36:27 -07:00
|
|
|
|
|
|
|
case AL_CONE_OUTER_GAIN:
|
|
|
|
*values = Source->OuterGain;
|
2013-10-07 09:54:35 -07:00
|
|
|
return AL_TRUE;
|
2012-10-21 11:36:27 -07:00
|
|
|
|
2012-08-20 14:16:58 -07:00
|
|
|
case AL_SEC_OFFSET:
|
|
|
|
case AL_SAMPLE_OFFSET:
|
|
|
|
case AL_BYTE_OFFSET:
|
2017-02-27 15:35:15 -08:00
|
|
|
*values = GetSourceOffset(Source, prop, Context);
|
2013-10-07 09:54:35 -07:00
|
|
|
return AL_TRUE;
|
2012-08-20 14:16:58 -07:00
|
|
|
|
2012-09-14 09:02:36 -07:00
|
|
|
case AL_CONE_OUTER_GAINHF:
|
|
|
|
*values = Source->OuterGainHF;
|
2013-10-07 09:54:35 -07:00
|
|
|
return AL_TRUE;
|
2012-09-14 09:02:36 -07:00
|
|
|
|
|
|
|
case AL_AIR_ABSORPTION_FACTOR:
|
|
|
|
*values = Source->AirAbsorptionFactor;
|
2013-10-07 09:54:35 -07:00
|
|
|
return AL_TRUE;
|
2012-09-14 09:02:36 -07:00
|
|
|
|
|
|
|
case AL_ROOM_ROLLOFF_FACTOR:
|
|
|
|
*values = Source->RoomRolloffFactor;
|
2013-10-07 09:54:35 -07:00
|
|
|
return AL_TRUE;
|
2012-09-14 09:02:36 -07:00
|
|
|
|
2012-08-20 14:16:58 -07:00
|
|
|
case AL_DOPPLER_FACTOR:
|
|
|
|
*values = Source->DopplerFactor;
|
2013-10-07 09:54:35 -07:00
|
|
|
return AL_TRUE;
|
2012-08-20 14:16:58 -07:00
|
|
|
|
2016-04-25 00:30:47 -07:00
|
|
|
case AL_SOURCE_RADIUS:
|
|
|
|
*values = Source->Radius;
|
2013-10-07 09:54:35 -07:00
|
|
|
return AL_TRUE;
|
2012-08-20 15:57:27 -07:00
|
|
|
|
2016-03-25 14:40:44 -07:00
|
|
|
case AL_STEREO_ANGLES:
|
|
|
|
values[0] = Source->StereoPan[0];
|
|
|
|
values[1] = Source->StereoPan[1];
|
|
|
|
return AL_TRUE;
|
|
|
|
|
2016-04-25 00:30:47 -07:00
|
|
|
case AL_SEC_OFFSET_LATENCY_SOFT:
|
2016-05-28 04:11:57 -07:00
|
|
|
/* Get the source offset with the clock time first. Then get the
|
|
|
|
* clock time with the device latency. Order is important.
|
|
|
|
*/
|
2017-02-27 15:35:15 -08:00
|
|
|
values[0] = GetSourceSecOffset(Source, Context, &srcclock);
|
2018-02-03 01:26:04 -08:00
|
|
|
almtx_lock(&device->BackendLock);
|
2018-09-25 23:05:27 -07:00
|
|
|
clocktime = GetClockLatency(device);
|
2018-02-03 01:26:04 -08:00
|
|
|
almtx_unlock(&device->BackendLock);
|
2016-05-28 04:11:57 -07:00
|
|
|
if(srcclock == (ALuint64)clocktime.ClockTime)
|
|
|
|
values[1] = (ALdouble)clocktime.Latency / 1000000000.0;
|
|
|
|
else
|
|
|
|
{
|
|
|
|
/* If the clock time incremented, reduce the latency by that
|
|
|
|
* much since it's that much closer to the source offset it got
|
|
|
|
* earlier.
|
|
|
|
*/
|
|
|
|
ALuint64 diff = clocktime.ClockTime - srcclock;
|
|
|
|
values[1] = (ALdouble)(clocktime.Latency - minu64(clocktime.Latency, diff)) /
|
|
|
|
1000000000.0;
|
|
|
|
}
|
2016-04-25 00:30:47 -07:00
|
|
|
return AL_TRUE;
|
|
|
|
|
2017-12-03 14:45:19 -08:00
|
|
|
case AL_SEC_OFFSET_CLOCK_SOFT:
|
|
|
|
values[0] = GetSourceSecOffset(Source, Context, &srcclock);
|
|
|
|
values[1] = srcclock / 1000000000.0;
|
|
|
|
return AL_TRUE;
|
|
|
|
|
2012-08-20 14:16:58 -07:00
|
|
|
case AL_POSITION:
|
Provide asynchronous property updates for sources
This necessitates a change in how source updates are handled. Rather than just
being able to update sources when a dependent object state is changed (e.g. a
listener gain change), now all source updates must be proactively provided.
Consequently, apps that do not utilize any deferring (AL_SOFT_defer_updates or
alcSuspendContext/alcProcessContext) may utilize more CPU since it'll be
filling out more update containers for the mixer thread to use.
The upside is that there's less blocking between the app's calling thread and
the mixer thread, particularly for vectors and other multi-value properties
(filters and sends). Deferring behavior when used is also improved, since
updates that shouldn't be applied yet are simply not provided. And when they
are provided, the mixer doesn't have to ignore them, meaning the actual
deferring of a context doesn't have to synchrnously force an update -- the
process call will send any pending updates, which the mixer will apply even if
another deferral occurs before the mixer runs, because it'll still be there
waiting on the next mixer invocation.
There is one slight bug introduced by this commit. When a listener change is
made, or changes to multiple sources while updates are being deferred, it is
possible for the mixer to run while the sources are prepping their updates,
causing some of the source updates to be seen before the other. This will be
fixed in short order.
2016-05-14 23:43:40 -07:00
|
|
|
values[0] = Source->Position[0];
|
|
|
|
values[1] = Source->Position[1];
|
|
|
|
values[2] = Source->Position[2];
|
2013-10-07 09:54:35 -07:00
|
|
|
return AL_TRUE;
|
2012-08-20 14:16:58 -07:00
|
|
|
|
|
|
|
case AL_VELOCITY:
|
Provide asynchronous property updates for sources
This necessitates a change in how source updates are handled. Rather than just
being able to update sources when a dependent object state is changed (e.g. a
listener gain change), now all source updates must be proactively provided.
Consequently, apps that do not utilize any deferring (AL_SOFT_defer_updates or
alcSuspendContext/alcProcessContext) may utilize more CPU since it'll be
filling out more update containers for the mixer thread to use.
The upside is that there's less blocking between the app's calling thread and
the mixer thread, particularly for vectors and other multi-value properties
(filters and sends). Deferring behavior when used is also improved, since
updates that shouldn't be applied yet are simply not provided. And when they
are provided, the mixer doesn't have to ignore them, meaning the actual
deferring of a context doesn't have to synchrnously force an update -- the
process call will send any pending updates, which the mixer will apply even if
another deferral occurs before the mixer runs, because it'll still be there
waiting on the next mixer invocation.
There is one slight bug introduced by this commit. When a listener change is
made, or changes to multiple sources while updates are being deferred, it is
possible for the mixer to run while the sources are prepping their updates,
causing some of the source updates to be seen before the other. This will be
fixed in short order.
2016-05-14 23:43:40 -07:00
|
|
|
values[0] = Source->Velocity[0];
|
|
|
|
values[1] = Source->Velocity[1];
|
|
|
|
values[2] = Source->Velocity[2];
|
2013-10-07 09:54:35 -07:00
|
|
|
return AL_TRUE;
|
2012-08-20 14:16:58 -07:00
|
|
|
|
|
|
|
case AL_DIRECTION:
|
Provide asynchronous property updates for sources
This necessitates a change in how source updates are handled. Rather than just
being able to update sources when a dependent object state is changed (e.g. a
listener gain change), now all source updates must be proactively provided.
Consequently, apps that do not utilize any deferring (AL_SOFT_defer_updates or
alcSuspendContext/alcProcessContext) may utilize more CPU since it'll be
filling out more update containers for the mixer thread to use.
The upside is that there's less blocking between the app's calling thread and
the mixer thread, particularly for vectors and other multi-value properties
(filters and sends). Deferring behavior when used is also improved, since
updates that shouldn't be applied yet are simply not provided. And when they
are provided, the mixer doesn't have to ignore them, meaning the actual
deferring of a context doesn't have to synchrnously force an update -- the
process call will send any pending updates, which the mixer will apply even if
another deferral occurs before the mixer runs, because it'll still be there
waiting on the next mixer invocation.
There is one slight bug introduced by this commit. When a listener change is
made, or changes to multiple sources while updates are being deferred, it is
possible for the mixer to run while the sources are prepping their updates,
causing some of the source updates to be seen before the other. This will be
fixed in short order.
2016-05-14 23:43:40 -07:00
|
|
|
values[0] = Source->Direction[0];
|
|
|
|
values[1] = Source->Direction[1];
|
|
|
|
values[2] = Source->Direction[2];
|
2013-10-07 09:54:35 -07:00
|
|
|
return AL_TRUE;
|
2012-08-20 14:16:58 -07:00
|
|
|
|
2014-10-31 22:43:13 -07:00
|
|
|
case AL_ORIENTATION:
|
|
|
|
values[0] = Source->Orientation[0][0];
|
|
|
|
values[1] = Source->Orientation[0][1];
|
|
|
|
values[2] = Source->Orientation[0][2];
|
|
|
|
values[3] = Source->Orientation[1][0];
|
|
|
|
values[4] = Source->Orientation[1][1];
|
|
|
|
values[5] = Source->Orientation[1][2];
|
|
|
|
return AL_TRUE;
|
|
|
|
|
2015-09-22 08:48:26 -07:00
|
|
|
/* 1x int */
|
2012-08-20 14:16:58 -07:00
|
|
|
case AL_SOURCE_RELATIVE:
|
|
|
|
case AL_LOOPING:
|
|
|
|
case AL_SOURCE_STATE:
|
|
|
|
case AL_BUFFERS_QUEUED:
|
|
|
|
case AL_BUFFERS_PROCESSED:
|
|
|
|
case AL_SOURCE_TYPE:
|
|
|
|
case AL_DIRECT_FILTER_GAINHF_AUTO:
|
|
|
|
case AL_AUXILIARY_SEND_FILTER_GAIN_AUTO:
|
|
|
|
case AL_AUXILIARY_SEND_FILTER_GAINHF_AUTO:
|
|
|
|
case AL_DIRECT_CHANNELS_SOFT:
|
|
|
|
case AL_DISTANCE_MODEL:
|
2017-04-21 15:48:39 -07:00
|
|
|
case AL_SOURCE_RESAMPLER_SOFT:
|
2017-05-05 02:41:34 -07:00
|
|
|
case AL_SOURCE_SPATIALIZE_SOFT:
|
2018-11-15 03:13:54 -08:00
|
|
|
if((err=GetSourceiv(Source, Context, prop, ivals)) != AL_FALSE)
|
2012-12-05 09:22:38 -08:00
|
|
|
*values = (ALdouble)ivals[0];
|
|
|
|
return err;
|
2015-09-22 08:48:26 -07:00
|
|
|
|
|
|
|
case AL_BUFFER:
|
|
|
|
case AL_DIRECT_FILTER:
|
|
|
|
case AL_AUXILIARY_SEND_FILTER:
|
|
|
|
case AL_SAMPLE_OFFSET_LATENCY_SOFT:
|
2017-12-03 14:45:19 -08:00
|
|
|
case AL_SAMPLE_OFFSET_CLOCK_SOFT:
|
2015-09-22 08:48:26 -07:00
|
|
|
break;
|
2012-08-20 14:16:58 -07:00
|
|
|
}
|
|
|
|
|
2012-12-05 09:22:38 -08:00
|
|
|
ERR("Unexpected property: 0x%04x\n", prop);
|
2018-01-25 15:59:59 -08:00
|
|
|
SETERR_RETURN(Context, AL_INVALID_ENUM, AL_FALSE, "Invalid source double property 0x%04x",
|
|
|
|
prop);
|
2012-08-20 14:16:58 -07:00
|
|
|
}
|
|
|
|
|
2015-09-22 08:48:26 -07:00
|
|
|
static ALboolean GetSourceiv(ALsource *Source, ALCcontext *Context, SourceProp prop, ALint *values)
|
2012-08-20 14:16:58 -07:00
|
|
|
{
|
|
|
|
ALbufferlistitem *BufferList;
|
2014-10-31 22:43:13 -07:00
|
|
|
ALdouble dvals[6];
|
2013-10-07 09:54:35 -07:00
|
|
|
ALboolean err;
|
2012-08-20 14:16:58 -07:00
|
|
|
|
2012-12-05 09:55:05 -08:00
|
|
|
switch(prop)
|
2012-08-20 14:16:58 -07:00
|
|
|
{
|
|
|
|
case AL_SOURCE_RELATIVE:
|
|
|
|
*values = Source->HeadRelative;
|
2013-10-07 09:54:35 -07:00
|
|
|
return AL_TRUE;
|
2012-08-20 14:16:58 -07:00
|
|
|
|
|
|
|
case AL_LOOPING:
|
2017-04-18 00:58:33 -07:00
|
|
|
*values = Source->Looping;
|
2013-10-07 09:54:35 -07:00
|
|
|
return AL_TRUE;
|
2012-08-20 14:16:58 -07:00
|
|
|
|
|
|
|
case AL_BUFFER:
|
2017-04-18 00:58:33 -07:00
|
|
|
BufferList = (Source->SourceType == AL_STATIC) ? Source->queue : NULL;
|
2017-12-15 22:59:51 -08:00
|
|
|
*values = (BufferList && BufferList->num_buffers >= 1 && BufferList->buffers[0]) ?
|
|
|
|
BufferList->buffers[0]->id : 0;
|
2013-10-07 09:54:35 -07:00
|
|
|
return AL_TRUE;
|
2012-08-20 14:16:58 -07:00
|
|
|
|
|
|
|
case AL_SOURCE_STATE:
|
2017-03-06 13:16:14 -08:00
|
|
|
*values = GetSourceState(Source, GetSourceVoice(Source, Context));
|
2013-10-07 09:54:35 -07:00
|
|
|
return AL_TRUE;
|
2012-08-20 14:16:58 -07:00
|
|
|
|
|
|
|
case AL_BUFFERS_QUEUED:
|
2017-04-18 00:58:33 -07:00
|
|
|
if(!(BufferList=Source->queue))
|
2014-05-10 03:33:41 -07:00
|
|
|
*values = 0;
|
|
|
|
else
|
|
|
|
{
|
|
|
|
ALsizei count = 0;
|
|
|
|
do {
|
2018-02-25 09:51:07 -08:00
|
|
|
count += BufferList->num_buffers;
|
2017-04-19 19:54:17 -07:00
|
|
|
BufferList = ATOMIC_LOAD(&BufferList->next, almemory_order_relaxed);
|
|
|
|
} while(BufferList != NULL);
|
2014-05-10 03:33:41 -07:00
|
|
|
*values = count;
|
|
|
|
}
|
2013-10-07 09:54:35 -07:00
|
|
|
return AL_TRUE;
|
2012-08-20 14:16:58 -07:00
|
|
|
|
|
|
|
case AL_BUFFERS_PROCESSED:
|
2017-04-18 00:58:33 -07:00
|
|
|
if(Source->Looping || Source->SourceType != AL_STREAMING)
|
2012-08-20 14:16:58 -07:00
|
|
|
{
|
|
|
|
/* Buffers on a looping source are in a perpetual state of
|
|
|
|
* PENDING, so don't report any as PROCESSED */
|
|
|
|
*values = 0;
|
|
|
|
}
|
|
|
|
else
|
2014-05-10 03:21:40 -07:00
|
|
|
{
|
2017-04-18 00:58:33 -07:00
|
|
|
const ALbufferlistitem *BufferList = Source->queue;
|
2017-02-27 15:35:15 -08:00
|
|
|
const ALbufferlistitem *Current = NULL;
|
2014-05-10 03:21:40 -07:00
|
|
|
ALsizei played = 0;
|
2017-02-27 15:35:15 -08:00
|
|
|
ALvoice *voice;
|
|
|
|
|
|
|
|
if((voice=GetSourceVoice(Source, Context)) != NULL)
|
2018-02-25 09:51:07 -08:00
|
|
|
Current = ATOMIC_LOAD(&voice->current_buffer, almemory_order_relaxed);
|
2018-02-24 09:44:52 -08:00
|
|
|
else if(Source->state == AL_INITIAL)
|
2017-02-27 15:35:15 -08:00
|
|
|
Current = BufferList;
|
|
|
|
|
2014-07-31 07:20:36 -07:00
|
|
|
while(BufferList && BufferList != Current)
|
2014-05-10 03:21:40 -07:00
|
|
|
{
|
2018-02-25 09:51:07 -08:00
|
|
|
played += BufferList->num_buffers;
|
2017-04-21 16:58:55 -07:00
|
|
|
BufferList = ATOMIC_LOAD(&CONST_CAST(ALbufferlistitem*,BufferList)->next,
|
|
|
|
almemory_order_relaxed);
|
2014-05-10 03:21:40 -07:00
|
|
|
}
|
|
|
|
*values = played;
|
|
|
|
}
|
2013-10-07 09:54:35 -07:00
|
|
|
return AL_TRUE;
|
2012-08-20 14:16:58 -07:00
|
|
|
|
|
|
|
case AL_SOURCE_TYPE:
|
|
|
|
*values = Source->SourceType;
|
2013-10-07 09:54:35 -07:00
|
|
|
return AL_TRUE;
|
2012-08-20 14:16:58 -07:00
|
|
|
|
|
|
|
case AL_DIRECT_FILTER_GAINHF_AUTO:
|
|
|
|
*values = Source->DryGainHFAuto;
|
2013-10-07 09:54:35 -07:00
|
|
|
return AL_TRUE;
|
2012-08-20 14:16:58 -07:00
|
|
|
|
|
|
|
case AL_AUXILIARY_SEND_FILTER_GAIN_AUTO:
|
|
|
|
*values = Source->WetGainAuto;
|
2013-10-07 09:54:35 -07:00
|
|
|
return AL_TRUE;
|
2012-08-20 14:16:58 -07:00
|
|
|
|
|
|
|
case AL_AUXILIARY_SEND_FILTER_GAINHF_AUTO:
|
|
|
|
*values = Source->WetGainHFAuto;
|
2013-10-07 09:54:35 -07:00
|
|
|
return AL_TRUE;
|
2012-08-20 14:16:58 -07:00
|
|
|
|
|
|
|
case AL_DIRECT_CHANNELS_SOFT:
|
|
|
|
*values = Source->DirectChannels;
|
2013-10-07 09:54:35 -07:00
|
|
|
return AL_TRUE;
|
2012-08-20 14:16:58 -07:00
|
|
|
|
|
|
|
case AL_DISTANCE_MODEL:
|
2018-11-18 03:39:32 -08:00
|
|
|
*values = static_cast<int>(Source->mDistanceModel);
|
2013-10-07 09:54:35 -07:00
|
|
|
return AL_TRUE;
|
2012-08-20 14:16:58 -07:00
|
|
|
|
2017-04-21 15:48:39 -07:00
|
|
|
case AL_SOURCE_RESAMPLER_SOFT:
|
|
|
|
*values = Source->Resampler;
|
|
|
|
return AL_TRUE;
|
|
|
|
|
2017-05-05 02:41:34 -07:00
|
|
|
case AL_SOURCE_SPATIALIZE_SOFT:
|
|
|
|
*values = Source->Spatialize;
|
|
|
|
return AL_TRUE;
|
|
|
|
|
2015-09-22 08:48:26 -07:00
|
|
|
/* 1x float/double */
|
2012-08-20 14:16:58 -07:00
|
|
|
case AL_CONE_INNER_ANGLE:
|
|
|
|
case AL_CONE_OUTER_ANGLE:
|
2015-09-22 08:48:26 -07:00
|
|
|
case AL_PITCH:
|
|
|
|
case AL_GAIN:
|
|
|
|
case AL_MIN_GAIN:
|
|
|
|
case AL_MAX_GAIN:
|
|
|
|
case AL_REFERENCE_DISTANCE:
|
|
|
|
case AL_ROLLOFF_FACTOR:
|
|
|
|
case AL_CONE_OUTER_GAIN:
|
|
|
|
case AL_MAX_DISTANCE:
|
2012-08-20 14:16:58 -07:00
|
|
|
case AL_SEC_OFFSET:
|
|
|
|
case AL_SAMPLE_OFFSET:
|
|
|
|
case AL_BYTE_OFFSET:
|
|
|
|
case AL_DOPPLER_FACTOR:
|
2015-09-22 08:48:26 -07:00
|
|
|
case AL_AIR_ABSORPTION_FACTOR:
|
|
|
|
case AL_ROOM_ROLLOFF_FACTOR:
|
|
|
|
case AL_CONE_OUTER_GAINHF:
|
2016-04-25 00:30:47 -07:00
|
|
|
case AL_SOURCE_RADIUS:
|
2015-10-16 10:52:10 -07:00
|
|
|
if((err=GetSourcedv(Source, Context, prop, dvals)) != AL_FALSE)
|
2012-12-05 09:55:05 -08:00
|
|
|
*values = (ALint)dvals[0];
|
|
|
|
return err;
|
2012-08-20 14:16:58 -07:00
|
|
|
|
2015-09-22 08:48:26 -07:00
|
|
|
/* 3x float/double */
|
2012-08-20 14:16:58 -07:00
|
|
|
case AL_POSITION:
|
|
|
|
case AL_VELOCITY:
|
|
|
|
case AL_DIRECTION:
|
2015-10-16 10:52:10 -07:00
|
|
|
if((err=GetSourcedv(Source, Context, prop, dvals)) != AL_FALSE)
|
2012-12-05 09:55:05 -08:00
|
|
|
{
|
|
|
|
values[0] = (ALint)dvals[0];
|
|
|
|
values[1] = (ALint)dvals[1];
|
|
|
|
values[2] = (ALint)dvals[2];
|
|
|
|
}
|
|
|
|
return err;
|
|
|
|
|
2015-09-22 08:48:26 -07:00
|
|
|
/* 6x float/double */
|
2014-10-31 22:43:13 -07:00
|
|
|
case AL_ORIENTATION:
|
2015-10-16 10:52:10 -07:00
|
|
|
if((err=GetSourcedv(Source, Context, prop, dvals)) != AL_FALSE)
|
2014-10-31 22:43:13 -07:00
|
|
|
{
|
|
|
|
values[0] = (ALint)dvals[0];
|
|
|
|
values[1] = (ALint)dvals[1];
|
|
|
|
values[2] = (ALint)dvals[2];
|
|
|
|
values[3] = (ALint)dvals[3];
|
|
|
|
values[4] = (ALint)dvals[4];
|
|
|
|
values[5] = (ALint)dvals[5];
|
|
|
|
}
|
|
|
|
return err;
|
|
|
|
|
2015-09-22 08:48:26 -07:00
|
|
|
case AL_SAMPLE_OFFSET_LATENCY_SOFT:
|
2017-12-03 14:45:19 -08:00
|
|
|
case AL_SAMPLE_OFFSET_CLOCK_SOFT:
|
2015-09-22 08:48:26 -07:00
|
|
|
break; /* i64 only */
|
|
|
|
case AL_SEC_OFFSET_LATENCY_SOFT:
|
2017-12-03 14:45:19 -08:00
|
|
|
case AL_SEC_OFFSET_CLOCK_SOFT:
|
2015-09-22 08:48:26 -07:00
|
|
|
break; /* Double only */
|
2016-03-25 14:40:44 -07:00
|
|
|
case AL_STEREO_ANGLES:
|
|
|
|
break; /* Float/double only */
|
2012-08-20 14:16:58 -07:00
|
|
|
|
2015-09-22 08:48:26 -07:00
|
|
|
case AL_DIRECT_FILTER:
|
|
|
|
case AL_AUXILIARY_SEND_FILTER:
|
|
|
|
break; /* ??? */
|
2012-08-20 14:16:58 -07:00
|
|
|
}
|
|
|
|
|
2012-12-05 09:55:05 -08:00
|
|
|
ERR("Unexpected property: 0x%04x\n", prop);
|
2018-01-25 15:59:59 -08:00
|
|
|
SETERR_RETURN(Context, AL_INVALID_ENUM, AL_FALSE, "Invalid source integer property 0x%04x",
|
|
|
|
prop);
|
2012-08-20 14:16:58 -07:00
|
|
|
}
|
|
|
|
|
2015-09-22 08:48:26 -07:00
|
|
|
static ALboolean GetSourcei64v(ALsource *Source, ALCcontext *Context, SourceProp prop, ALint64 *values)
|
2012-08-20 14:16:58 -07:00
|
|
|
{
|
2015-09-21 05:52:01 -07:00
|
|
|
ALCdevice *device = Context->Device;
|
2016-05-28 00:43:14 -07:00
|
|
|
ClockLatency clocktime;
|
2016-05-28 04:11:57 -07:00
|
|
|
ALuint64 srcclock;
|
2014-10-31 22:43:13 -07:00
|
|
|
ALdouble dvals[6];
|
2013-10-07 09:54:35 -07:00
|
|
|
ALint ivals[3];
|
|
|
|
ALboolean err;
|
2012-08-20 14:16:58 -07:00
|
|
|
|
2012-12-05 09:55:05 -08:00
|
|
|
switch(prop)
|
2012-08-20 14:16:58 -07:00
|
|
|
{
|
|
|
|
case AL_SAMPLE_OFFSET_LATENCY_SOFT:
|
2016-05-28 04:11:57 -07:00
|
|
|
/* Get the source offset with the clock time first. Then get the
|
|
|
|
* clock time with the device latency. Order is important.
|
|
|
|
*/
|
2017-02-27 15:35:15 -08:00
|
|
|
values[0] = GetSourceSampleOffset(Source, Context, &srcclock);
|
2018-02-03 01:26:04 -08:00
|
|
|
almtx_lock(&device->BackendLock);
|
2018-09-25 23:05:27 -07:00
|
|
|
clocktime = GetClockLatency(device);
|
2018-02-03 01:26:04 -08:00
|
|
|
almtx_unlock(&device->BackendLock);
|
2016-05-28 04:11:57 -07:00
|
|
|
if(srcclock == (ALuint64)clocktime.ClockTime)
|
|
|
|
values[1] = clocktime.Latency;
|
|
|
|
else
|
|
|
|
{
|
|
|
|
/* If the clock time incremented, reduce the latency by that
|
|
|
|
* much since it's that much closer to the source offset it got
|
|
|
|
* earlier.
|
|
|
|
*/
|
|
|
|
ALuint64 diff = clocktime.ClockTime - srcclock;
|
|
|
|
values[1] = clocktime.Latency - minu64(clocktime.Latency, diff);
|
|
|
|
}
|
2013-10-07 09:54:35 -07:00
|
|
|
return AL_TRUE;
|
2012-08-20 14:16:58 -07:00
|
|
|
|
2017-12-03 14:45:19 -08:00
|
|
|
case AL_SAMPLE_OFFSET_CLOCK_SOFT:
|
|
|
|
values[0] = GetSourceSampleOffset(Source, Context, &srcclock);
|
|
|
|
values[1] = srcclock;
|
|
|
|
return AL_TRUE;
|
|
|
|
|
2015-09-22 08:48:26 -07:00
|
|
|
/* 1x float/double */
|
2012-08-20 14:16:58 -07:00
|
|
|
case AL_CONE_INNER_ANGLE:
|
|
|
|
case AL_CONE_OUTER_ANGLE:
|
2015-09-22 08:48:26 -07:00
|
|
|
case AL_PITCH:
|
|
|
|
case AL_GAIN:
|
|
|
|
case AL_MIN_GAIN:
|
|
|
|
case AL_MAX_GAIN:
|
|
|
|
case AL_REFERENCE_DISTANCE:
|
|
|
|
case AL_ROLLOFF_FACTOR:
|
|
|
|
case AL_CONE_OUTER_GAIN:
|
|
|
|
case AL_MAX_DISTANCE:
|
2012-08-20 14:16:58 -07:00
|
|
|
case AL_SEC_OFFSET:
|
|
|
|
case AL_SAMPLE_OFFSET:
|
|
|
|
case AL_BYTE_OFFSET:
|
|
|
|
case AL_DOPPLER_FACTOR:
|
2015-09-22 08:48:26 -07:00
|
|
|
case AL_AIR_ABSORPTION_FACTOR:
|
|
|
|
case AL_ROOM_ROLLOFF_FACTOR:
|
|
|
|
case AL_CONE_OUTER_GAINHF:
|
2016-04-25 00:30:47 -07:00
|
|
|
case AL_SOURCE_RADIUS:
|
2015-10-16 10:52:10 -07:00
|
|
|
if((err=GetSourcedv(Source, Context, prop, dvals)) != AL_FALSE)
|
2012-12-05 09:55:05 -08:00
|
|
|
*values = (ALint64)dvals[0];
|
|
|
|
return err;
|
2012-08-20 14:16:58 -07:00
|
|
|
|
2015-09-22 08:48:26 -07:00
|
|
|
/* 3x float/double */
|
2012-08-20 14:16:58 -07:00
|
|
|
case AL_POSITION:
|
|
|
|
case AL_VELOCITY:
|
|
|
|
case AL_DIRECTION:
|
2015-10-16 10:52:10 -07:00
|
|
|
if((err=GetSourcedv(Source, Context, prop, dvals)) != AL_FALSE)
|
2012-12-05 09:55:05 -08:00
|
|
|
{
|
|
|
|
values[0] = (ALint64)dvals[0];
|
|
|
|
values[1] = (ALint64)dvals[1];
|
|
|
|
values[2] = (ALint64)dvals[2];
|
|
|
|
}
|
|
|
|
return err;
|
2012-08-20 14:16:58 -07:00
|
|
|
|
2015-09-22 08:48:26 -07:00
|
|
|
/* 6x float/double */
|
2014-10-31 22:43:13 -07:00
|
|
|
case AL_ORIENTATION:
|
2015-10-16 10:52:10 -07:00
|
|
|
if((err=GetSourcedv(Source, Context, prop, dvals)) != AL_FALSE)
|
2014-10-31 22:43:13 -07:00
|
|
|
{
|
|
|
|
values[0] = (ALint64)dvals[0];
|
|
|
|
values[1] = (ALint64)dvals[1];
|
|
|
|
values[2] = (ALint64)dvals[2];
|
|
|
|
values[3] = (ALint64)dvals[3];
|
|
|
|
values[4] = (ALint64)dvals[4];
|
|
|
|
values[5] = (ALint64)dvals[5];
|
|
|
|
}
|
|
|
|
return err;
|
|
|
|
|
2015-09-22 08:48:26 -07:00
|
|
|
/* 1x int */
|
2012-08-20 14:16:58 -07:00
|
|
|
case AL_SOURCE_RELATIVE:
|
|
|
|
case AL_LOOPING:
|
|
|
|
case AL_SOURCE_STATE:
|
|
|
|
case AL_BUFFERS_QUEUED:
|
|
|
|
case AL_BUFFERS_PROCESSED:
|
|
|
|
case AL_SOURCE_TYPE:
|
|
|
|
case AL_DIRECT_FILTER_GAINHF_AUTO:
|
|
|
|
case AL_AUXILIARY_SEND_FILTER_GAIN_AUTO:
|
|
|
|
case AL_AUXILIARY_SEND_FILTER_GAINHF_AUTO:
|
|
|
|
case AL_DIRECT_CHANNELS_SOFT:
|
|
|
|
case AL_DISTANCE_MODEL:
|
2017-04-21 15:48:39 -07:00
|
|
|
case AL_SOURCE_RESAMPLER_SOFT:
|
2017-05-05 02:41:34 -07:00
|
|
|
case AL_SOURCE_SPATIALIZE_SOFT:
|
2015-10-16 10:52:10 -07:00
|
|
|
if((err=GetSourceiv(Source, Context, prop, ivals)) != AL_FALSE)
|
2012-12-07 18:43:13 -08:00
|
|
|
*values = ivals[0];
|
|
|
|
return err;
|
|
|
|
|
2015-09-22 08:48:26 -07:00
|
|
|
/* 1x uint */
|
|
|
|
case AL_BUFFER:
|
|
|
|
case AL_DIRECT_FILTER:
|
2015-10-16 10:52:10 -07:00
|
|
|
if((err=GetSourceiv(Source, Context, prop, ivals)) != AL_FALSE)
|
2014-07-05 02:01:36 -07:00
|
|
|
*values = (ALuint)ivals[0];
|
2012-12-07 18:43:13 -08:00
|
|
|
return err;
|
|
|
|
|
2015-09-22 08:48:26 -07:00
|
|
|
/* 3x uint */
|
|
|
|
case AL_AUXILIARY_SEND_FILTER:
|
2015-10-16 10:52:10 -07:00
|
|
|
if((err=GetSourceiv(Source, Context, prop, ivals)) != AL_FALSE)
|
2012-12-07 18:43:13 -08:00
|
|
|
{
|
2014-07-05 02:01:36 -07:00
|
|
|
values[0] = (ALuint)ivals[0];
|
|
|
|
values[1] = (ALuint)ivals[1];
|
|
|
|
values[2] = (ALuint)ivals[2];
|
2012-12-07 18:43:13 -08:00
|
|
|
}
|
2012-12-05 09:55:05 -08:00
|
|
|
return err;
|
2015-09-22 08:48:26 -07:00
|
|
|
|
|
|
|
case AL_SEC_OFFSET_LATENCY_SOFT:
|
2017-12-03 14:45:19 -08:00
|
|
|
case AL_SEC_OFFSET_CLOCK_SOFT:
|
2015-09-22 08:48:26 -07:00
|
|
|
break; /* Double only */
|
2016-03-25 14:40:44 -07:00
|
|
|
case AL_STEREO_ANGLES:
|
|
|
|
break; /* Float/double only */
|
2012-08-20 14:16:58 -07:00
|
|
|
}
|
|
|
|
|
2012-12-05 09:55:05 -08:00
|
|
|
ERR("Unexpected property: 0x%04x\n", prop);
|
2018-01-25 15:59:59 -08:00
|
|
|
SETERR_RETURN(Context, AL_INVALID_ENUM, AL_FALSE, "Invalid source integer64 property 0x%04x",
|
|
|
|
prop);
|
2012-08-20 14:16:58 -07:00
|
|
|
}
|
|
|
|
|
2010-05-01 19:59:41 -07:00
|
|
|
|
2012-04-19 21:46:29 -07:00
|
|
|
AL_API ALvoid AL_APIENTRY alGenSources(ALsizei n, ALuint *sources)
|
2007-11-13 18:02:18 -08:00
|
|
|
{
|
2013-10-07 09:24:50 -07:00
|
|
|
ALCcontext *context;
|
|
|
|
ALsizei cur = 0;
|
2007-11-13 18:02:18 -08:00
|
|
|
|
2013-10-07 09:24:50 -07:00
|
|
|
context = GetContextRef();
|
|
|
|
if(!context) return;
|
2009-08-16 15:09:36 -07:00
|
|
|
|
2018-10-29 02:05:45 +01:00
|
|
|
if(n < 0)
|
2018-01-27 20:04:21 -08:00
|
|
|
alSetError(context, AL_INVALID_VALUE, "Generating %d sources", n);
|
|
|
|
else for(cur = 0;cur < n;cur++)
|
2007-11-13 18:02:18 -08:00
|
|
|
{
|
2018-01-27 13:02:17 -08:00
|
|
|
ALsource *source = AllocSource(context);
|
2013-10-07 09:24:50 -07:00
|
|
|
if(!source)
|
2009-08-16 15:09:36 -07:00
|
|
|
{
|
2013-10-07 09:24:50 -07:00
|
|
|
alDeleteSources(cur, sources);
|
2018-01-27 20:04:21 -08:00
|
|
|
break;
|
2013-10-07 09:24:50 -07:00
|
|
|
}
|
|
|
|
sources[cur] = source->id;
|
2007-11-13 18:02:18 -08:00
|
|
|
}
|
|
|
|
|
2013-10-07 09:24:50 -07:00
|
|
|
ALCcontext_DecRef(context);
|
2007-11-13 18:02:18 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2010-03-19 14:34:18 -07:00
|
|
|
AL_API ALvoid AL_APIENTRY alDeleteSources(ALsizei n, const ALuint *sources)
|
2007-11-13 18:02:18 -08:00
|
|
|
{
|
2013-10-07 09:24:50 -07:00
|
|
|
ALCcontext *context;
|
|
|
|
ALsource *Source;
|
Provide asynchronous property updates for sources
This necessitates a change in how source updates are handled. Rather than just
being able to update sources when a dependent object state is changed (e.g. a
listener gain change), now all source updates must be proactively provided.
Consequently, apps that do not utilize any deferring (AL_SOFT_defer_updates or
alcSuspendContext/alcProcessContext) may utilize more CPU since it'll be
filling out more update containers for the mixer thread to use.
The upside is that there's less blocking between the app's calling thread and
the mixer thread, particularly for vectors and other multi-value properties
(filters and sends). Deferring behavior when used is also improved, since
updates that shouldn't be applied yet are simply not provided. And when they
are provided, the mixer doesn't have to ignore them, meaning the actual
deferring of a context doesn't have to synchrnously force an update -- the
process call will send any pending updates, which the mixer will apply even if
another deferral occurs before the mixer runs, because it'll still be there
waiting on the next mixer invocation.
There is one slight bug introduced by this commit. When a listener change is
made, or changes to multiple sources while updates are being deferred, it is
possible for the mixer to run while the sources are prepping their updates,
causing some of the source updates to be seen before the other. This will be
fixed in short order.
2016-05-14 23:43:40 -07:00
|
|
|
ALsizei i;
|
2007-11-13 18:02:18 -08:00
|
|
|
|
2013-10-07 09:24:50 -07:00
|
|
|
context = GetContextRef();
|
|
|
|
if(!context) return;
|
2009-08-16 15:09:36 -07:00
|
|
|
|
2018-01-27 13:02:17 -08:00
|
|
|
LockSourceList(context);
|
2018-10-29 02:05:45 +01:00
|
|
|
if(n < 0)
|
2018-01-25 15:59:59 -08:00
|
|
|
SETERR_GOTO(context, AL_INVALID_VALUE, done, "Deleting %d sources", n);
|
2012-04-23 19:46:05 -07:00
|
|
|
|
2013-10-07 09:24:50 -07:00
|
|
|
/* Check that all Sources are valid */
|
|
|
|
for(i = 0;i < n;i++)
|
|
|
|
{
|
|
|
|
if(LookupSource(context, sources[i]) == NULL)
|
2018-01-25 15:59:59 -08:00
|
|
|
SETERR_GOTO(context, AL_INVALID_NAME, done, "Invalid source ID %u", sources[i]);
|
2013-10-07 09:24:50 -07:00
|
|
|
}
|
|
|
|
for(i = 0;i < n;i++)
|
|
|
|
{
|
2018-01-27 13:02:17 -08:00
|
|
|
if((Source=LookupSource(context, sources[i])) != NULL)
|
|
|
|
FreeSource(context, Source);
|
2007-11-13 18:02:18 -08:00
|
|
|
}
|
|
|
|
|
2013-10-07 09:24:50 -07:00
|
|
|
done:
|
2018-01-27 13:02:17 -08:00
|
|
|
UnlockSourceList(context);
|
2013-10-07 09:24:50 -07:00
|
|
|
ALCcontext_DecRef(context);
|
2007-11-13 18:02:18 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2010-03-19 14:34:18 -07:00
|
|
|
AL_API ALboolean AL_APIENTRY alIsSource(ALuint source)
|
2007-11-13 18:02:18 -08:00
|
|
|
{
|
2013-10-07 09:24:50 -07:00
|
|
|
ALCcontext *context;
|
|
|
|
ALboolean ret;
|
2007-11-13 18:02:18 -08:00
|
|
|
|
2013-10-07 09:24:50 -07:00
|
|
|
context = GetContextRef();
|
|
|
|
if(!context) return AL_FALSE;
|
2009-08-16 15:09:36 -07:00
|
|
|
|
2018-01-27 13:02:17 -08:00
|
|
|
LockSourceList(context);
|
2013-10-07 09:24:50 -07:00
|
|
|
ret = (LookupSource(context, source) ? AL_TRUE : AL_FALSE);
|
2018-01-27 13:02:17 -08:00
|
|
|
UnlockSourceList(context);
|
2007-11-13 18:02:18 -08:00
|
|
|
|
2013-10-07 09:24:50 -07:00
|
|
|
ALCcontext_DecRef(context);
|
2009-08-16 15:09:36 -07:00
|
|
|
|
2013-10-07 09:24:50 -07:00
|
|
|
return ret;
|
2007-11-13 18:02:18 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2012-04-19 21:46:29 -07:00
|
|
|
AL_API ALvoid AL_APIENTRY alSourcef(ALuint source, ALenum param, ALfloat value)
|
2007-11-13 18:02:18 -08:00
|
|
|
{
|
2012-04-19 21:46:29 -07:00
|
|
|
ALCcontext *Context;
|
2011-09-11 00:47:31 -07:00
|
|
|
ALsource *Source;
|
2007-11-13 18:02:18 -08:00
|
|
|
|
2012-04-19 21:46:29 -07:00
|
|
|
Context = GetContextRef();
|
|
|
|
if(!Context) return;
|
2009-08-16 15:09:36 -07:00
|
|
|
|
2018-03-03 13:42:37 -08:00
|
|
|
almtx_lock(&Context->PropLock);
|
2018-01-27 13:02:17 -08:00
|
|
|
LockSourceList(Context);
|
2012-08-29 00:25:01 -07:00
|
|
|
if((Source=LookupSource(Context, source)) == NULL)
|
2018-01-25 15:59:59 -08:00
|
|
|
alSetError(Context, AL_INVALID_NAME, "Invalid source ID %u", source);
|
2018-10-29 02:05:45 +01:00
|
|
|
else if(FloatValsByProp(param) != 1)
|
2018-01-25 15:59:59 -08:00
|
|
|
alSetError(Context, AL_INVALID_ENUM, "Invalid float property 0x%04x", param);
|
2012-12-05 20:51:25 -08:00
|
|
|
else
|
2018-11-15 03:13:54 -08:00
|
|
|
SetSourcefv(Source, Context, static_cast<SourceProp>(param), &value);
|
2018-01-27 13:02:17 -08:00
|
|
|
UnlockSourceList(Context);
|
2018-03-03 13:42:37 -08:00
|
|
|
almtx_unlock(&Context->PropLock);
|
2007-11-13 18:02:18 -08:00
|
|
|
|
2012-04-19 21:46:29 -07:00
|
|
|
ALCcontext_DecRef(Context);
|
2007-11-13 18:02:18 -08:00
|
|
|
}
|
|
|
|
|
2012-04-19 21:46:29 -07:00
|
|
|
AL_API ALvoid AL_APIENTRY alSource3f(ALuint source, ALenum param, ALfloat value1, ALfloat value2, ALfloat value3)
|
2007-11-13 18:02:18 -08:00
|
|
|
{
|
2012-04-19 21:46:29 -07:00
|
|
|
ALCcontext *Context;
|
2011-09-11 00:47:31 -07:00
|
|
|
ALsource *Source;
|
2007-11-13 18:02:18 -08:00
|
|
|
|
2012-04-19 21:46:29 -07:00
|
|
|
Context = GetContextRef();
|
|
|
|
if(!Context) return;
|
2009-08-16 15:09:36 -07:00
|
|
|
|
2018-03-03 13:42:37 -08:00
|
|
|
almtx_lock(&Context->PropLock);
|
2018-01-27 13:02:17 -08:00
|
|
|
LockSourceList(Context);
|
2012-08-29 00:25:01 -07:00
|
|
|
if((Source=LookupSource(Context, source)) == NULL)
|
2018-01-25 15:59:59 -08:00
|
|
|
alSetError(Context, AL_INVALID_NAME, "Invalid source ID %u", source);
|
2018-10-29 02:05:45 +01:00
|
|
|
else if(FloatValsByProp(param) != 3)
|
2018-01-25 15:59:59 -08:00
|
|
|
alSetError(Context, AL_INVALID_ENUM, "Invalid 3-float property 0x%04x", param);
|
2012-12-05 20:51:25 -08:00
|
|
|
else
|
2007-11-13 18:02:18 -08:00
|
|
|
{
|
2012-12-05 20:51:25 -08:00
|
|
|
ALfloat fvals[3] = { value1, value2, value3 };
|
2018-11-15 03:13:54 -08:00
|
|
|
SetSourcefv(Source, Context, static_cast<SourceProp>(param), fvals);
|
2007-11-13 18:02:18 -08:00
|
|
|
}
|
2018-01-27 13:02:17 -08:00
|
|
|
UnlockSourceList(Context);
|
2018-03-03 13:42:37 -08:00
|
|
|
almtx_unlock(&Context->PropLock);
|
2007-11-13 18:02:18 -08:00
|
|
|
|
2012-04-19 21:46:29 -07:00
|
|
|
ALCcontext_DecRef(Context);
|
2007-11-13 18:02:18 -08:00
|
|
|
}
|
|
|
|
|
2012-04-19 21:46:29 -07:00
|
|
|
AL_API ALvoid AL_APIENTRY alSourcefv(ALuint source, ALenum param, const ALfloat *values)
|
2007-11-13 18:02:18 -08:00
|
|
|
{
|
2012-04-19 21:46:29 -07:00
|
|
|
ALCcontext *Context;
|
2012-08-28 22:16:55 -07:00
|
|
|
ALsource *Source;
|
2007-11-13 18:02:18 -08:00
|
|
|
|
2012-08-28 22:16:55 -07:00
|
|
|
Context = GetContextRef();
|
|
|
|
if(!Context) return;
|
|
|
|
|
2018-03-03 13:42:37 -08:00
|
|
|
almtx_lock(&Context->PropLock);
|
2018-01-27 13:02:17 -08:00
|
|
|
LockSourceList(Context);
|
2012-08-29 00:25:01 -07:00
|
|
|
if((Source=LookupSource(Context, source)) == NULL)
|
2018-01-25 15:59:59 -08:00
|
|
|
alSetError(Context, AL_INVALID_NAME, "Invalid source ID %u", source);
|
2012-08-29 00:25:01 -07:00
|
|
|
else if(!values)
|
2018-01-25 15:59:59 -08:00
|
|
|
alSetError(Context, AL_INVALID_VALUE, "NULL pointer");
|
2018-10-29 10:17:30 -07:00
|
|
|
else if(FloatValsByProp(param) < 1)
|
2018-01-25 15:59:59 -08:00
|
|
|
alSetError(Context, AL_INVALID_ENUM, "Invalid float-vector property 0x%04x", param);
|
2012-12-05 20:51:25 -08:00
|
|
|
else
|
2018-11-15 03:13:54 -08:00
|
|
|
SetSourcefv(Source, Context, static_cast<SourceProp>(param), values);
|
2018-01-27 13:02:17 -08:00
|
|
|
UnlockSourceList(Context);
|
2018-03-03 13:42:37 -08:00
|
|
|
almtx_unlock(&Context->PropLock);
|
2007-11-13 18:02:18 -08:00
|
|
|
|
2012-04-19 21:46:29 -07:00
|
|
|
ALCcontext_DecRef(Context);
|
2007-11-13 18:02:18 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2012-10-13 00:56:39 -07:00
|
|
|
AL_API ALvoid AL_APIENTRY alSourcedSOFT(ALuint source, ALenum param, ALdouble value)
|
|
|
|
{
|
|
|
|
ALCcontext *Context;
|
|
|
|
ALsource *Source;
|
|
|
|
|
|
|
|
Context = GetContextRef();
|
|
|
|
if(!Context) return;
|
|
|
|
|
2018-03-03 13:42:37 -08:00
|
|
|
almtx_lock(&Context->PropLock);
|
2018-01-27 13:02:17 -08:00
|
|
|
LockSourceList(Context);
|
2012-10-13 00:56:39 -07:00
|
|
|
if((Source=LookupSource(Context, source)) == NULL)
|
2018-01-25 15:59:59 -08:00
|
|
|
alSetError(Context, AL_INVALID_NAME, "Invalid source ID %u", source);
|
2018-10-29 02:05:45 +01:00
|
|
|
else if(DoubleValsByProp(param) != 1)
|
2018-01-25 15:59:59 -08:00
|
|
|
alSetError(Context, AL_INVALID_ENUM, "Invalid double property 0x%04x", param);
|
2012-12-05 20:51:25 -08:00
|
|
|
else
|
2012-10-13 00:56:39 -07:00
|
|
|
{
|
2012-12-05 20:51:25 -08:00
|
|
|
ALfloat fval = (ALfloat)value;
|
2018-11-15 03:13:54 -08:00
|
|
|
SetSourcefv(Source, Context, static_cast<SourceProp>(param), &fval);
|
2012-10-13 00:56:39 -07:00
|
|
|
}
|
2018-01-27 13:02:17 -08:00
|
|
|
UnlockSourceList(Context);
|
2018-03-03 13:42:37 -08:00
|
|
|
almtx_unlock(&Context->PropLock);
|
2012-10-13 00:56:39 -07:00
|
|
|
|
|
|
|
ALCcontext_DecRef(Context);
|
|
|
|
}
|
|
|
|
|
|
|
|
AL_API ALvoid AL_APIENTRY alSource3dSOFT(ALuint source, ALenum param, ALdouble value1, ALdouble value2, ALdouble value3)
|
|
|
|
{
|
|
|
|
ALCcontext *Context;
|
|
|
|
ALsource *Source;
|
|
|
|
|
|
|
|
Context = GetContextRef();
|
|
|
|
if(!Context) return;
|
|
|
|
|
2018-03-03 13:42:37 -08:00
|
|
|
almtx_lock(&Context->PropLock);
|
2018-01-27 13:02:17 -08:00
|
|
|
LockSourceList(Context);
|
2012-10-13 00:56:39 -07:00
|
|
|
if((Source=LookupSource(Context, source)) == NULL)
|
2018-01-25 15:59:59 -08:00
|
|
|
alSetError(Context, AL_INVALID_NAME, "Invalid source ID %u", source);
|
2018-10-29 02:05:45 +01:00
|
|
|
else if(DoubleValsByProp(param) != 3)
|
2018-01-25 15:59:59 -08:00
|
|
|
alSetError(Context, AL_INVALID_ENUM, "Invalid 3-double property 0x%04x", param);
|
2012-12-05 20:51:25 -08:00
|
|
|
else
|
2012-10-13 00:56:39 -07:00
|
|
|
{
|
2012-12-05 20:51:25 -08:00
|
|
|
ALfloat fvals[3] = { (ALfloat)value1, (ALfloat)value2, (ALfloat)value3 };
|
2018-11-15 03:13:54 -08:00
|
|
|
SetSourcefv(Source, Context, static_cast<SourceProp>(param), fvals);
|
2012-10-13 00:56:39 -07:00
|
|
|
}
|
2018-01-27 13:02:17 -08:00
|
|
|
UnlockSourceList(Context);
|
2018-03-03 13:42:37 -08:00
|
|
|
almtx_unlock(&Context->PropLock);
|
2012-10-13 00:56:39 -07:00
|
|
|
|
|
|
|
ALCcontext_DecRef(Context);
|
|
|
|
}
|
|
|
|
|
|
|
|
AL_API ALvoid AL_APIENTRY alSourcedvSOFT(ALuint source, ALenum param, const ALdouble *values)
|
|
|
|
{
|
|
|
|
ALCcontext *Context;
|
|
|
|
ALsource *Source;
|
2012-12-05 20:51:25 -08:00
|
|
|
ALint count;
|
2012-10-13 00:56:39 -07:00
|
|
|
|
|
|
|
Context = GetContextRef();
|
|
|
|
if(!Context) return;
|
|
|
|
|
2018-03-03 13:42:37 -08:00
|
|
|
almtx_lock(&Context->PropLock);
|
2018-01-27 13:02:17 -08:00
|
|
|
LockSourceList(Context);
|
2012-10-13 00:56:39 -07:00
|
|
|
if((Source=LookupSource(Context, source)) == NULL)
|
2018-01-25 15:59:59 -08:00
|
|
|
alSetError(Context, AL_INVALID_NAME, "Invalid source ID %u", source);
|
2012-10-13 00:56:39 -07:00
|
|
|
else if(!values)
|
2018-01-25 15:59:59 -08:00
|
|
|
alSetError(Context, AL_INVALID_VALUE, "NULL pointer");
|
2018-10-29 10:17:30 -07:00
|
|
|
else if((count=DoubleValsByProp(param)) < 1 || count > 6)
|
2018-01-25 15:59:59 -08:00
|
|
|
alSetError(Context, AL_INVALID_ENUM, "Invalid double-vector property 0x%04x", param);
|
2012-12-05 20:51:25 -08:00
|
|
|
else
|
2012-10-13 00:56:39 -07:00
|
|
|
{
|
2015-09-21 09:42:51 -07:00
|
|
|
ALfloat fvals[6];
|
2012-12-05 20:51:25 -08:00
|
|
|
ALint i;
|
2012-11-01 18:35:20 -07:00
|
|
|
|
2012-12-05 20:51:25 -08:00
|
|
|
for(i = 0;i < count;i++)
|
|
|
|
fvals[i] = (ALfloat)values[i];
|
2018-11-15 03:13:54 -08:00
|
|
|
SetSourcefv(Source, Context, static_cast<SourceProp>(param), fvals);
|
2012-10-13 00:56:39 -07:00
|
|
|
}
|
2018-01-27 13:02:17 -08:00
|
|
|
UnlockSourceList(Context);
|
2018-03-03 13:42:37 -08:00
|
|
|
almtx_unlock(&Context->PropLock);
|
2012-10-13 00:56:39 -07:00
|
|
|
|
|
|
|
ALCcontext_DecRef(Context);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2012-04-19 21:46:29 -07:00
|
|
|
AL_API ALvoid AL_APIENTRY alSourcei(ALuint source, ALenum param, ALint value)
|
2007-11-13 18:02:18 -08:00
|
|
|
{
|
2012-04-23 19:46:05 -07:00
|
|
|
ALCcontext *Context;
|
|
|
|
ALsource *Source;
|
2011-06-16 09:14:41 -07:00
|
|
|
|
2012-04-19 21:46:29 -07:00
|
|
|
Context = GetContextRef();
|
|
|
|
if(!Context) return;
|
2009-08-16 15:09:36 -07:00
|
|
|
|
2018-03-03 13:42:37 -08:00
|
|
|
almtx_lock(&Context->PropLock);
|
2018-01-27 13:02:17 -08:00
|
|
|
LockSourceList(Context);
|
2012-08-29 00:25:01 -07:00
|
|
|
if((Source=LookupSource(Context, source)) == NULL)
|
2018-01-25 15:59:59 -08:00
|
|
|
alSetError(Context, AL_INVALID_NAME, "Invalid source ID %u", source);
|
2018-10-29 02:05:45 +01:00
|
|
|
else if(IntValsByProp(param) != 1)
|
2018-01-25 15:59:59 -08:00
|
|
|
alSetError(Context, AL_INVALID_ENUM, "Invalid integer property 0x%04x", param);
|
2012-12-05 19:58:01 -08:00
|
|
|
else
|
2018-11-15 03:13:54 -08:00
|
|
|
SetSourceiv(Source, Context, static_cast<SourceProp>(param), &value);
|
2018-01-27 13:02:17 -08:00
|
|
|
UnlockSourceList(Context);
|
2018-03-03 13:42:37 -08:00
|
|
|
almtx_unlock(&Context->PropLock);
|
2007-11-13 18:02:18 -08:00
|
|
|
|
2012-04-19 21:46:29 -07:00
|
|
|
ALCcontext_DecRef(Context);
|
2007-11-13 18:02:18 -08:00
|
|
|
}
|
|
|
|
|
2012-04-19 21:46:29 -07:00
|
|
|
AL_API void AL_APIENTRY alSource3i(ALuint source, ALenum param, ALint value1, ALint value2, ALint value3)
|
2007-11-13 18:02:18 -08:00
|
|
|
{
|
2012-08-28 22:16:55 -07:00
|
|
|
ALCcontext *Context;
|
|
|
|
ALsource *Source;
|
2011-06-16 09:14:41 -07:00
|
|
|
|
2012-04-19 21:46:29 -07:00
|
|
|
Context = GetContextRef();
|
|
|
|
if(!Context) return;
|
2009-08-16 15:09:36 -07:00
|
|
|
|
2018-03-03 13:42:37 -08:00
|
|
|
almtx_lock(&Context->PropLock);
|
2018-01-27 13:02:17 -08:00
|
|
|
LockSourceList(Context);
|
2012-08-29 00:25:01 -07:00
|
|
|
if((Source=LookupSource(Context, source)) == NULL)
|
2018-01-25 15:59:59 -08:00
|
|
|
alSetError(Context, AL_INVALID_NAME, "Invalid source ID %u", source);
|
2018-10-29 10:17:30 -07:00
|
|
|
else if(IntValsByProp(param) != 3)
|
2018-01-25 15:59:59 -08:00
|
|
|
alSetError(Context, AL_INVALID_ENUM, "Invalid 3-integer property 0x%04x", param);
|
2012-12-05 19:58:01 -08:00
|
|
|
else
|
2007-11-13 18:02:18 -08:00
|
|
|
{
|
2012-12-05 19:58:01 -08:00
|
|
|
ALint ivals[3] = { value1, value2, value3 };
|
2018-11-15 03:13:54 -08:00
|
|
|
SetSourceiv(Source, Context, static_cast<SourceProp>(param), ivals);
|
2007-11-13 18:02:18 -08:00
|
|
|
}
|
2018-01-27 13:02:17 -08:00
|
|
|
UnlockSourceList(Context);
|
2018-03-03 13:42:37 -08:00
|
|
|
almtx_unlock(&Context->PropLock);
|
2007-11-13 18:02:18 -08:00
|
|
|
|
2012-04-19 21:46:29 -07:00
|
|
|
ALCcontext_DecRef(Context);
|
2007-11-13 18:02:18 -08:00
|
|
|
}
|
|
|
|
|
2012-04-19 21:46:29 -07:00
|
|
|
AL_API void AL_APIENTRY alSourceiv(ALuint source, ALenum param, const ALint *values)
|
2007-11-13 18:02:18 -08:00
|
|
|
{
|
2012-04-19 21:46:29 -07:00
|
|
|
ALCcontext *Context;
|
2012-08-28 22:16:55 -07:00
|
|
|
ALsource *Source;
|
|
|
|
|
|
|
|
Context = GetContextRef();
|
|
|
|
if(!Context) return;
|
2007-11-13 18:02:18 -08:00
|
|
|
|
2018-03-03 13:42:37 -08:00
|
|
|
almtx_lock(&Context->PropLock);
|
2018-01-27 13:02:17 -08:00
|
|
|
LockSourceList(Context);
|
2012-08-29 00:25:01 -07:00
|
|
|
if((Source=LookupSource(Context, source)) == NULL)
|
2018-01-25 15:59:59 -08:00
|
|
|
alSetError(Context, AL_INVALID_NAME, "Invalid source ID %u", source);
|
2012-08-29 00:25:01 -07:00
|
|
|
else if(!values)
|
2018-01-25 15:59:59 -08:00
|
|
|
alSetError(Context, AL_INVALID_VALUE, "NULL pointer");
|
2018-10-29 10:17:30 -07:00
|
|
|
else if(IntValsByProp(param) < 1)
|
2018-01-25 15:59:59 -08:00
|
|
|
alSetError(Context, AL_INVALID_ENUM, "Invalid integer-vector property 0x%04x", param);
|
2012-12-05 19:58:01 -08:00
|
|
|
else
|
2018-11-15 03:13:54 -08:00
|
|
|
SetSourceiv(Source, Context, static_cast<SourceProp>(param), values);
|
2018-01-27 13:02:17 -08:00
|
|
|
UnlockSourceList(Context);
|
2018-03-03 13:42:37 -08:00
|
|
|
almtx_unlock(&Context->PropLock);
|
2007-11-13 18:02:18 -08:00
|
|
|
|
2012-04-19 21:46:29 -07:00
|
|
|
ALCcontext_DecRef(Context);
|
2007-11-13 18:02:18 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2012-10-13 00:56:39 -07:00
|
|
|
AL_API ALvoid AL_APIENTRY alSourcei64SOFT(ALuint source, ALenum param, ALint64SOFT value)
|
|
|
|
{
|
|
|
|
ALCcontext *Context;
|
|
|
|
ALsource *Source;
|
|
|
|
|
|
|
|
Context = GetContextRef();
|
|
|
|
if(!Context) return;
|
|
|
|
|
2018-03-03 13:42:37 -08:00
|
|
|
almtx_lock(&Context->PropLock);
|
2018-01-27 13:02:17 -08:00
|
|
|
LockSourceList(Context);
|
2012-10-13 00:56:39 -07:00
|
|
|
if((Source=LookupSource(Context, source)) == NULL)
|
2018-01-25 15:59:59 -08:00
|
|
|
alSetError(Context, AL_INVALID_NAME, "Invalid source ID %u", source);
|
2018-10-29 10:17:30 -07:00
|
|
|
else if(Int64ValsByProp(param) != 1)
|
2018-01-25 15:59:59 -08:00
|
|
|
alSetError(Context, AL_INVALID_ENUM, "Invalid integer64 property 0x%04x", param);
|
2012-12-05 19:58:01 -08:00
|
|
|
else
|
2018-11-15 03:13:54 -08:00
|
|
|
SetSourcei64v(Source, Context, static_cast<SourceProp>(param), &value);
|
2018-01-27 13:02:17 -08:00
|
|
|
UnlockSourceList(Context);
|
2018-03-03 13:42:37 -08:00
|
|
|
almtx_unlock(&Context->PropLock);
|
2012-10-13 00:56:39 -07:00
|
|
|
|
|
|
|
ALCcontext_DecRef(Context);
|
|
|
|
}
|
|
|
|
|
|
|
|
AL_API void AL_APIENTRY alSource3i64SOFT(ALuint source, ALenum param, ALint64SOFT value1, ALint64SOFT value2, ALint64SOFT value3)
|
|
|
|
{
|
|
|
|
ALCcontext *Context;
|
|
|
|
ALsource *Source;
|
|
|
|
|
|
|
|
Context = GetContextRef();
|
|
|
|
if(!Context) return;
|
|
|
|
|
2018-03-03 13:42:37 -08:00
|
|
|
almtx_lock(&Context->PropLock);
|
2018-01-27 13:02:17 -08:00
|
|
|
LockSourceList(Context);
|
2012-10-13 00:56:39 -07:00
|
|
|
if((Source=LookupSource(Context, source)) == NULL)
|
2018-01-25 15:59:59 -08:00
|
|
|
alSetError(Context, AL_INVALID_NAME, "Invalid source ID %u", source);
|
2018-10-29 10:17:30 -07:00
|
|
|
else if(Int64ValsByProp(param) != 3)
|
2018-01-25 15:59:59 -08:00
|
|
|
alSetError(Context, AL_INVALID_ENUM, "Invalid 3-integer64 property 0x%04x", param);
|
2012-12-05 19:58:01 -08:00
|
|
|
else
|
2012-10-13 00:56:39 -07:00
|
|
|
{
|
2012-12-05 19:58:01 -08:00
|
|
|
ALint64SOFT i64vals[3] = { value1, value2, value3 };
|
2018-11-15 03:13:54 -08:00
|
|
|
SetSourcei64v(Source, Context, static_cast<SourceProp>(param), i64vals);
|
2012-10-13 00:56:39 -07:00
|
|
|
}
|
2018-01-27 13:02:17 -08:00
|
|
|
UnlockSourceList(Context);
|
2018-03-03 13:42:37 -08:00
|
|
|
almtx_unlock(&Context->PropLock);
|
2012-10-13 00:56:39 -07:00
|
|
|
|
|
|
|
ALCcontext_DecRef(Context);
|
|
|
|
}
|
|
|
|
|
|
|
|
AL_API void AL_APIENTRY alSourcei64vSOFT(ALuint source, ALenum param, const ALint64SOFT *values)
|
|
|
|
{
|
|
|
|
ALCcontext *Context;
|
|
|
|
ALsource *Source;
|
|
|
|
|
|
|
|
Context = GetContextRef();
|
|
|
|
if(!Context) return;
|
|
|
|
|
2018-03-03 13:42:37 -08:00
|
|
|
almtx_lock(&Context->PropLock);
|
2018-01-27 13:02:17 -08:00
|
|
|
LockSourceList(Context);
|
2012-10-13 00:56:39 -07:00
|
|
|
if((Source=LookupSource(Context, source)) == NULL)
|
2018-01-25 15:59:59 -08:00
|
|
|
alSetError(Context, AL_INVALID_NAME, "Invalid source ID %u", source);
|
2012-10-13 00:56:39 -07:00
|
|
|
else if(!values)
|
2018-01-25 15:59:59 -08:00
|
|
|
alSetError(Context, AL_INVALID_VALUE, "NULL pointer");
|
2018-10-29 10:17:30 -07:00
|
|
|
else if(Int64ValsByProp(param) < 1)
|
2018-01-25 15:59:59 -08:00
|
|
|
alSetError(Context, AL_INVALID_ENUM, "Invalid integer64-vector property 0x%04x", param);
|
2012-12-05 19:58:01 -08:00
|
|
|
else
|
2018-11-15 03:13:54 -08:00
|
|
|
SetSourcei64v(Source, Context, static_cast<SourceProp>(param), values);
|
2018-01-27 13:02:17 -08:00
|
|
|
UnlockSourceList(Context);
|
2018-03-03 13:42:37 -08:00
|
|
|
almtx_unlock(&Context->PropLock);
|
2012-10-13 00:56:39 -07:00
|
|
|
|
|
|
|
ALCcontext_DecRef(Context);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2012-04-19 21:46:29 -07:00
|
|
|
AL_API ALvoid AL_APIENTRY alGetSourcef(ALuint source, ALenum param, ALfloat *value)
|
2007-11-13 18:02:18 -08:00
|
|
|
{
|
2012-04-21 05:53:27 -07:00
|
|
|
ALCcontext *Context;
|
|
|
|
ALsource *Source;
|
2007-11-13 18:02:18 -08:00
|
|
|
|
2012-04-19 21:46:29 -07:00
|
|
|
Context = GetContextRef();
|
|
|
|
if(!Context) return;
|
2009-08-16 15:09:36 -07:00
|
|
|
|
2018-01-27 13:02:17 -08:00
|
|
|
LockSourceList(Context);
|
2012-08-29 00:25:01 -07:00
|
|
|
if((Source=LookupSource(Context, source)) == NULL)
|
2018-01-25 15:59:59 -08:00
|
|
|
alSetError(Context, AL_INVALID_NAME, "Invalid source ID %u", source);
|
2012-08-29 00:25:01 -07:00
|
|
|
else if(!value)
|
2018-01-25 15:59:59 -08:00
|
|
|
alSetError(Context, AL_INVALID_VALUE, "NULL pointer");
|
2018-10-29 10:17:30 -07:00
|
|
|
else if(FloatValsByProp(param) != 1)
|
2018-01-25 15:59:59 -08:00
|
|
|
alSetError(Context, AL_INVALID_ENUM, "Invalid float property 0x%04x", param);
|
2012-12-05 20:51:25 -08:00
|
|
|
else
|
2007-11-13 18:02:18 -08:00
|
|
|
{
|
2012-12-05 20:51:25 -08:00
|
|
|
ALdouble dval;
|
2018-11-15 03:13:54 -08:00
|
|
|
if(GetSourcedv(Source, Context, static_cast<SourceProp>(param), &dval))
|
2012-12-05 20:51:25 -08:00
|
|
|
*value = (ALfloat)dval;
|
2007-11-13 18:02:18 -08:00
|
|
|
}
|
2018-01-27 13:02:17 -08:00
|
|
|
UnlockSourceList(Context);
|
2007-11-13 18:02:18 -08:00
|
|
|
|
2012-04-19 21:46:29 -07:00
|
|
|
ALCcontext_DecRef(Context);
|
2007-11-13 18:02:18 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2012-04-19 21:46:29 -07:00
|
|
|
AL_API ALvoid AL_APIENTRY alGetSource3f(ALuint source, ALenum param, ALfloat *value1, ALfloat *value2, ALfloat *value3)
|
2007-11-13 18:02:18 -08:00
|
|
|
{
|
2012-04-19 21:46:29 -07:00
|
|
|
ALCcontext *Context;
|
2011-09-11 00:47:31 -07:00
|
|
|
ALsource *Source;
|
2007-11-13 18:02:18 -08:00
|
|
|
|
2012-04-19 21:46:29 -07:00
|
|
|
Context = GetContextRef();
|
|
|
|
if(!Context) return;
|
2009-08-16 15:09:36 -07:00
|
|
|
|
2018-01-27 13:02:17 -08:00
|
|
|
LockSourceList(Context);
|
2012-08-29 00:25:01 -07:00
|
|
|
if((Source=LookupSource(Context, source)) == NULL)
|
2018-01-25 15:59:59 -08:00
|
|
|
alSetError(Context, AL_INVALID_NAME, "Invalid source ID %u", source);
|
2012-08-29 00:25:01 -07:00
|
|
|
else if(!(value1 && value2 && value3))
|
2018-01-25 15:59:59 -08:00
|
|
|
alSetError(Context, AL_INVALID_VALUE, "NULL pointer");
|
2018-10-29 10:17:30 -07:00
|
|
|
else if(FloatValsByProp(param) != 3)
|
2018-01-25 15:59:59 -08:00
|
|
|
alSetError(Context, AL_INVALID_ENUM, "Invalid 3-float property 0x%04x", param);
|
2012-12-05 20:51:25 -08:00
|
|
|
else
|
2007-11-13 18:02:18 -08:00
|
|
|
{
|
2012-12-05 20:51:25 -08:00
|
|
|
ALdouble dvals[3];
|
2018-11-15 03:13:54 -08:00
|
|
|
if(GetSourcedv(Source, Context, static_cast<SourceProp>(param), dvals))
|
2012-12-05 20:51:25 -08:00
|
|
|
{
|
|
|
|
*value1 = (ALfloat)dvals[0];
|
|
|
|
*value2 = (ALfloat)dvals[1];
|
|
|
|
*value3 = (ALfloat)dvals[2];
|
|
|
|
}
|
2007-11-13 18:02:18 -08:00
|
|
|
}
|
2018-01-27 13:02:17 -08:00
|
|
|
UnlockSourceList(Context);
|
2007-11-13 18:02:18 -08:00
|
|
|
|
2012-04-19 21:46:29 -07:00
|
|
|
ALCcontext_DecRef(Context);
|
2007-11-13 18:02:18 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2012-04-19 21:46:29 -07:00
|
|
|
AL_API ALvoid AL_APIENTRY alGetSourcefv(ALuint source, ALenum param, ALfloat *values)
|
2007-11-13 18:02:18 -08:00
|
|
|
{
|
2012-04-21 05:53:27 -07:00
|
|
|
ALCcontext *Context;
|
|
|
|
ALsource *Source;
|
2012-12-05 20:51:25 -08:00
|
|
|
ALint count;
|
2011-06-16 09:14:41 -07:00
|
|
|
|
2012-04-19 21:46:29 -07:00
|
|
|
Context = GetContextRef();
|
|
|
|
if(!Context) return;
|
2009-08-16 15:09:36 -07:00
|
|
|
|
2018-01-27 13:02:17 -08:00
|
|
|
LockSourceList(Context);
|
2012-08-29 00:25:01 -07:00
|
|
|
if((Source=LookupSource(Context, source)) == NULL)
|
2018-01-25 15:59:59 -08:00
|
|
|
alSetError(Context, AL_INVALID_NAME, "Invalid source ID %u", source);
|
2012-08-29 00:25:01 -07:00
|
|
|
else if(!values)
|
2018-01-25 15:59:59 -08:00
|
|
|
alSetError(Context, AL_INVALID_VALUE, "NULL pointer");
|
2018-10-29 10:17:30 -07:00
|
|
|
else if((count=FloatValsByProp(param)) < 1 && count > 6)
|
2018-01-25 15:59:59 -08:00
|
|
|
alSetError(Context, AL_INVALID_ENUM, "Invalid float-vector property 0x%04x", param);
|
2012-12-05 20:51:25 -08:00
|
|
|
else
|
2007-11-13 18:02:18 -08:00
|
|
|
{
|
2015-09-21 09:42:51 -07:00
|
|
|
ALdouble dvals[6];
|
2018-11-15 03:13:54 -08:00
|
|
|
if(GetSourcedv(Source, Context, static_cast<SourceProp>(param), dvals))
|
2012-12-05 20:51:25 -08:00
|
|
|
{
|
|
|
|
ALint i;
|
|
|
|
for(i = 0;i < count;i++)
|
|
|
|
values[i] = (ALfloat)dvals[i];
|
|
|
|
}
|
2007-11-13 18:02:18 -08:00
|
|
|
}
|
2018-01-27 13:02:17 -08:00
|
|
|
UnlockSourceList(Context);
|
2007-11-13 18:02:18 -08:00
|
|
|
|
2012-04-19 21:46:29 -07:00
|
|
|
ALCcontext_DecRef(Context);
|
2007-11-13 18:02:18 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2012-08-20 15:26:35 -07:00
|
|
|
AL_API void AL_APIENTRY alGetSourcedSOFT(ALuint source, ALenum param, ALdouble *value)
|
|
|
|
{
|
|
|
|
ALCcontext *Context;
|
|
|
|
ALsource *Source;
|
|
|
|
|
|
|
|
Context = GetContextRef();
|
|
|
|
if(!Context) return;
|
|
|
|
|
2018-01-27 13:02:17 -08:00
|
|
|
LockSourceList(Context);
|
2012-08-29 00:25:01 -07:00
|
|
|
if((Source=LookupSource(Context, source)) == NULL)
|
2018-01-25 15:59:59 -08:00
|
|
|
alSetError(Context, AL_INVALID_NAME, "Invalid source ID %u", source);
|
2012-08-29 00:25:01 -07:00
|
|
|
else if(!value)
|
2018-01-25 15:59:59 -08:00
|
|
|
alSetError(Context, AL_INVALID_VALUE, "NULL pointer");
|
2018-10-29 10:17:30 -07:00
|
|
|
else if(DoubleValsByProp(param) != 1)
|
2018-01-25 15:59:59 -08:00
|
|
|
alSetError(Context, AL_INVALID_ENUM, "Invalid double property 0x%04x", param);
|
2012-12-05 20:51:25 -08:00
|
|
|
else
|
2018-11-15 03:13:54 -08:00
|
|
|
GetSourcedv(Source, Context, static_cast<SourceProp>(param), value);
|
2018-01-27 13:02:17 -08:00
|
|
|
UnlockSourceList(Context);
|
2012-08-20 15:26:35 -07:00
|
|
|
|
|
|
|
ALCcontext_DecRef(Context);
|
|
|
|
}
|
|
|
|
|
|
|
|
AL_API void AL_APIENTRY alGetSource3dSOFT(ALuint source, ALenum param, ALdouble *value1, ALdouble *value2, ALdouble *value3)
|
|
|
|
{
|
|
|
|
ALCcontext *Context;
|
|
|
|
ALsource *Source;
|
|
|
|
|
|
|
|
Context = GetContextRef();
|
|
|
|
if(!Context) return;
|
|
|
|
|
2018-01-27 13:02:17 -08:00
|
|
|
LockSourceList(Context);
|
2012-08-29 00:25:01 -07:00
|
|
|
if((Source=LookupSource(Context, source)) == NULL)
|
2018-01-25 15:59:59 -08:00
|
|
|
alSetError(Context, AL_INVALID_NAME, "Invalid source ID %u", source);
|
2012-08-29 00:25:01 -07:00
|
|
|
else if(!(value1 && value2 && value3))
|
2018-01-25 15:59:59 -08:00
|
|
|
alSetError(Context, AL_INVALID_VALUE, "NULL pointer");
|
2018-10-29 10:17:30 -07:00
|
|
|
else if(DoubleValsByProp(param) != 3)
|
2018-01-25 15:59:59 -08:00
|
|
|
alSetError(Context, AL_INVALID_ENUM, "Invalid 3-double property 0x%04x", param);
|
2012-12-05 20:51:25 -08:00
|
|
|
else
|
2012-08-20 15:26:35 -07:00
|
|
|
{
|
2012-12-05 20:51:25 -08:00
|
|
|
ALdouble dvals[3];
|
2018-11-15 03:13:54 -08:00
|
|
|
if(GetSourcedv(Source, Context, static_cast<SourceProp>(param), dvals))
|
2012-12-05 20:51:25 -08:00
|
|
|
{
|
|
|
|
*value1 = dvals[0];
|
|
|
|
*value2 = dvals[1];
|
|
|
|
*value3 = dvals[2];
|
|
|
|
}
|
2012-08-20 15:26:35 -07:00
|
|
|
}
|
2018-01-27 13:02:17 -08:00
|
|
|
UnlockSourceList(Context);
|
2012-08-20 15:26:35 -07:00
|
|
|
|
|
|
|
ALCcontext_DecRef(Context);
|
|
|
|
}
|
|
|
|
|
|
|
|
AL_API void AL_APIENTRY alGetSourcedvSOFT(ALuint source, ALenum param, ALdouble *values)
|
|
|
|
{
|
|
|
|
ALCcontext *Context;
|
|
|
|
ALsource *Source;
|
|
|
|
|
|
|
|
Context = GetContextRef();
|
|
|
|
if(!Context) return;
|
|
|
|
|
2018-01-27 13:02:17 -08:00
|
|
|
LockSourceList(Context);
|
2012-08-29 00:25:01 -07:00
|
|
|
if((Source=LookupSource(Context, source)) == NULL)
|
2018-01-25 15:59:59 -08:00
|
|
|
alSetError(Context, AL_INVALID_NAME, "Invalid source ID %u", source);
|
2012-08-29 00:25:01 -07:00
|
|
|
else if(!values)
|
2018-01-25 15:59:59 -08:00
|
|
|
alSetError(Context, AL_INVALID_VALUE, "NULL pointer");
|
2018-10-29 10:17:30 -07:00
|
|
|
else if(DoubleValsByProp(param) < 1)
|
2018-01-25 15:59:59 -08:00
|
|
|
alSetError(Context, AL_INVALID_ENUM, "Invalid double-vector property 0x%04x", param);
|
2012-12-05 20:51:25 -08:00
|
|
|
else
|
2018-11-15 03:13:54 -08:00
|
|
|
GetSourcedv(Source, Context, static_cast<SourceProp>(param), values);
|
2018-01-27 13:02:17 -08:00
|
|
|
UnlockSourceList(Context);
|
2012-08-20 15:26:35 -07:00
|
|
|
|
|
|
|
ALCcontext_DecRef(Context);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2012-04-19 21:46:29 -07:00
|
|
|
AL_API ALvoid AL_APIENTRY alGetSourcei(ALuint source, ALenum param, ALint *value)
|
2007-11-13 18:02:18 -08:00
|
|
|
{
|
2012-04-19 21:46:29 -07:00
|
|
|
ALCcontext *Context;
|
2010-03-26 00:41:27 -07:00
|
|
|
ALsource *Source;
|
2007-11-13 18:02:18 -08:00
|
|
|
|
2012-04-19 21:46:29 -07:00
|
|
|
Context = GetContextRef();
|
|
|
|
if(!Context) return;
|
2009-08-16 15:09:36 -07:00
|
|
|
|
2018-01-27 13:02:17 -08:00
|
|
|
LockSourceList(Context);
|
2012-08-29 00:25:01 -07:00
|
|
|
if((Source=LookupSource(Context, source)) == NULL)
|
2018-01-25 15:59:59 -08:00
|
|
|
alSetError(Context, AL_INVALID_NAME, "Invalid source ID %u", source);
|
2012-08-29 00:25:01 -07:00
|
|
|
else if(!value)
|
2018-01-25 15:59:59 -08:00
|
|
|
alSetError(Context, AL_INVALID_VALUE, "NULL pointer");
|
2018-10-29 10:17:30 -07:00
|
|
|
else if(IntValsByProp(param) != 1)
|
2018-01-25 15:59:59 -08:00
|
|
|
alSetError(Context, AL_INVALID_ENUM, "Invalid integer property 0x%04x", param);
|
2012-12-05 19:58:01 -08:00
|
|
|
else
|
2018-11-15 03:13:54 -08:00
|
|
|
GetSourceiv(Source, Context, static_cast<SourceProp>(param), value);
|
2018-01-27 13:02:17 -08:00
|
|
|
UnlockSourceList(Context);
|
2007-11-13 18:02:18 -08:00
|
|
|
|
2012-04-19 21:46:29 -07:00
|
|
|
ALCcontext_DecRef(Context);
|
2007-11-13 18:02:18 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2012-04-19 21:46:29 -07:00
|
|
|
AL_API void AL_APIENTRY alGetSource3i(ALuint source, ALenum param, ALint *value1, ALint *value2, ALint *value3)
|
2007-11-13 18:02:18 -08:00
|
|
|
{
|
2012-04-21 05:53:27 -07:00
|
|
|
ALCcontext *Context;
|
|
|
|
ALsource *Source;
|
2007-11-13 18:02:18 -08:00
|
|
|
|
2012-04-19 21:46:29 -07:00
|
|
|
Context = GetContextRef();
|
|
|
|
if(!Context) return;
|
2009-08-16 15:09:36 -07:00
|
|
|
|
2018-01-27 13:02:17 -08:00
|
|
|
LockSourceList(Context);
|
2012-08-29 00:25:01 -07:00
|
|
|
if((Source=LookupSource(Context, source)) == NULL)
|
2018-01-25 15:59:59 -08:00
|
|
|
alSetError(Context, AL_INVALID_NAME, "Invalid source ID %u", source);
|
2012-08-29 00:25:01 -07:00
|
|
|
else if(!(value1 && value2 && value3))
|
2018-01-25 15:59:59 -08:00
|
|
|
alSetError(Context, AL_INVALID_VALUE, "NULL pointer");
|
2018-10-29 10:17:30 -07:00
|
|
|
else if(IntValsByProp(param) != 3)
|
2018-01-25 15:59:59 -08:00
|
|
|
alSetError(Context, AL_INVALID_ENUM, "Invalid 3-integer property 0x%04x", param);
|
2012-12-05 19:58:01 -08:00
|
|
|
else
|
2007-11-13 18:02:18 -08:00
|
|
|
{
|
2012-12-05 19:58:01 -08:00
|
|
|
ALint ivals[3];
|
2018-11-15 03:13:54 -08:00
|
|
|
if(GetSourceiv(Source, Context, static_cast<SourceProp>(param), ivals))
|
2012-12-05 19:58:01 -08:00
|
|
|
{
|
|
|
|
*value1 = ivals[0];
|
|
|
|
*value2 = ivals[1];
|
|
|
|
*value3 = ivals[2];
|
|
|
|
}
|
2007-11-13 18:02:18 -08:00
|
|
|
}
|
2018-01-27 13:02:17 -08:00
|
|
|
UnlockSourceList(Context);
|
2007-11-13 18:02:18 -08:00
|
|
|
|
2012-04-19 21:46:29 -07:00
|
|
|
ALCcontext_DecRef(Context);
|
2007-11-13 18:02:18 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2012-04-19 21:46:29 -07:00
|
|
|
AL_API void AL_APIENTRY alGetSourceiv(ALuint source, ALenum param, ALint *values)
|
2007-11-13 18:02:18 -08:00
|
|
|
{
|
2012-04-21 05:53:27 -07:00
|
|
|
ALCcontext *Context;
|
|
|
|
ALsource *Source;
|
2011-06-16 09:14:41 -07:00
|
|
|
|
2012-04-19 21:46:29 -07:00
|
|
|
Context = GetContextRef();
|
|
|
|
if(!Context) return;
|
2009-08-16 15:09:36 -07:00
|
|
|
|
2018-01-27 13:02:17 -08:00
|
|
|
LockSourceList(Context);
|
2012-08-29 00:25:01 -07:00
|
|
|
if((Source=LookupSource(Context, source)) == NULL)
|
2018-01-25 15:59:59 -08:00
|
|
|
alSetError(Context, AL_INVALID_NAME, "Invalid source ID %u", source);
|
2012-08-29 00:25:01 -07:00
|
|
|
else if(!values)
|
2018-01-25 15:59:59 -08:00
|
|
|
alSetError(Context, AL_INVALID_VALUE, "NULL pointer");
|
2018-10-29 10:17:30 -07:00
|
|
|
else if(IntValsByProp(param) < 1)
|
2018-01-25 15:59:59 -08:00
|
|
|
alSetError(Context, AL_INVALID_ENUM, "Invalid integer-vector property 0x%04x", param);
|
2012-12-05 19:58:01 -08:00
|
|
|
else
|
2018-11-15 03:13:54 -08:00
|
|
|
GetSourceiv(Source, Context, static_cast<SourceProp>(param), values);
|
2018-01-27 13:02:17 -08:00
|
|
|
UnlockSourceList(Context);
|
2007-11-13 18:02:18 -08:00
|
|
|
|
2012-04-19 21:46:29 -07:00
|
|
|
ALCcontext_DecRef(Context);
|
2007-11-13 18:02:18 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2012-08-20 14:50:43 -07:00
|
|
|
AL_API void AL_APIENTRY alGetSourcei64SOFT(ALuint source, ALenum param, ALint64SOFT *value)
|
2012-08-18 11:02:54 -07:00
|
|
|
{
|
|
|
|
ALCcontext *Context;
|
|
|
|
ALsource *Source;
|
|
|
|
|
|
|
|
Context = GetContextRef();
|
|
|
|
if(!Context) return;
|
|
|
|
|
2018-01-27 13:02:17 -08:00
|
|
|
LockSourceList(Context);
|
2012-08-29 00:25:01 -07:00
|
|
|
if((Source=LookupSource(Context, source)) == NULL)
|
2018-01-25 15:59:59 -08:00
|
|
|
alSetError(Context, AL_INVALID_NAME, "Invalid source ID %u", source);
|
2012-08-29 00:25:01 -07:00
|
|
|
else if(!value)
|
2018-01-25 15:59:59 -08:00
|
|
|
alSetError(Context, AL_INVALID_VALUE, "NULL pointer");
|
2018-10-29 10:17:30 -07:00
|
|
|
else if(Int64ValsByProp(param) != 1)
|
2018-01-25 15:59:59 -08:00
|
|
|
alSetError(Context, AL_INVALID_ENUM, "Invalid integer64 property 0x%04x", param);
|
2012-12-05 19:58:01 -08:00
|
|
|
else
|
2018-11-15 03:13:54 -08:00
|
|
|
GetSourcei64v(Source, Context, static_cast<SourceProp>(param), value);
|
2018-01-27 13:02:17 -08:00
|
|
|
UnlockSourceList(Context);
|
2012-08-20 14:16:58 -07:00
|
|
|
|
|
|
|
ALCcontext_DecRef(Context);
|
|
|
|
}
|
|
|
|
|
|
|
|
AL_API void AL_APIENTRY alGetSource3i64SOFT(ALuint source, ALenum param, ALint64SOFT *value1, ALint64SOFT *value2, ALint64SOFT *value3)
|
|
|
|
{
|
|
|
|
ALCcontext *Context;
|
|
|
|
ALsource *Source;
|
|
|
|
|
|
|
|
Context = GetContextRef();
|
|
|
|
if(!Context) return;
|
|
|
|
|
2018-01-27 13:02:17 -08:00
|
|
|
LockSourceList(Context);
|
2012-08-29 00:25:01 -07:00
|
|
|
if((Source=LookupSource(Context, source)) == NULL)
|
2018-01-25 15:59:59 -08:00
|
|
|
alSetError(Context, AL_INVALID_NAME, "Invalid source ID %u", source);
|
2012-08-29 00:25:01 -07:00
|
|
|
else if(!(value1 && value2 && value3))
|
2018-01-25 15:59:59 -08:00
|
|
|
alSetError(Context, AL_INVALID_VALUE, "NULL pointer");
|
2018-10-29 10:17:30 -07:00
|
|
|
else if(Int64ValsByProp(param) != 3)
|
2018-01-25 15:59:59 -08:00
|
|
|
alSetError(Context, AL_INVALID_ENUM, "Invalid 3-integer64 property 0x%04x", param);
|
2012-12-05 19:58:01 -08:00
|
|
|
else
|
2012-08-20 14:16:58 -07:00
|
|
|
{
|
2012-12-05 19:58:01 -08:00
|
|
|
ALint64 i64vals[3];
|
2018-11-15 03:13:54 -08:00
|
|
|
if(GetSourcei64v(Source, Context, static_cast<SourceProp>(param), i64vals))
|
2012-12-05 19:58:01 -08:00
|
|
|
{
|
|
|
|
*value1 = i64vals[0];
|
|
|
|
*value2 = i64vals[1];
|
|
|
|
*value3 = i64vals[2];
|
|
|
|
}
|
2012-08-18 11:02:54 -07:00
|
|
|
}
|
2018-01-27 13:02:17 -08:00
|
|
|
UnlockSourceList(Context);
|
2012-08-18 11:02:54 -07:00
|
|
|
|
|
|
|
ALCcontext_DecRef(Context);
|
|
|
|
}
|
|
|
|
|
2012-08-20 12:22:00 -07:00
|
|
|
AL_API void AL_APIENTRY alGetSourcei64vSOFT(ALuint source, ALenum param, ALint64SOFT *values)
|
2012-08-18 11:02:54 -07:00
|
|
|
{
|
|
|
|
ALCcontext *Context;
|
|
|
|
ALsource *Source;
|
|
|
|
|
|
|
|
Context = GetContextRef();
|
|
|
|
if(!Context) return;
|
|
|
|
|
2018-01-27 13:02:17 -08:00
|
|
|
LockSourceList(Context);
|
2012-08-29 00:25:01 -07:00
|
|
|
if((Source=LookupSource(Context, source)) == NULL)
|
2018-01-25 15:59:59 -08:00
|
|
|
alSetError(Context, AL_INVALID_NAME, "Invalid source ID %u", source);
|
2012-08-29 00:25:01 -07:00
|
|
|
else if(!values)
|
2018-01-25 15:59:59 -08:00
|
|
|
alSetError(Context, AL_INVALID_VALUE, "NULL pointer");
|
2018-10-29 10:17:30 -07:00
|
|
|
else if(Int64ValsByProp(param) < 1)
|
2018-01-25 15:59:59 -08:00
|
|
|
alSetError(Context, AL_INVALID_ENUM, "Invalid integer64-vector property 0x%04x", param);
|
2012-12-05 19:58:01 -08:00
|
|
|
else
|
2018-11-15 03:13:54 -08:00
|
|
|
GetSourcei64v(Source, Context, static_cast<SourceProp>(param), values);
|
2018-01-27 13:02:17 -08:00
|
|
|
UnlockSourceList(Context);
|
2012-08-18 11:02:54 -07:00
|
|
|
|
|
|
|
ALCcontext_DecRef(Context);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2010-03-19 14:34:18 -07:00
|
|
|
AL_API ALvoid AL_APIENTRY alSourcePlay(ALuint source)
|
2007-11-13 18:02:18 -08:00
|
|
|
{
|
|
|
|
alSourcePlayv(1, &source);
|
|
|
|
}
|
2010-03-24 02:23:00 -07:00
|
|
|
AL_API ALvoid AL_APIENTRY alSourcePlayv(ALsizei n, const ALuint *sources)
|
2007-11-13 18:02:18 -08:00
|
|
|
{
|
2013-10-07 09:24:50 -07:00
|
|
|
ALCcontext *context;
|
2017-03-19 16:49:23 -07:00
|
|
|
ALCdevice *device;
|
2013-10-07 09:24:50 -07:00
|
|
|
ALsource *source;
|
2017-03-19 16:49:23 -07:00
|
|
|
ALvoice *voice;
|
|
|
|
ALsizei i, j;
|
2007-11-13 18:02:18 -08:00
|
|
|
|
2013-10-07 09:24:50 -07:00
|
|
|
context = GetContextRef();
|
|
|
|
if(!context) return;
|
2009-08-16 15:09:36 -07:00
|
|
|
|
2018-01-27 13:02:17 -08:00
|
|
|
LockSourceList(context);
|
2013-10-07 09:24:50 -07:00
|
|
|
if(!(n >= 0))
|
2018-01-25 15:59:59 -08:00
|
|
|
SETERR_GOTO(context, AL_INVALID_VALUE, done, "Playing %d sources", n);
|
2013-10-07 09:24:50 -07:00
|
|
|
for(i = 0;i < n;i++)
|
2010-03-24 02:23:00 -07:00
|
|
|
{
|
2013-10-07 09:24:50 -07:00
|
|
|
if(!LookupSource(context, sources[i]))
|
2018-01-25 15:59:59 -08:00
|
|
|
SETERR_GOTO(context, AL_INVALID_NAME, done, "Invalid source ID %u", sources[i]);
|
2013-10-07 09:24:50 -07:00
|
|
|
}
|
2007-11-13 18:02:18 -08:00
|
|
|
|
2017-03-07 04:50:09 -08:00
|
|
|
device = context->Device;
|
|
|
|
ALCdevice_Lock(device);
|
|
|
|
/* If the device is disconnected, go right to stopped. */
|
2018-02-04 00:01:12 -08:00
|
|
|
if(!ATOMIC_LOAD(&device->Connected, almemory_order_acquire))
|
2017-03-07 04:50:09 -08:00
|
|
|
{
|
2018-02-24 09:24:18 -08:00
|
|
|
/* TODO: Send state change event? */
|
2017-03-07 04:50:09 -08:00
|
|
|
for(i = 0;i < n;i++)
|
|
|
|
{
|
|
|
|
source = LookupSource(context, sources[i]);
|
2018-02-24 09:24:18 -08:00
|
|
|
source->OffsetType = AL_NONE;
|
|
|
|
source->Offset = 0.0;
|
2018-02-24 09:44:52 -08:00
|
|
|
source->state = AL_STOPPED;
|
2017-03-07 04:50:09 -08:00
|
|
|
}
|
|
|
|
ALCdevice_Unlock(device);
|
|
|
|
goto done;
|
|
|
|
}
|
|
|
|
|
2014-08-21 03:24:48 -07:00
|
|
|
while(n > context->MaxVoices-context->VoiceCount)
|
2013-10-07 09:24:50 -07:00
|
|
|
{
|
2017-02-14 19:59:39 -08:00
|
|
|
ALsizei newcount = context->MaxVoices << 1;
|
|
|
|
if(context->MaxVoices >= newcount)
|
2010-06-06 00:17:50 -07:00
|
|
|
{
|
2017-03-07 04:50:09 -08:00
|
|
|
ALCdevice_Unlock(device);
|
2018-01-25 15:59:59 -08:00
|
|
|
SETERR_GOTO(context, AL_OUT_OF_MEMORY, done,
|
|
|
|
"Overflow increasing voice count %d -> %d", context->MaxVoices, newcount);
|
2012-04-23 19:46:05 -07:00
|
|
|
}
|
2017-03-07 04:50:09 -08:00
|
|
|
AllocateVoices(context, newcount, device->NumAuxSends);
|
2007-11-13 18:02:18 -08:00
|
|
|
}
|
|
|
|
|
2017-03-19 13:48:40 -07:00
|
|
|
for(i = 0;i < n;i++)
|
2016-08-08 22:31:08 -07:00
|
|
|
{
|
2017-03-19 16:49:23 -07:00
|
|
|
ALbufferlistitem *BufferList;
|
2017-05-02 04:09:01 -07:00
|
|
|
bool start_fading = false;
|
2018-02-01 23:56:35 -08:00
|
|
|
ALint vidx = -1;
|
2017-03-19 16:49:23 -07:00
|
|
|
|
2017-03-19 13:48:40 -07:00
|
|
|
source = LookupSource(context, sources[i]);
|
2017-03-19 16:49:23 -07:00
|
|
|
/* Check that there is a queue containing at least one valid, non zero
|
2018-03-27 08:27:16 -07:00
|
|
|
* length buffer.
|
2017-03-19 16:49:23 -07:00
|
|
|
*/
|
2017-04-18 00:58:33 -07:00
|
|
|
BufferList = source->queue;
|
2018-03-27 08:27:16 -07:00
|
|
|
while(BufferList && BufferList->max_samples == 0)
|
2017-04-19 19:54:17 -07:00
|
|
|
BufferList = ATOMIC_LOAD(&BufferList->next, almemory_order_relaxed);
|
2017-03-19 16:49:23 -07:00
|
|
|
|
|
|
|
/* If there's nothing to play, go right to stopped. */
|
2018-02-24 09:24:18 -08:00
|
|
|
if(UNLIKELY(!BufferList))
|
2017-03-19 16:49:23 -07:00
|
|
|
{
|
|
|
|
/* NOTE: A source without any playable buffers should not have an
|
|
|
|
* ALvoice since it shouldn't be in a playing or paused state. So
|
|
|
|
* there's no need to look up its voice and clear the source.
|
|
|
|
*/
|
2018-02-24 09:24:18 -08:00
|
|
|
ALenum oldstate = GetSourceState(source, NULL);
|
2017-03-19 16:49:23 -07:00
|
|
|
source->OffsetType = AL_NONE;
|
|
|
|
source->Offset = 0.0;
|
2018-02-24 09:24:18 -08:00
|
|
|
if(oldstate != AL_STOPPED)
|
2018-02-24 09:44:52 -08:00
|
|
|
{
|
|
|
|
source->state = AL_STOPPED;
|
2018-02-24 09:24:18 -08:00
|
|
|
SendStateChangeEvent(context, source->id, AL_STOPPED);
|
2018-02-24 09:44:52 -08:00
|
|
|
}
|
2018-02-02 22:24:33 -08:00
|
|
|
continue;
|
2017-03-19 16:49:23 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
voice = GetSourceVoice(source, context);
|
|
|
|
switch(GetSourceState(source, voice))
|
|
|
|
{
|
|
|
|
case AL_PLAYING:
|
|
|
|
assert(voice != NULL);
|
|
|
|
/* A source that's already playing is restarted from the beginning. */
|
|
|
|
ATOMIC_STORE(&voice->current_buffer, BufferList, almemory_order_relaxed);
|
2018-11-15 03:13:54 -08:00
|
|
|
ATOMIC_STORE(&voice->position, 0u, almemory_order_relaxed);
|
2017-03-19 16:49:23 -07:00
|
|
|
ATOMIC_STORE(&voice->position_fraction, 0, almemory_order_release);
|
2018-02-02 22:24:33 -08:00
|
|
|
continue;
|
2017-03-19 16:49:23 -07:00
|
|
|
|
|
|
|
case AL_PAUSED:
|
|
|
|
assert(voice != NULL);
|
2017-06-09 13:32:34 -07:00
|
|
|
/* A source that's paused simply resumes. */
|
2017-03-19 16:49:23 -07:00
|
|
|
ATOMIC_STORE(&voice->Playing, true, almemory_order_release);
|
2018-02-24 09:44:52 -08:00
|
|
|
source->state = AL_PLAYING;
|
2018-02-24 09:24:18 -08:00
|
|
|
SendStateChangeEvent(context, source->id, AL_PLAYING);
|
2018-02-02 22:24:33 -08:00
|
|
|
continue;
|
2017-03-19 16:49:23 -07:00
|
|
|
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2018-03-27 08:27:16 -07:00
|
|
|
/* Look for an unused voice to play this source with. */
|
2017-03-19 16:49:23 -07:00
|
|
|
assert(voice == NULL);
|
|
|
|
for(j = 0;j < context->VoiceCount;j++)
|
|
|
|
{
|
|
|
|
if(ATOMIC_LOAD(&context->Voices[j]->Source, almemory_order_acquire) == NULL)
|
|
|
|
{
|
2018-02-01 23:56:35 -08:00
|
|
|
vidx = j;
|
2017-03-19 16:49:23 -07:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2018-02-01 23:56:35 -08:00
|
|
|
if(vidx == -1)
|
|
|
|
vidx = context->VoiceCount++;
|
|
|
|
voice = context->Voices[vidx];
|
2017-03-19 16:49:23 -07:00
|
|
|
ATOMIC_STORE(&voice->Playing, false, almemory_order_release);
|
2017-04-17 21:16:01 -07:00
|
|
|
|
2018-11-13 20:26:32 -08:00
|
|
|
ATOMIC_EXCHANGE(&source->PropsClean, AL_TRUE, almemory_order_acquire);
|
2017-09-27 11:13:18 -07:00
|
|
|
UpdateSourceProps(source, voice, device->NumAuxSends, context);
|
2017-03-19 16:49:23 -07:00
|
|
|
|
|
|
|
/* A source that's not playing or paused has any offset applied when it
|
|
|
|
* starts playing.
|
|
|
|
*/
|
2017-04-18 00:58:33 -07:00
|
|
|
if(source->Looping)
|
|
|
|
ATOMIC_STORE(&voice->loop_buffer, source->queue, almemory_order_relaxed);
|
|
|
|
else
|
2018-11-15 03:13:54 -08:00
|
|
|
ATOMIC_STORE(&voice->loop_buffer, static_cast<ALbufferlistitem*>(nullptr),
|
|
|
|
almemory_order_relaxed);
|
2017-03-19 16:49:23 -07:00
|
|
|
ATOMIC_STORE(&voice->current_buffer, BufferList, almemory_order_relaxed);
|
2018-11-15 03:13:54 -08:00
|
|
|
ATOMIC_STORE(&voice->position, 0u, almemory_order_relaxed);
|
2017-03-19 16:49:23 -07:00
|
|
|
ATOMIC_STORE(&voice->position_fraction, 0, almemory_order_relaxed);
|
2018-03-27 08:27:16 -07:00
|
|
|
if(ApplyOffset(source, voice) != AL_FALSE)
|
2017-05-02 04:09:01 -07:00
|
|
|
start_fading = ATOMIC_LOAD(&voice->position, almemory_order_relaxed) != 0 ||
|
2017-05-02 03:57:17 -07:00
|
|
|
ATOMIC_LOAD(&voice->position_fraction, almemory_order_relaxed) != 0 ||
|
|
|
|
ATOMIC_LOAD(&voice->current_buffer, almemory_order_relaxed) != BufferList;
|
2017-03-19 16:49:23 -07:00
|
|
|
|
2018-03-27 08:27:16 -07:00
|
|
|
for(j = 0;j < BufferList->num_buffers;j++)
|
|
|
|
{
|
|
|
|
ALbuffer *buffer = BufferList->buffers[j];
|
|
|
|
if(buffer)
|
|
|
|
{
|
|
|
|
voice->NumChannels = ChannelsFromFmt(buffer->FmtChannels);
|
|
|
|
voice->SampleSize = BytesFromFmt(buffer->FmtType);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2017-03-19 16:49:23 -07:00
|
|
|
|
|
|
|
/* Clear previous samples. */
|
|
|
|
memset(voice->PrevSamples, 0, sizeof(voice->PrevSamples));
|
|
|
|
|
|
|
|
/* Clear the stepping value so the mixer knows not to mix this until
|
|
|
|
* the update gets applied.
|
|
|
|
*/
|
|
|
|
voice->Step = 0;
|
|
|
|
|
2017-05-02 04:09:01 -07:00
|
|
|
voice->Flags = start_fading ? VOICE_IS_FADING : 0;
|
2018-01-16 18:07:59 -08:00
|
|
|
if(source->SourceType == AL_STATIC) voice->Flags |= VOICE_IS_STATIC;
|
2017-05-02 03:57:17 -07:00
|
|
|
memset(voice->Direct.Params, 0, sizeof(voice->Direct.Params[0])*voice->NumChannels);
|
2018-03-27 08:27:16 -07:00
|
|
|
for(j = 0;j < device->NumAuxSends;j++)
|
|
|
|
memset(voice->Send[j].Params, 0, sizeof(voice->Send[j].Params[0])*voice->NumChannels);
|
2017-03-19 16:49:23 -07:00
|
|
|
if(device->AvgSpeakerDist > 0.0f)
|
|
|
|
{
|
|
|
|
ALfloat w1 = SPEEDOFSOUNDMETRESPERSEC /
|
2018-02-11 21:59:59 -08:00
|
|
|
(device->AvgSpeakerDist * device->Frequency);
|
2017-03-19 16:49:23 -07:00
|
|
|
for(j = 0;j < voice->NumChannels;j++)
|
2018-02-11 21:59:59 -08:00
|
|
|
NfcFilterCreate(&voice->Direct.Params[j].NFCtrlFilter, 0.0f, w1);
|
2017-03-19 16:49:23 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
ATOMIC_STORE(&voice->Source, source, almemory_order_relaxed);
|
|
|
|
ATOMIC_STORE(&voice->Playing, true, almemory_order_release);
|
2018-02-24 09:44:52 -08:00
|
|
|
source->state = AL_PLAYING;
|
2018-02-01 23:56:35 -08:00
|
|
|
source->VoiceIdx = vidx;
|
2018-02-24 09:24:18 -08:00
|
|
|
|
|
|
|
SendStateChangeEvent(context, source->id, AL_PLAYING);
|
2013-10-07 09:24:50 -07:00
|
|
|
}
|
2017-03-07 04:50:09 -08:00
|
|
|
ALCdevice_Unlock(device);
|
2013-10-07 09:24:50 -07:00
|
|
|
|
|
|
|
done:
|
2018-01-27 13:02:17 -08:00
|
|
|
UnlockSourceList(context);
|
2013-10-07 09:24:50 -07:00
|
|
|
ALCcontext_DecRef(context);
|
2007-11-13 18:02:18 -08:00
|
|
|
}
|
|
|
|
|
2010-03-19 14:34:18 -07:00
|
|
|
AL_API ALvoid AL_APIENTRY alSourcePause(ALuint source)
|
2007-11-13 18:02:18 -08:00
|
|
|
{
|
|
|
|
alSourcePausev(1, &source);
|
|
|
|
}
|
2010-03-19 14:34:18 -07:00
|
|
|
AL_API ALvoid AL_APIENTRY alSourcePausev(ALsizei n, const ALuint *sources)
|
2007-11-13 18:02:18 -08:00
|
|
|
{
|
2013-10-07 09:24:50 -07:00
|
|
|
ALCcontext *context;
|
2017-03-19 16:49:23 -07:00
|
|
|
ALCdevice *device;
|
2013-10-07 09:24:50 -07:00
|
|
|
ALsource *source;
|
2017-03-19 16:49:23 -07:00
|
|
|
ALvoice *voice;
|
2013-10-07 09:24:50 -07:00
|
|
|
ALsizei i;
|
2007-11-13 18:02:18 -08:00
|
|
|
|
2013-10-07 09:24:50 -07:00
|
|
|
context = GetContextRef();
|
|
|
|
if(!context) return;
|
2009-08-16 15:09:36 -07:00
|
|
|
|
2018-01-27 13:02:17 -08:00
|
|
|
LockSourceList(context);
|
2018-10-29 02:05:45 +01:00
|
|
|
if(n < 0)
|
2018-01-25 15:59:59 -08:00
|
|
|
SETERR_GOTO(context, AL_INVALID_VALUE, done, "Pausing %d sources", n);
|
2013-10-07 09:24:50 -07:00
|
|
|
for(i = 0;i < n;i++)
|
2010-03-24 02:23:00 -07:00
|
|
|
{
|
2013-10-07 09:24:50 -07:00
|
|
|
if(!LookupSource(context, sources[i]))
|
2018-01-25 15:59:59 -08:00
|
|
|
SETERR_GOTO(context, AL_INVALID_NAME, done, "Invalid source ID %u", sources[i]);
|
2013-10-07 09:24:50 -07:00
|
|
|
}
|
2010-03-24 02:23:00 -07:00
|
|
|
|
2017-03-19 16:49:23 -07:00
|
|
|
device = context->Device;
|
|
|
|
ALCdevice_Lock(device);
|
2017-03-19 13:48:40 -07:00
|
|
|
for(i = 0;i < n;i++)
|
2016-08-08 22:31:08 -07:00
|
|
|
{
|
2017-03-19 13:48:40 -07:00
|
|
|
source = LookupSource(context, sources[i]);
|
2017-03-19 16:49:23 -07:00
|
|
|
if((voice=GetSourceVoice(source, context)) != NULL)
|
|
|
|
ATOMIC_STORE(&voice->Playing, false, almemory_order_release);
|
|
|
|
if(GetSourceState(source, voice) == AL_PLAYING)
|
2018-02-24 09:24:18 -08:00
|
|
|
{
|
2018-02-24 09:44:52 -08:00
|
|
|
source->state = AL_PAUSED;
|
2018-02-24 09:24:18 -08:00
|
|
|
SendStateChangeEvent(context, source->id, AL_PAUSED);
|
|
|
|
}
|
2007-11-13 18:02:18 -08:00
|
|
|
}
|
2017-03-19 16:49:23 -07:00
|
|
|
ALCdevice_Unlock(device);
|
2007-11-13 18:02:18 -08:00
|
|
|
|
2013-10-07 09:24:50 -07:00
|
|
|
done:
|
2018-01-27 13:02:17 -08:00
|
|
|
UnlockSourceList(context);
|
2013-10-07 09:24:50 -07:00
|
|
|
ALCcontext_DecRef(context);
|
2007-11-13 18:02:18 -08:00
|
|
|
}
|
|
|
|
|
2010-03-19 14:34:18 -07:00
|
|
|
AL_API ALvoid AL_APIENTRY alSourceStop(ALuint source)
|
2007-11-13 18:02:18 -08:00
|
|
|
{
|
|
|
|
alSourceStopv(1, &source);
|
|
|
|
}
|
2010-03-19 14:34:18 -07:00
|
|
|
AL_API ALvoid AL_APIENTRY alSourceStopv(ALsizei n, const ALuint *sources)
|
2007-11-13 18:02:18 -08:00
|
|
|
{
|
2013-10-07 09:24:50 -07:00
|
|
|
ALCcontext *context;
|
2017-03-19 16:49:23 -07:00
|
|
|
ALCdevice *device;
|
2013-10-07 09:24:50 -07:00
|
|
|
ALsource *source;
|
2017-03-19 16:49:23 -07:00
|
|
|
ALvoice *voice;
|
2013-10-07 09:24:50 -07:00
|
|
|
ALsizei i;
|
2007-11-13 18:02:18 -08:00
|
|
|
|
2013-10-07 09:24:50 -07:00
|
|
|
context = GetContextRef();
|
|
|
|
if(!context) return;
|
2009-08-16 15:09:36 -07:00
|
|
|
|
2018-01-27 13:02:17 -08:00
|
|
|
LockSourceList(context);
|
2018-10-29 02:05:45 +01:00
|
|
|
if(n < 0)
|
2018-01-25 15:59:59 -08:00
|
|
|
SETERR_GOTO(context, AL_INVALID_VALUE, done, "Stopping %d sources", n);
|
2013-10-07 09:24:50 -07:00
|
|
|
for(i = 0;i < n;i++)
|
2010-03-24 02:23:00 -07:00
|
|
|
{
|
2013-10-07 09:24:50 -07:00
|
|
|
if(!LookupSource(context, sources[i]))
|
2018-01-25 15:59:59 -08:00
|
|
|
SETERR_GOTO(context, AL_INVALID_NAME, done, "Invalid source ID %u", sources[i]);
|
2013-10-07 09:24:50 -07:00
|
|
|
}
|
2010-03-24 02:23:00 -07:00
|
|
|
|
2017-03-19 16:49:23 -07:00
|
|
|
device = context->Device;
|
|
|
|
ALCdevice_Lock(device);
|
2013-10-07 09:24:50 -07:00
|
|
|
for(i = 0;i < n;i++)
|
|
|
|
{
|
2018-02-24 09:24:18 -08:00
|
|
|
ALenum oldstate;
|
2013-10-07 09:24:50 -07:00
|
|
|
source = LookupSource(context, sources[i]);
|
2017-03-19 16:49:23 -07:00
|
|
|
if((voice=GetSourceVoice(source, context)) != NULL)
|
|
|
|
{
|
2018-11-15 03:13:54 -08:00
|
|
|
ATOMIC_STORE(&voice->Source, static_cast<ALsource*>(nullptr), almemory_order_relaxed);
|
2017-03-19 16:49:23 -07:00
|
|
|
ATOMIC_STORE(&voice->Playing, false, almemory_order_release);
|
2018-02-24 09:24:18 -08:00
|
|
|
voice = NULL;
|
2017-03-19 16:49:23 -07:00
|
|
|
}
|
2018-02-24 09:24:18 -08:00
|
|
|
oldstate = GetSourceState(source, voice);
|
|
|
|
if(oldstate != AL_INITIAL && oldstate != AL_STOPPED)
|
|
|
|
{
|
2018-02-24 09:44:52 -08:00
|
|
|
source->state = AL_STOPPED;
|
2018-02-24 09:24:18 -08:00
|
|
|
SendStateChangeEvent(context, source->id, AL_STOPPED);
|
|
|
|
}
|
2017-03-19 16:49:23 -07:00
|
|
|
source->OffsetType = AL_NONE;
|
|
|
|
source->Offset = 0.0;
|
2007-11-13 18:02:18 -08:00
|
|
|
}
|
2017-03-19 16:49:23 -07:00
|
|
|
ALCdevice_Unlock(device);
|
2007-11-13 18:02:18 -08:00
|
|
|
|
2013-10-07 09:24:50 -07:00
|
|
|
done:
|
2018-01-27 13:02:17 -08:00
|
|
|
UnlockSourceList(context);
|
2013-10-07 09:24:50 -07:00
|
|
|
ALCcontext_DecRef(context);
|
2007-11-13 18:02:18 -08:00
|
|
|
}
|
|
|
|
|
2010-03-19 14:34:18 -07:00
|
|
|
AL_API ALvoid AL_APIENTRY alSourceRewind(ALuint source)
|
2007-11-13 18:02:18 -08:00
|
|
|
{
|
|
|
|
alSourceRewindv(1, &source);
|
|
|
|
}
|
2010-03-19 14:34:18 -07:00
|
|
|
AL_API ALvoid AL_APIENTRY alSourceRewindv(ALsizei n, const ALuint *sources)
|
2007-11-13 18:02:18 -08:00
|
|
|
{
|
2013-10-07 09:24:50 -07:00
|
|
|
ALCcontext *context;
|
2017-03-19 16:49:23 -07:00
|
|
|
ALCdevice *device;
|
2013-10-07 09:24:50 -07:00
|
|
|
ALsource *source;
|
2017-03-19 16:49:23 -07:00
|
|
|
ALvoice *voice;
|
2013-10-07 09:24:50 -07:00
|
|
|
ALsizei i;
|
2007-11-13 18:02:18 -08:00
|
|
|
|
2013-10-07 09:24:50 -07:00
|
|
|
context = GetContextRef();
|
|
|
|
if(!context) return;
|
2009-08-16 15:09:36 -07:00
|
|
|
|
2018-01-27 13:02:17 -08:00
|
|
|
LockSourceList(context);
|
2018-10-29 02:05:45 +01:00
|
|
|
if(n < 0)
|
2018-01-25 15:59:59 -08:00
|
|
|
SETERR_GOTO(context, AL_INVALID_VALUE, done, "Rewinding %d sources", n);
|
2013-10-07 09:24:50 -07:00
|
|
|
for(i = 0;i < n;i++)
|
2010-03-24 02:23:00 -07:00
|
|
|
{
|
2013-10-07 09:24:50 -07:00
|
|
|
if(!LookupSource(context, sources[i]))
|
2018-01-25 15:59:59 -08:00
|
|
|
SETERR_GOTO(context, AL_INVALID_NAME, done, "Invalid source ID %u", sources[i]);
|
2013-10-07 09:24:50 -07:00
|
|
|
}
|
2010-03-24 02:23:00 -07:00
|
|
|
|
2017-03-19 16:49:23 -07:00
|
|
|
device = context->Device;
|
|
|
|
ALCdevice_Lock(device);
|
2013-10-07 09:24:50 -07:00
|
|
|
for(i = 0;i < n;i++)
|
|
|
|
{
|
|
|
|
source = LookupSource(context, sources[i]);
|
2017-03-19 16:49:23 -07:00
|
|
|
if((voice=GetSourceVoice(source, context)) != NULL)
|
|
|
|
{
|
2018-11-15 03:13:54 -08:00
|
|
|
ATOMIC_STORE(&voice->Source, static_cast<ALsource*>(nullptr), almemory_order_relaxed);
|
2017-03-19 16:49:23 -07:00
|
|
|
ATOMIC_STORE(&voice->Playing, false, almemory_order_release);
|
2018-02-24 09:24:18 -08:00
|
|
|
voice = NULL;
|
2017-03-19 16:49:23 -07:00
|
|
|
}
|
2018-02-24 09:24:18 -08:00
|
|
|
if(GetSourceState(source, voice) != AL_INITIAL)
|
|
|
|
{
|
2018-02-24 09:44:52 -08:00
|
|
|
source->state = AL_INITIAL;
|
2018-02-24 09:24:18 -08:00
|
|
|
SendStateChangeEvent(context, source->id, AL_INITIAL);
|
|
|
|
}
|
2017-03-19 16:49:23 -07:00
|
|
|
source->OffsetType = AL_NONE;
|
|
|
|
source->Offset = 0.0;
|
2007-11-13 18:02:18 -08:00
|
|
|
}
|
2017-03-19 16:49:23 -07:00
|
|
|
ALCdevice_Unlock(device);
|
2007-11-13 18:02:18 -08:00
|
|
|
|
2013-10-07 09:24:50 -07:00
|
|
|
done:
|
2018-01-27 13:02:17 -08:00
|
|
|
UnlockSourceList(context);
|
2013-10-07 09:24:50 -07:00
|
|
|
ALCcontext_DecRef(context);
|
2007-11-13 18:02:18 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2013-10-07 09:24:50 -07:00
|
|
|
AL_API ALvoid AL_APIENTRY alSourceQueueBuffers(ALuint src, ALsizei nb, const ALuint *buffers)
|
2007-11-13 18:02:18 -08:00
|
|
|
{
|
2013-10-07 09:24:50 -07:00
|
|
|
ALCdevice *device;
|
|
|
|
ALCcontext *context;
|
|
|
|
ALsource *source;
|
|
|
|
ALsizei i;
|
2014-05-10 08:55:28 -07:00
|
|
|
ALbufferlistitem *BufferListStart;
|
2010-03-24 02:23:00 -07:00
|
|
|
ALbufferlistitem *BufferList;
|
2013-10-07 09:24:50 -07:00
|
|
|
ALbuffer *BufferFmt = NULL;
|
2007-11-13 18:02:18 -08:00
|
|
|
|
2012-04-23 19:46:05 -07:00
|
|
|
if(nb == 0)
|
2007-11-13 18:02:18 -08:00
|
|
|
return;
|
|
|
|
|
2013-10-07 09:24:50 -07:00
|
|
|
context = GetContextRef();
|
|
|
|
if(!context) return;
|
2009-08-16 15:09:36 -07:00
|
|
|
|
2013-10-07 09:24:50 -07:00
|
|
|
device = context->Device;
|
2010-03-16 18:54:36 -07:00
|
|
|
|
2018-01-27 13:02:17 -08:00
|
|
|
LockSourceList(context);
|
2013-10-07 09:24:50 -07:00
|
|
|
if(!(nb >= 0))
|
2018-01-25 15:59:59 -08:00
|
|
|
SETERR_GOTO(context, AL_INVALID_VALUE, done, "Queueing %d buffers", nb);
|
2013-10-07 09:24:50 -07:00
|
|
|
if((source=LookupSource(context, src)) == NULL)
|
2018-01-25 15:59:59 -08:00
|
|
|
SETERR_GOTO(context, AL_INVALID_NAME, done, "Invalid source ID %u", src);
|
2009-10-22 09:31:26 -07:00
|
|
|
|
2013-10-07 09:24:50 -07:00
|
|
|
if(source->SourceType == AL_STATIC)
|
|
|
|
{
|
|
|
|
/* Can't queue on a Static Source */
|
2018-01-25 15:59:59 -08:00
|
|
|
SETERR_GOTO(context, AL_INVALID_OPERATION, done, "Queueing onto static source %u", src);
|
2013-10-07 09:24:50 -07:00
|
|
|
}
|
2007-11-13 18:02:18 -08:00
|
|
|
|
2013-10-07 09:24:50 -07:00
|
|
|
/* Check for a valid Buffer, for its frequency and format */
|
2017-04-18 00:58:33 -07:00
|
|
|
BufferList = source->queue;
|
2013-10-07 09:24:50 -07:00
|
|
|
while(BufferList)
|
|
|
|
{
|
2017-12-15 22:59:51 -08:00
|
|
|
for(i = 0;i < BufferList->num_buffers;i++)
|
2010-03-24 02:23:00 -07:00
|
|
|
{
|
2017-12-15 22:59:51 -08:00
|
|
|
if((BufferFmt=BufferList->buffers[i]) != NULL)
|
|
|
|
break;
|
2010-03-24 02:23:00 -07:00
|
|
|
}
|
2017-12-15 22:59:51 -08:00
|
|
|
if(BufferFmt) break;
|
2017-04-19 19:54:17 -07:00
|
|
|
BufferList = ATOMIC_LOAD(&BufferList->next, almemory_order_relaxed);
|
2013-10-07 09:24:50 -07:00
|
|
|
}
|
2007-11-13 18:02:18 -08:00
|
|
|
|
2018-01-27 01:51:01 -08:00
|
|
|
LockBufferList(device);
|
2014-05-10 08:55:28 -07:00
|
|
|
BufferListStart = NULL;
|
|
|
|
BufferList = NULL;
|
2013-10-07 09:24:50 -07:00
|
|
|
for(i = 0;i < nb;i++)
|
|
|
|
{
|
|
|
|
ALbuffer *buffer = NULL;
|
|
|
|
if(buffers[i] && (buffer=LookupBuffer(device, buffers[i])) == NULL)
|
2018-01-25 15:59:59 -08:00
|
|
|
SETERR_GOTO(context, AL_INVALID_NAME, buffer_error, "Queueing invalid buffer ID %u",
|
|
|
|
buffers[i]);
|
2012-04-23 19:46:05 -07:00
|
|
|
|
2013-10-07 09:24:50 -07:00
|
|
|
if(!BufferListStart)
|
2011-09-11 03:57:40 -07:00
|
|
|
{
|
2018-11-15 03:13:54 -08:00
|
|
|
BufferListStart = static_cast<ALbufferlistitem*>(al_calloc(DEF_ALIGN,
|
|
|
|
FAM_SIZE(ALbufferlistitem, buffers, 1)));
|
2013-10-07 09:24:50 -07:00
|
|
|
BufferList = BufferListStart;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2018-11-15 03:13:54 -08:00
|
|
|
ALbufferlistitem *item = static_cast<ALbufferlistitem*>(al_calloc(DEF_ALIGN,
|
|
|
|
FAM_SIZE(ALbufferlistitem, buffers, 1)));
|
2017-04-19 19:54:17 -07:00
|
|
|
ATOMIC_STORE(&BufferList->next, item, almemory_order_relaxed);
|
|
|
|
BufferList = item;
|
2011-09-11 03:57:40 -07:00
|
|
|
}
|
2018-11-15 03:13:54 -08:00
|
|
|
ATOMIC_INIT(&BufferList->next, static_cast<ALbufferlistitem*>(nullptr));
|
2018-03-27 08:27:16 -07:00
|
|
|
BufferList->max_samples = buffer ? buffer->SampleLen : 0;
|
2017-12-15 22:59:51 -08:00
|
|
|
BufferList->num_buffers = 1;
|
|
|
|
BufferList->buffers[0] = buffer;
|
2013-10-07 09:24:50 -07:00
|
|
|
if(!buffer) continue;
|
2012-04-21 05:53:27 -07:00
|
|
|
|
2014-05-10 08:55:28 -07:00
|
|
|
IncrementRef(&buffer->ref);
|
|
|
|
|
2018-01-23 10:38:27 -08:00
|
|
|
if(buffer->MappedAccess != 0 && !(buffer->MappedAccess&AL_MAP_PERSISTENT_BIT_SOFT))
|
2018-01-25 15:59:59 -08:00
|
|
|
SETERR_GOTO(context, AL_INVALID_OPERATION, buffer_error,
|
|
|
|
"Queueing non-persistently mapped buffer %u", buffer->id);
|
2018-01-20 11:49:01 -08:00
|
|
|
|
2013-10-07 09:24:50 -07:00
|
|
|
if(BufferFmt == NULL)
|
|
|
|
BufferFmt = buffer;
|
|
|
|
else if(BufferFmt->Frequency != buffer->Frequency ||
|
2018-01-21 23:35:28 -08:00
|
|
|
BufferFmt->FmtChannels != buffer->FmtChannels ||
|
2018-05-21 23:25:56 -07:00
|
|
|
BufferFmt->OriginalType != buffer->OriginalType)
|
|
|
|
{
|
|
|
|
alSetError(context, AL_INVALID_OPERATION, "Queueing buffer with mismatched format");
|
|
|
|
|
|
|
|
buffer_error:
|
|
|
|
/* A buffer failed (invalid ID or format), so unlock and release
|
|
|
|
* each buffer we had. */
|
|
|
|
while(BufferListStart)
|
|
|
|
{
|
|
|
|
ALbufferlistitem *next = ATOMIC_LOAD(&BufferListStart->next,
|
|
|
|
almemory_order_relaxed);
|
|
|
|
for(i = 0;i < BufferListStart->num_buffers;i++)
|
|
|
|
{
|
|
|
|
if((buffer=BufferListStart->buffers[i]) != NULL)
|
|
|
|
DecrementRef(&buffer->ref);
|
|
|
|
}
|
|
|
|
al_free(BufferListStart);
|
|
|
|
BufferListStart = next;
|
|
|
|
}
|
|
|
|
UnlockBufferList(device);
|
|
|
|
goto done;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
/* All buffers good. */
|
|
|
|
UnlockBufferList(device);
|
|
|
|
|
|
|
|
/* Source is now streaming */
|
|
|
|
source->SourceType = AL_STREAMING;
|
|
|
|
|
|
|
|
if(!(BufferList=source->queue))
|
|
|
|
source->queue = BufferListStart;
|
|
|
|
else
|
|
|
|
{
|
|
|
|
ALbufferlistitem *next;
|
|
|
|
while((next=ATOMIC_LOAD(&BufferList->next, almemory_order_relaxed)) != NULL)
|
|
|
|
BufferList = next;
|
|
|
|
ATOMIC_STORE(&BufferList->next, BufferListStart, almemory_order_release);
|
|
|
|
}
|
|
|
|
|
|
|
|
done:
|
|
|
|
UnlockSourceList(context);
|
|
|
|
ALCcontext_DecRef(context);
|
|
|
|
}
|
|
|
|
|
|
|
|
AL_API void AL_APIENTRY alSourceQueueBufferLayersSOFT(ALuint src, ALsizei nb, const ALuint *buffers)
|
|
|
|
{
|
|
|
|
ALCdevice *device;
|
|
|
|
ALCcontext *context;
|
|
|
|
ALbufferlistitem *BufferListStart;
|
|
|
|
ALbufferlistitem *BufferList;
|
|
|
|
ALbuffer *BufferFmt = NULL;
|
|
|
|
ALsource *source;
|
|
|
|
ALsizei i;
|
|
|
|
|
|
|
|
if(nb == 0)
|
|
|
|
return;
|
|
|
|
|
|
|
|
context = GetContextRef();
|
|
|
|
if(!context) return;
|
|
|
|
|
|
|
|
device = context->Device;
|
|
|
|
|
|
|
|
LockSourceList(context);
|
|
|
|
if(!(nb >= 0 && nb < 16))
|
|
|
|
SETERR_GOTO(context, AL_INVALID_VALUE, done, "Queueing %d buffer layers", nb);
|
|
|
|
if((source=LookupSource(context, src)) == NULL)
|
|
|
|
SETERR_GOTO(context, AL_INVALID_NAME, done, "Invalid source ID %u", src);
|
|
|
|
|
|
|
|
if(source->SourceType == AL_STATIC)
|
|
|
|
{
|
|
|
|
/* Can't queue on a Static Source */
|
|
|
|
SETERR_GOTO(context, AL_INVALID_OPERATION, done, "Queueing onto static source %u", src);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Check for a valid Buffer, for its frequency and format */
|
|
|
|
BufferList = source->queue;
|
|
|
|
while(BufferList)
|
|
|
|
{
|
|
|
|
for(i = 0;i < BufferList->num_buffers;i++)
|
|
|
|
{
|
|
|
|
if((BufferFmt=BufferList->buffers[i]) != NULL)
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
if(BufferFmt) break;
|
|
|
|
BufferList = ATOMIC_LOAD(&BufferList->next, almemory_order_relaxed);
|
|
|
|
}
|
|
|
|
|
|
|
|
LockBufferList(device);
|
2018-11-15 03:13:54 -08:00
|
|
|
BufferListStart = static_cast<ALbufferlistitem*>(al_calloc(DEF_ALIGN,
|
|
|
|
FAM_SIZE(ALbufferlistitem, buffers, nb)));
|
2018-05-21 23:25:56 -07:00
|
|
|
BufferList = BufferListStart;
|
2018-11-15 03:13:54 -08:00
|
|
|
ATOMIC_INIT(&BufferList->next, static_cast<ALbufferlistitem*>(nullptr));
|
2018-05-21 23:25:56 -07:00
|
|
|
BufferList->max_samples = 0;
|
|
|
|
BufferList->num_buffers = 0;
|
|
|
|
for(i = 0;i < nb;i++)
|
|
|
|
{
|
|
|
|
ALbuffer *buffer = NULL;
|
|
|
|
if(buffers[i] && (buffer=LookupBuffer(device, buffers[i])) == NULL)
|
|
|
|
SETERR_GOTO(context, AL_INVALID_NAME, buffer_error, "Queueing invalid buffer ID %u",
|
|
|
|
buffers[i]);
|
|
|
|
|
|
|
|
BufferList->buffers[BufferList->num_buffers++] = buffer;
|
|
|
|
if(!buffer) continue;
|
|
|
|
|
|
|
|
IncrementRef(&buffer->ref);
|
|
|
|
|
|
|
|
BufferList->max_samples = maxi(BufferList->max_samples, buffer->SampleLen);
|
|
|
|
|
|
|
|
if(buffer->MappedAccess != 0 && !(buffer->MappedAccess&AL_MAP_PERSISTENT_BIT_SOFT))
|
|
|
|
SETERR_GOTO(context, AL_INVALID_OPERATION, buffer_error,
|
|
|
|
"Queueing non-persistently mapped buffer %u", buffer->id);
|
|
|
|
|
|
|
|
if(BufferFmt == NULL)
|
|
|
|
BufferFmt = buffer;
|
|
|
|
else if(BufferFmt->Frequency != buffer->Frequency ||
|
|
|
|
BufferFmt->FmtChannels != buffer->FmtChannels ||
|
2013-10-07 09:24:50 -07:00
|
|
|
BufferFmt->OriginalType != buffer->OriginalType)
|
|
|
|
{
|
2018-01-25 15:59:59 -08:00
|
|
|
alSetError(context, AL_INVALID_OPERATION, "Queueing buffer with mismatched format");
|
2014-05-10 08:55:28 -07:00
|
|
|
|
|
|
|
buffer_error:
|
|
|
|
/* A buffer failed (invalid ID or format), so unlock and release
|
|
|
|
* each buffer we had. */
|
2016-01-31 00:42:58 -08:00
|
|
|
while(BufferListStart)
|
2014-05-10 08:55:28 -07:00
|
|
|
{
|
2017-04-19 19:54:17 -07:00
|
|
|
ALbufferlistitem *next = ATOMIC_LOAD(&BufferListStart->next,
|
|
|
|
almemory_order_relaxed);
|
2017-12-15 22:59:51 -08:00
|
|
|
for(i = 0;i < BufferListStart->num_buffers;i++)
|
2014-05-10 08:55:28 -07:00
|
|
|
{
|
2017-12-15 22:59:51 -08:00
|
|
|
if((buffer=BufferListStart->buffers[i]) != NULL)
|
|
|
|
DecrementRef(&buffer->ref);
|
2014-05-10 08:55:28 -07:00
|
|
|
}
|
2017-02-27 20:43:16 -08:00
|
|
|
al_free(BufferListStart);
|
2016-01-31 00:42:58 -08:00
|
|
|
BufferListStart = next;
|
2014-05-10 08:55:28 -07:00
|
|
|
}
|
2018-01-27 01:51:01 -08:00
|
|
|
UnlockBufferList(device);
|
2014-05-10 08:55:28 -07:00
|
|
|
goto done;
|
2010-03-24 02:23:00 -07:00
|
|
|
}
|
2014-05-10 08:55:28 -07:00
|
|
|
}
|
2018-02-02 22:24:33 -08:00
|
|
|
/* All buffers good. */
|
2018-01-27 01:51:01 -08:00
|
|
|
UnlockBufferList(device);
|
2007-11-13 18:02:18 -08:00
|
|
|
|
2013-10-07 09:24:50 -07:00
|
|
|
/* Source is now streaming */
|
|
|
|
source->SourceType = AL_STREAMING;
|
2010-03-24 02:23:00 -07:00
|
|
|
|
2017-04-18 00:58:33 -07:00
|
|
|
if(!(BufferList=source->queue))
|
|
|
|
source->queue = BufferListStart;
|
|
|
|
else
|
2013-10-07 09:24:50 -07:00
|
|
|
{
|
2017-04-20 03:14:49 -07:00
|
|
|
ALbufferlistitem *next;
|
|
|
|
while((next=ATOMIC_LOAD(&BufferList->next, almemory_order_relaxed)) != NULL)
|
|
|
|
BufferList = next;
|
2017-04-19 19:54:17 -07:00
|
|
|
ATOMIC_STORE(&BufferList->next, BufferListStart, almemory_order_release);
|
2013-10-07 09:24:50 -07:00
|
|
|
}
|
2013-03-24 13:55:41 -07:00
|
|
|
|
2013-10-07 09:24:50 -07:00
|
|
|
done:
|
2018-01-27 13:02:17 -08:00
|
|
|
UnlockSourceList(context);
|
2013-10-07 09:24:50 -07:00
|
|
|
ALCcontext_DecRef(context);
|
2007-11-13 18:02:18 -08:00
|
|
|
}
|
|
|
|
|
2013-10-07 09:24:50 -07:00
|
|
|
AL_API ALvoid AL_APIENTRY alSourceUnqueueBuffers(ALuint src, ALsizei nb, ALuint *buffers)
|
2007-11-13 18:02:18 -08:00
|
|
|
{
|
2013-10-07 09:24:50 -07:00
|
|
|
ALCcontext *context;
|
|
|
|
ALsource *source;
|
2018-02-25 09:51:07 -08:00
|
|
|
ALbufferlistitem *BufferList;
|
2014-07-31 07:20:36 -07:00
|
|
|
ALbufferlistitem *Current;
|
2017-02-27 15:35:15 -08:00
|
|
|
ALvoice *voice;
|
2018-02-25 09:51:07 -08:00
|
|
|
ALsizei i;
|
2007-11-13 18:02:18 -08:00
|
|
|
|
2013-10-07 09:24:50 -07:00
|
|
|
context = GetContextRef();
|
|
|
|
if(!context) return;
|
|
|
|
|
2018-01-27 13:02:17 -08:00
|
|
|
LockSourceList(context);
|
2013-10-07 09:24:50 -07:00
|
|
|
if(!(nb >= 0))
|
2018-01-25 15:59:59 -08:00
|
|
|
SETERR_GOTO(context, AL_INVALID_VALUE, done, "Unqueueing %d buffers", nb);
|
2013-10-07 09:24:50 -07:00
|
|
|
if((source=LookupSource(context, src)) == NULL)
|
2018-01-25 15:59:59 -08:00
|
|
|
SETERR_GOTO(context, AL_INVALID_NAME, done, "Invalid source ID %u", src);
|
2009-08-16 15:09:36 -07:00
|
|
|
|
2017-02-27 15:35:15 -08:00
|
|
|
/* Nothing to unqueue. */
|
|
|
|
if(nb == 0) goto done;
|
|
|
|
|
2018-01-24 17:07:01 -08:00
|
|
|
if(source->Looping)
|
2018-01-25 15:59:59 -08:00
|
|
|
SETERR_GOTO(context, AL_INVALID_VALUE, done, "Unqueueing from looping source %u", src);
|
2018-01-24 17:07:01 -08:00
|
|
|
if(source->SourceType != AL_STREAMING)
|
2018-01-25 15:59:59 -08:00
|
|
|
SETERR_GOTO(context, AL_INVALID_VALUE, done, "Unqueueing from a non-streaming source %u",
|
|
|
|
src);
|
2016-07-31 23:42:30 -07:00
|
|
|
|
2018-02-25 09:51:07 -08:00
|
|
|
/* Make sure enough buffers have been processed to unqueue. */
|
|
|
|
BufferList = source->queue;
|
2017-02-27 15:35:15 -08:00
|
|
|
Current = NULL;
|
|
|
|
if((voice=GetSourceVoice(source, context)) != NULL)
|
2018-02-25 09:51:07 -08:00
|
|
|
Current = ATOMIC_LOAD(&voice->current_buffer, almemory_order_relaxed);
|
2018-02-24 09:44:52 -08:00
|
|
|
else if(source->state == AL_INITIAL)
|
2018-02-25 09:51:07 -08:00
|
|
|
Current = BufferList;
|
|
|
|
if(BufferList == Current)
|
2018-01-25 15:59:59 -08:00
|
|
|
SETERR_GOTO(context, AL_INVALID_VALUE, done, "Unqueueing pending buffers");
|
2007-11-13 18:02:18 -08:00
|
|
|
|
2018-02-25 09:51:07 -08:00
|
|
|
i = BufferList->num_buffers;
|
|
|
|
while(i < nb)
|
2014-05-10 05:07:13 -07:00
|
|
|
{
|
2018-02-25 09:51:07 -08:00
|
|
|
/* If the next bufferlist to check is NULL or is the current one, it's
|
|
|
|
* trying to unqueue pending buffers.
|
|
|
|
*/
|
|
|
|
ALbufferlistitem *next = ATOMIC_LOAD(&BufferList->next, almemory_order_relaxed);
|
|
|
|
if(!next || next == Current)
|
|
|
|
SETERR_GOTO(context, AL_INVALID_VALUE, done, "Unqueueing pending buffers");
|
|
|
|
BufferList = next;
|
2014-05-10 05:07:13 -07:00
|
|
|
|
2018-02-25 09:51:07 -08:00
|
|
|
i += BufferList->num_buffers;
|
|
|
|
}
|
|
|
|
|
|
|
|
while(nb > 0)
|
|
|
|
{
|
|
|
|
ALbufferlistitem *head = source->queue;
|
|
|
|
ALbufferlistitem *next = ATOMIC_LOAD(&head->next, almemory_order_relaxed);
|
|
|
|
for(i = 0;i < head->num_buffers && nb > 0;i++,nb--)
|
|
|
|
{
|
|
|
|
ALbuffer *buffer = head->buffers[i];
|
|
|
|
if(!buffer)
|
|
|
|
*(buffers++) = 0;
|
|
|
|
else
|
|
|
|
{
|
|
|
|
*(buffers++) = buffer->id;
|
|
|
|
DecrementRef(&buffer->ref);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if(i < head->num_buffers)
|
2007-11-13 18:02:18 -08:00
|
|
|
{
|
2018-02-25 09:51:07 -08:00
|
|
|
/* This head has some buffers left over, so move them to the front
|
2018-03-27 08:27:16 -07:00
|
|
|
* and update the sample and buffer count.
|
2018-02-25 09:51:07 -08:00
|
|
|
*/
|
2018-03-27 08:27:16 -07:00
|
|
|
ALsizei max_length = 0;
|
2018-02-25 09:51:07 -08:00
|
|
|
ALsizei j = 0;
|
|
|
|
while(i < head->num_buffers)
|
2018-03-27 08:27:16 -07:00
|
|
|
{
|
|
|
|
ALbuffer *buffer = head->buffers[i++];
|
|
|
|
if(buffer) max_length = maxi(max_length, buffer->SampleLen);
|
|
|
|
head->buffers[j++] = buffer;
|
|
|
|
}
|
|
|
|
head->max_samples = max_length;
|
2018-02-25 09:51:07 -08:00
|
|
|
head->num_buffers = j;
|
|
|
|
break;
|
2007-11-13 18:02:18 -08:00
|
|
|
}
|
2010-03-24 02:23:00 -07:00
|
|
|
|
2018-02-25 09:51:07 -08:00
|
|
|
/* Otherwise, free this item and set the source queue head to the next
|
|
|
|
* one.
|
|
|
|
*/
|
|
|
|
al_free(head);
|
|
|
|
source->queue = next;
|
2007-11-13 18:02:18 -08:00
|
|
|
}
|
2010-03-24 02:23:00 -07:00
|
|
|
|
2013-10-07 09:24:50 -07:00
|
|
|
done:
|
2018-01-27 13:02:17 -08:00
|
|
|
UnlockSourceList(context);
|
2013-10-07 09:24:50 -07:00
|
|
|
ALCcontext_DecRef(context);
|
2007-11-13 18:02:18 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2017-02-21 16:31:59 -08:00
|
|
|
static void InitSourceParams(ALsource *Source, ALsizei num_sends)
|
2007-11-13 18:02:18 -08:00
|
|
|
{
|
2017-02-21 16:31:59 -08:00
|
|
|
ALsizei i;
|
2011-08-31 02:18:16 -07:00
|
|
|
|
2012-04-19 21:46:29 -07:00
|
|
|
Source->InnerAngle = 360.0f;
|
|
|
|
Source->OuterAngle = 360.0f;
|
|
|
|
Source->Pitch = 1.0f;
|
Provide asynchronous property updates for sources
This necessitates a change in how source updates are handled. Rather than just
being able to update sources when a dependent object state is changed (e.g. a
listener gain change), now all source updates must be proactively provided.
Consequently, apps that do not utilize any deferring (AL_SOFT_defer_updates or
alcSuspendContext/alcProcessContext) may utilize more CPU since it'll be
filling out more update containers for the mixer thread to use.
The upside is that there's less blocking between the app's calling thread and
the mixer thread, particularly for vectors and other multi-value properties
(filters and sends). Deferring behavior when used is also improved, since
updates that shouldn't be applied yet are simply not provided. And when they
are provided, the mixer doesn't have to ignore them, meaning the actual
deferring of a context doesn't have to synchrnously force an update -- the
process call will send any pending updates, which the mixer will apply even if
another deferral occurs before the mixer runs, because it'll still be there
waiting on the next mixer invocation.
There is one slight bug introduced by this commit. When a listener change is
made, or changes to multiple sources while updates are being deferred, it is
possible for the mixer to run while the sources are prepping their updates,
causing some of the source updates to be seen before the other. This will be
fixed in short order.
2016-05-14 23:43:40 -07:00
|
|
|
Source->Position[0] = 0.0f;
|
|
|
|
Source->Position[1] = 0.0f;
|
|
|
|
Source->Position[2] = 0.0f;
|
|
|
|
Source->Velocity[0] = 0.0f;
|
|
|
|
Source->Velocity[1] = 0.0f;
|
|
|
|
Source->Velocity[2] = 0.0f;
|
|
|
|
Source->Direction[0] = 0.0f;
|
|
|
|
Source->Direction[1] = 0.0f;
|
|
|
|
Source->Direction[2] = 0.0f;
|
2014-10-31 22:43:13 -07:00
|
|
|
Source->Orientation[0][0] = 0.0f;
|
|
|
|
Source->Orientation[0][1] = 0.0f;
|
|
|
|
Source->Orientation[0][2] = -1.0f;
|
|
|
|
Source->Orientation[1][0] = 0.0f;
|
|
|
|
Source->Orientation[1][1] = 1.0f;
|
|
|
|
Source->Orientation[1][2] = 0.0f;
|
2012-04-19 21:46:29 -07:00
|
|
|
Source->RefDistance = 1.0f;
|
|
|
|
Source->MaxDistance = FLT_MAX;
|
2017-05-05 03:19:50 -07:00
|
|
|
Source->RolloffFactor = 1.0f;
|
2012-04-19 21:46:29 -07:00
|
|
|
Source->Gain = 1.0f;
|
|
|
|
Source->MinGain = 0.0f;
|
|
|
|
Source->MaxGain = 1.0f;
|
|
|
|
Source->OuterGain = 0.0f;
|
2010-03-26 00:41:27 -07:00
|
|
|
Source->OuterGainHF = 1.0f;
|
|
|
|
|
|
|
|
Source->DryGainHFAuto = AL_TRUE;
|
|
|
|
Source->WetGainAuto = AL_TRUE;
|
|
|
|
Source->WetGainHFAuto = AL_TRUE;
|
|
|
|
Source->AirAbsorptionFactor = 0.0f;
|
|
|
|
Source->RoomRolloffFactor = 0.0f;
|
|
|
|
Source->DopplerFactor = 1.0f;
|
2017-04-18 00:58:33 -07:00
|
|
|
Source->HeadRelative = AL_FALSE;
|
|
|
|
Source->Looping = AL_FALSE;
|
2018-11-18 03:39:32 -08:00
|
|
|
Source->mDistanceModel = DistanceModel::Default;
|
2017-04-21 00:06:40 -07:00
|
|
|
Source->Resampler = ResamplerDefault;
|
2012-02-09 23:35:17 -08:00
|
|
|
Source->DirectChannels = AL_FALSE;
|
2017-05-04 12:17:50 -07:00
|
|
|
Source->Spatialize = SpatializeAuto;
|
2010-03-26 00:41:27 -07:00
|
|
|
|
2016-03-25 14:40:44 -07:00
|
|
|
Source->StereoPan[0] = DEG2RAD( 30.0f);
|
|
|
|
Source->StereoPan[1] = DEG2RAD(-30.0f);
|
|
|
|
|
2014-07-08 09:13:35 -07:00
|
|
|
Source->Radius = 0.0f;
|
|
|
|
|
2014-05-11 01:36:18 -07:00
|
|
|
Source->Direct.Gain = 1.0f;
|
|
|
|
Source->Direct.GainHF = 1.0f;
|
2014-05-11 10:09:52 -07:00
|
|
|
Source->Direct.HFReference = LOWPASSFREQREF;
|
2014-05-17 07:54:25 -07:00
|
|
|
Source->Direct.GainLF = 1.0f;
|
|
|
|
Source->Direct.LFReference = HIGHPASSFREQREF;
|
2018-11-15 03:13:54 -08:00
|
|
|
Source->Send = static_cast<decltype(Source->Send)>(al_calloc(16,
|
|
|
|
num_sends*sizeof(Source->Send[0])));
|
2017-02-21 16:31:59 -08:00
|
|
|
for(i = 0;i < num_sends;i++)
|
2011-08-31 02:18:16 -07:00
|
|
|
{
|
2017-02-14 19:59:39 -08:00
|
|
|
Source->Send[i].Slot = NULL;
|
2012-04-27 00:45:42 -07:00
|
|
|
Source->Send[i].Gain = 1.0f;
|
|
|
|
Source->Send[i].GainHF = 1.0f;
|
2014-05-11 10:09:52 -07:00
|
|
|
Source->Send[i].HFReference = LOWPASSFREQREF;
|
2014-05-17 07:54:25 -07:00
|
|
|
Source->Send[i].GainLF = 1.0f;
|
|
|
|
Source->Send[i].LFReference = HIGHPASSFREQREF;
|
2011-08-31 02:18:16 -07:00
|
|
|
}
|
|
|
|
|
2016-07-07 19:48:21 -07:00
|
|
|
Source->Offset = 0.0;
|
|
|
|
Source->OffsetType = AL_NONE;
|
|
|
|
Source->SourceType = AL_UNDETERMINED;
|
2018-02-24 09:44:52 -08:00
|
|
|
Source->state = AL_INITIAL;
|
Provide asynchronous property updates for sources
This necessitates a change in how source updates are handled. Rather than just
being able to update sources when a dependent object state is changed (e.g. a
listener gain change), now all source updates must be proactively provided.
Consequently, apps that do not utilize any deferring (AL_SOFT_defer_updates or
alcSuspendContext/alcProcessContext) may utilize more CPU since it'll be
filling out more update containers for the mixer thread to use.
The upside is that there's less blocking between the app's calling thread and
the mixer thread, particularly for vectors and other multi-value properties
(filters and sends). Deferring behavior when used is also improved, since
updates that shouldn't be applied yet are simply not provided. And when they
are provided, the mixer doesn't have to ignore them, meaning the actual
deferring of a context doesn't have to synchrnously force an update -- the
process call will send any pending updates, which the mixer will apply even if
another deferral occurs before the mixer runs, because it'll still be there
waiting on the next mixer invocation.
There is one slight bug introduced by this commit. When a listener change is
made, or changes to multiple sources while updates are being deferred, it is
possible for the mixer to run while the sources are prepping their updates,
causing some of the source updates to be seen before the other. This will be
fixed in short order.
2016-05-14 23:43:40 -07:00
|
|
|
|
2017-04-18 00:58:33 -07:00
|
|
|
Source->queue = NULL;
|
2016-07-31 23:42:30 -07:00
|
|
|
|
2018-11-13 20:26:32 -08:00
|
|
|
ATOMIC_INIT(&Source->PropsClean, AL_TRUE);
|
2018-02-01 23:56:35 -08:00
|
|
|
|
|
|
|
Source->VoiceIdx = -1;
|
Provide asynchronous property updates for sources
This necessitates a change in how source updates are handled. Rather than just
being able to update sources when a dependent object state is changed (e.g. a
listener gain change), now all source updates must be proactively provided.
Consequently, apps that do not utilize any deferring (AL_SOFT_defer_updates or
alcSuspendContext/alcProcessContext) may utilize more CPU since it'll be
filling out more update containers for the mixer thread to use.
The upside is that there's less blocking between the app's calling thread and
the mixer thread, particularly for vectors and other multi-value properties
(filters and sends). Deferring behavior when used is also improved, since
updates that shouldn't be applied yet are simply not provided. And when they
are provided, the mixer doesn't have to ignore them, meaning the actual
deferring of a context doesn't have to synchrnously force an update -- the
process call will send any pending updates, which the mixer will apply even if
another deferral occurs before the mixer runs, because it'll still be there
waiting on the next mixer invocation.
There is one slight bug introduced by this commit. When a listener change is
made, or changes to multiple sources while updates are being deferred, it is
possible for the mixer to run while the sources are prepping their updates,
causing some of the source updates to be seen before the other. This will be
fixed in short order.
2016-05-14 23:43:40 -07:00
|
|
|
}
|
|
|
|
|
2017-02-21 16:31:59 -08:00
|
|
|
static void DeinitSource(ALsource *source, ALsizei num_sends)
|
Provide asynchronous property updates for sources
This necessitates a change in how source updates are handled. Rather than just
being able to update sources when a dependent object state is changed (e.g. a
listener gain change), now all source updates must be proactively provided.
Consequently, apps that do not utilize any deferring (AL_SOFT_defer_updates or
alcSuspendContext/alcProcessContext) may utilize more CPU since it'll be
filling out more update containers for the mixer thread to use.
The upside is that there's less blocking between the app's calling thread and
the mixer thread, particularly for vectors and other multi-value properties
(filters and sends). Deferring behavior when used is also improved, since
updates that shouldn't be applied yet are simply not provided. And when they
are provided, the mixer doesn't have to ignore them, meaning the actual
deferring of a context doesn't have to synchrnously force an update -- the
process call will send any pending updates, which the mixer will apply even if
another deferral occurs before the mixer runs, because it'll still be there
waiting on the next mixer invocation.
There is one slight bug introduced by this commit. When a listener change is
made, or changes to multiple sources while updates are being deferred, it is
possible for the mixer to run while the sources are prepping their updates,
causing some of the source updates to be seen before the other. This will be
fixed in short order.
2016-05-14 23:43:40 -07:00
|
|
|
{
|
|
|
|
ALbufferlistitem *BufferList;
|
2017-02-21 16:31:59 -08:00
|
|
|
ALsizei i;
|
Provide asynchronous property updates for sources
This necessitates a change in how source updates are handled. Rather than just
being able to update sources when a dependent object state is changed (e.g. a
listener gain change), now all source updates must be proactively provided.
Consequently, apps that do not utilize any deferring (AL_SOFT_defer_updates or
alcSuspendContext/alcProcessContext) may utilize more CPU since it'll be
filling out more update containers for the mixer thread to use.
The upside is that there's less blocking between the app's calling thread and
the mixer thread, particularly for vectors and other multi-value properties
(filters and sends). Deferring behavior when used is also improved, since
updates that shouldn't be applied yet are simply not provided. And when they
are provided, the mixer doesn't have to ignore them, meaning the actual
deferring of a context doesn't have to synchrnously force an update -- the
process call will send any pending updates, which the mixer will apply even if
another deferral occurs before the mixer runs, because it'll still be there
waiting on the next mixer invocation.
There is one slight bug introduced by this commit. When a listener change is
made, or changes to multiple sources while updates are being deferred, it is
possible for the mixer to run while the sources are prepping their updates,
causing some of the source updates to be seen before the other. This will be
fixed in short order.
2016-05-14 23:43:40 -07:00
|
|
|
|
2017-04-18 00:58:33 -07:00
|
|
|
BufferList = source->queue;
|
Provide asynchronous property updates for sources
This necessitates a change in how source updates are handled. Rather than just
being able to update sources when a dependent object state is changed (e.g. a
listener gain change), now all source updates must be proactively provided.
Consequently, apps that do not utilize any deferring (AL_SOFT_defer_updates or
alcSuspendContext/alcProcessContext) may utilize more CPU since it'll be
filling out more update containers for the mixer thread to use.
The upside is that there's less blocking between the app's calling thread and
the mixer thread, particularly for vectors and other multi-value properties
(filters and sends). Deferring behavior when used is also improved, since
updates that shouldn't be applied yet are simply not provided. And when they
are provided, the mixer doesn't have to ignore them, meaning the actual
deferring of a context doesn't have to synchrnously force an update -- the
process call will send any pending updates, which the mixer will apply even if
another deferral occurs before the mixer runs, because it'll still be there
waiting on the next mixer invocation.
There is one slight bug introduced by this commit. When a listener change is
made, or changes to multiple sources while updates are being deferred, it is
possible for the mixer to run while the sources are prepping their updates,
causing some of the source updates to be seen before the other. This will be
fixed in short order.
2016-05-14 23:43:40 -07:00
|
|
|
while(BufferList != NULL)
|
|
|
|
{
|
2017-04-19 19:54:17 -07:00
|
|
|
ALbufferlistitem *next = ATOMIC_LOAD(&BufferList->next, almemory_order_relaxed);
|
2017-12-15 22:59:51 -08:00
|
|
|
for(i = 0;i < BufferList->num_buffers;i++)
|
|
|
|
{
|
|
|
|
if(BufferList->buffers[i] != NULL)
|
|
|
|
DecrementRef(&BufferList->buffers[i]->ref);
|
|
|
|
}
|
2017-02-27 20:43:16 -08:00
|
|
|
al_free(BufferList);
|
Provide asynchronous property updates for sources
This necessitates a change in how source updates are handled. Rather than just
being able to update sources when a dependent object state is changed (e.g. a
listener gain change), now all source updates must be proactively provided.
Consequently, apps that do not utilize any deferring (AL_SOFT_defer_updates or
alcSuspendContext/alcProcessContext) may utilize more CPU since it'll be
filling out more update containers for the mixer thread to use.
The upside is that there's less blocking between the app's calling thread and
the mixer thread, particularly for vectors and other multi-value properties
(filters and sends). Deferring behavior when used is also improved, since
updates that shouldn't be applied yet are simply not provided. And when they
are provided, the mixer doesn't have to ignore them, meaning the actual
deferring of a context doesn't have to synchrnously force an update -- the
process call will send any pending updates, which the mixer will apply even if
another deferral occurs before the mixer runs, because it'll still be there
waiting on the next mixer invocation.
There is one slight bug introduced by this commit. When a listener change is
made, or changes to multiple sources while updates are being deferred, it is
possible for the mixer to run while the sources are prepping their updates,
causing some of the source updates to be seen before the other. This will be
fixed in short order.
2016-05-14 23:43:40 -07:00
|
|
|
BufferList = next;
|
|
|
|
}
|
2017-04-18 00:58:33 -07:00
|
|
|
source->queue = NULL;
|
Provide asynchronous property updates for sources
This necessitates a change in how source updates are handled. Rather than just
being able to update sources when a dependent object state is changed (e.g. a
listener gain change), now all source updates must be proactively provided.
Consequently, apps that do not utilize any deferring (AL_SOFT_defer_updates or
alcSuspendContext/alcProcessContext) may utilize more CPU since it'll be
filling out more update containers for the mixer thread to use.
The upside is that there's less blocking between the app's calling thread and
the mixer thread, particularly for vectors and other multi-value properties
(filters and sends). Deferring behavior when used is also improved, since
updates that shouldn't be applied yet are simply not provided. And when they
are provided, the mixer doesn't have to ignore them, meaning the actual
deferring of a context doesn't have to synchrnously force an update -- the
process call will send any pending updates, which the mixer will apply even if
another deferral occurs before the mixer runs, because it'll still be there
waiting on the next mixer invocation.
There is one slight bug introduced by this commit. When a listener change is
made, or changes to multiple sources while updates are being deferred, it is
possible for the mixer to run while the sources are prepping their updates,
causing some of the source updates to be seen before the other. This will be
fixed in short order.
2016-05-14 23:43:40 -07:00
|
|
|
|
2017-02-21 16:31:59 -08:00
|
|
|
if(source->Send)
|
Provide asynchronous property updates for sources
This necessitates a change in how source updates are handled. Rather than just
being able to update sources when a dependent object state is changed (e.g. a
listener gain change), now all source updates must be proactively provided.
Consequently, apps that do not utilize any deferring (AL_SOFT_defer_updates or
alcSuspendContext/alcProcessContext) may utilize more CPU since it'll be
filling out more update containers for the mixer thread to use.
The upside is that there's less blocking between the app's calling thread and
the mixer thread, particularly for vectors and other multi-value properties
(filters and sends). Deferring behavior when used is also improved, since
updates that shouldn't be applied yet are simply not provided. And when they
are provided, the mixer doesn't have to ignore them, meaning the actual
deferring of a context doesn't have to synchrnously force an update -- the
process call will send any pending updates, which the mixer will apply even if
another deferral occurs before the mixer runs, because it'll still be there
waiting on the next mixer invocation.
There is one slight bug introduced by this commit. When a listener change is
made, or changes to multiple sources while updates are being deferred, it is
possible for the mixer to run while the sources are prepping their updates,
causing some of the source updates to be seen before the other. This will be
fixed in short order.
2016-05-14 23:43:40 -07:00
|
|
|
{
|
2017-02-21 16:31:59 -08:00
|
|
|
for(i = 0;i < num_sends;i++)
|
|
|
|
{
|
|
|
|
if(source->Send[i].Slot)
|
|
|
|
DecrementRef(&source->Send[i].Slot->ref);
|
|
|
|
source->Send[i].Slot = NULL;
|
|
|
|
}
|
|
|
|
al_free(source->Send);
|
|
|
|
source->Send = NULL;
|
Provide asynchronous property updates for sources
This necessitates a change in how source updates are handled. Rather than just
being able to update sources when a dependent object state is changed (e.g. a
listener gain change), now all source updates must be proactively provided.
Consequently, apps that do not utilize any deferring (AL_SOFT_defer_updates or
alcSuspendContext/alcProcessContext) may utilize more CPU since it'll be
filling out more update containers for the mixer thread to use.
The upside is that there's less blocking between the app's calling thread and
the mixer thread, particularly for vectors and other multi-value properties
(filters and sends). Deferring behavior when used is also improved, since
updates that shouldn't be applied yet are simply not provided. And when they
are provided, the mixer doesn't have to ignore them, meaning the actual
deferring of a context doesn't have to synchrnously force an update -- the
process call will send any pending updates, which the mixer will apply even if
another deferral occurs before the mixer runs, because it'll still be there
waiting on the next mixer invocation.
There is one slight bug introduced by this commit. When a listener change is
made, or changes to multiple sources while updates are being deferred, it is
possible for the mixer to run while the sources are prepping their updates,
causing some of the source updates to be seen before the other. This will be
fixed in short order.
2016-05-14 23:43:40 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-09-27 11:13:18 -07:00
|
|
|
static void UpdateSourceProps(ALsource *source, ALvoice *voice, ALsizei num_sends, ALCcontext *context)
|
Provide asynchronous property updates for sources
This necessitates a change in how source updates are handled. Rather than just
being able to update sources when a dependent object state is changed (e.g. a
listener gain change), now all source updates must be proactively provided.
Consequently, apps that do not utilize any deferring (AL_SOFT_defer_updates or
alcSuspendContext/alcProcessContext) may utilize more CPU since it'll be
filling out more update containers for the mixer thread to use.
The upside is that there's less blocking between the app's calling thread and
the mixer thread, particularly for vectors and other multi-value properties
(filters and sends). Deferring behavior when used is also improved, since
updates that shouldn't be applied yet are simply not provided. And when they
are provided, the mixer doesn't have to ignore them, meaning the actual
deferring of a context doesn't have to synchrnously force an update -- the
process call will send any pending updates, which the mixer will apply even if
another deferral occurs before the mixer runs, because it'll still be there
waiting on the next mixer invocation.
There is one slight bug introduced by this commit. When a listener change is
made, or changes to multiple sources while updates are being deferred, it is
possible for the mixer to run while the sources are prepping their updates,
causing some of the source updates to be seen before the other. This will be
fixed in short order.
2016-05-14 23:43:40 -07:00
|
|
|
{
|
2017-04-17 21:16:01 -07:00
|
|
|
struct ALvoiceProps *props;
|
2017-02-21 16:31:59 -08:00
|
|
|
ALsizei i;
|
Provide asynchronous property updates for sources
This necessitates a change in how source updates are handled. Rather than just
being able to update sources when a dependent object state is changed (e.g. a
listener gain change), now all source updates must be proactively provided.
Consequently, apps that do not utilize any deferring (AL_SOFT_defer_updates or
alcSuspendContext/alcProcessContext) may utilize more CPU since it'll be
filling out more update containers for the mixer thread to use.
The upside is that there's less blocking between the app's calling thread and
the mixer thread, particularly for vectors and other multi-value properties
(filters and sends). Deferring behavior when used is also improved, since
updates that shouldn't be applied yet are simply not provided. And when they
are provided, the mixer doesn't have to ignore them, meaning the actual
deferring of a context doesn't have to synchrnously force an update -- the
process call will send any pending updates, which the mixer will apply even if
another deferral occurs before the mixer runs, because it'll still be there
waiting on the next mixer invocation.
There is one slight bug introduced by this commit. When a listener change is
made, or changes to multiple sources while updates are being deferred, it is
possible for the mixer to run while the sources are prepping their updates,
causing some of the source updates to be seen before the other. This will be
fixed in short order.
2016-05-14 23:43:40 -07:00
|
|
|
|
|
|
|
/* Get an unused property container, or allocate a new one as needed. */
|
2017-09-27 11:13:18 -07:00
|
|
|
props = ATOMIC_LOAD(&context->FreeVoiceProps, almemory_order_acquire);
|
Provide asynchronous property updates for sources
This necessitates a change in how source updates are handled. Rather than just
being able to update sources when a dependent object state is changed (e.g. a
listener gain change), now all source updates must be proactively provided.
Consequently, apps that do not utilize any deferring (AL_SOFT_defer_updates or
alcSuspendContext/alcProcessContext) may utilize more CPU since it'll be
filling out more update containers for the mixer thread to use.
The upside is that there's less blocking between the app's calling thread and
the mixer thread, particularly for vectors and other multi-value properties
(filters and sends). Deferring behavior when used is also improved, since
updates that shouldn't be applied yet are simply not provided. And when they
are provided, the mixer doesn't have to ignore them, meaning the actual
deferring of a context doesn't have to synchrnously force an update -- the
process call will send any pending updates, which the mixer will apply even if
another deferral occurs before the mixer runs, because it'll still be there
waiting on the next mixer invocation.
There is one slight bug introduced by this commit. When a listener change is
made, or changes to multiple sources while updates are being deferred, it is
possible for the mixer to run while the sources are prepping their updates,
causing some of the source updates to be seen before the other. This will be
fixed in short order.
2016-05-14 23:43:40 -07:00
|
|
|
if(!props)
|
2018-11-15 03:13:54 -08:00
|
|
|
props = static_cast<ALvoiceProps*>(al_calloc(16,
|
|
|
|
FAM_SIZE(struct ALvoiceProps, Send, num_sends)));
|
Provide asynchronous property updates for sources
This necessitates a change in how source updates are handled. Rather than just
being able to update sources when a dependent object state is changed (e.g. a
listener gain change), now all source updates must be proactively provided.
Consequently, apps that do not utilize any deferring (AL_SOFT_defer_updates or
alcSuspendContext/alcProcessContext) may utilize more CPU since it'll be
filling out more update containers for the mixer thread to use.
The upside is that there's less blocking between the app's calling thread and
the mixer thread, particularly for vectors and other multi-value properties
(filters and sends). Deferring behavior when used is also improved, since
updates that shouldn't be applied yet are simply not provided. And when they
are provided, the mixer doesn't have to ignore them, meaning the actual
deferring of a context doesn't have to synchrnously force an update -- the
process call will send any pending updates, which the mixer will apply even if
another deferral occurs before the mixer runs, because it'll still be there
waiting on the next mixer invocation.
There is one slight bug introduced by this commit. When a listener change is
made, or changes to multiple sources while updates are being deferred, it is
possible for the mixer to run while the sources are prepping their updates,
causing some of the source updates to be seen before the other. This will be
fixed in short order.
2016-05-14 23:43:40 -07:00
|
|
|
else
|
|
|
|
{
|
2017-04-17 21:16:01 -07:00
|
|
|
struct ALvoiceProps *next;
|
Provide asynchronous property updates for sources
This necessitates a change in how source updates are handled. Rather than just
being able to update sources when a dependent object state is changed (e.g. a
listener gain change), now all source updates must be proactively provided.
Consequently, apps that do not utilize any deferring (AL_SOFT_defer_updates or
alcSuspendContext/alcProcessContext) may utilize more CPU since it'll be
filling out more update containers for the mixer thread to use.
The upside is that there's less blocking between the app's calling thread and
the mixer thread, particularly for vectors and other multi-value properties
(filters and sends). Deferring behavior when used is also improved, since
updates that shouldn't be applied yet are simply not provided. And when they
are provided, the mixer doesn't have to ignore them, meaning the actual
deferring of a context doesn't have to synchrnously force an update -- the
process call will send any pending updates, which the mixer will apply even if
another deferral occurs before the mixer runs, because it'll still be there
waiting on the next mixer invocation.
There is one slight bug introduced by this commit. When a listener change is
made, or changes to multiple sources while updates are being deferred, it is
possible for the mixer to run while the sources are prepping their updates,
causing some of the source updates to be seen before the other. This will be
fixed in short order.
2016-05-14 23:43:40 -07:00
|
|
|
do {
|
|
|
|
next = ATOMIC_LOAD(&props->next, almemory_order_relaxed);
|
2018-11-18 03:59:39 -08:00
|
|
|
} while(ATOMIC_COMPARE_EXCHANGE_WEAK(&context->FreeVoiceProps, &props, next,
|
2017-04-14 17:47:55 -07:00
|
|
|
almemory_order_acq_rel, almemory_order_acquire) == 0);
|
Provide asynchronous property updates for sources
This necessitates a change in how source updates are handled. Rather than just
being able to update sources when a dependent object state is changed (e.g. a
listener gain change), now all source updates must be proactively provided.
Consequently, apps that do not utilize any deferring (AL_SOFT_defer_updates or
alcSuspendContext/alcProcessContext) may utilize more CPU since it'll be
filling out more update containers for the mixer thread to use.
The upside is that there's less blocking between the app's calling thread and
the mixer thread, particularly for vectors and other multi-value properties
(filters and sends). Deferring behavior when used is also improved, since
updates that shouldn't be applied yet are simply not provided. And when they
are provided, the mixer doesn't have to ignore them, meaning the actual
deferring of a context doesn't have to synchrnously force an update -- the
process call will send any pending updates, which the mixer will apply even if
another deferral occurs before the mixer runs, because it'll still be there
waiting on the next mixer invocation.
There is one slight bug introduced by this commit. When a listener change is
made, or changes to multiple sources while updates are being deferred, it is
possible for the mixer to run while the sources are prepping their updates,
causing some of the source updates to be seen before the other. This will be
fixed in short order.
2016-05-14 23:43:40 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Copy in current property values. */
|
2017-03-08 03:38:28 -08:00
|
|
|
props->Pitch = source->Pitch;
|
|
|
|
props->Gain = source->Gain;
|
|
|
|
props->OuterGain = source->OuterGain;
|
|
|
|
props->MinGain = source->MinGain;
|
|
|
|
props->MaxGain = source->MaxGain;
|
|
|
|
props->InnerAngle = source->InnerAngle;
|
|
|
|
props->OuterAngle = source->OuterAngle;
|
|
|
|
props->RefDistance = source->RefDistance;
|
|
|
|
props->MaxDistance = source->MaxDistance;
|
2017-05-05 03:19:50 -07:00
|
|
|
props->RolloffFactor = source->RolloffFactor;
|
Provide asynchronous property updates for sources
This necessitates a change in how source updates are handled. Rather than just
being able to update sources when a dependent object state is changed (e.g. a
listener gain change), now all source updates must be proactively provided.
Consequently, apps that do not utilize any deferring (AL_SOFT_defer_updates or
alcSuspendContext/alcProcessContext) may utilize more CPU since it'll be
filling out more update containers for the mixer thread to use.
The upside is that there's less blocking between the app's calling thread and
the mixer thread, particularly for vectors and other multi-value properties
(filters and sends). Deferring behavior when used is also improved, since
updates that shouldn't be applied yet are simply not provided. And when they
are provided, the mixer doesn't have to ignore them, meaning the actual
deferring of a context doesn't have to synchrnously force an update -- the
process call will send any pending updates, which the mixer will apply even if
another deferral occurs before the mixer runs, because it'll still be there
waiting on the next mixer invocation.
There is one slight bug introduced by this commit. When a listener change is
made, or changes to multiple sources while updates are being deferred, it is
possible for the mixer to run while the sources are prepping their updates,
causing some of the source updates to be seen before the other. This will be
fixed in short order.
2016-05-14 23:43:40 -07:00
|
|
|
for(i = 0;i < 3;i++)
|
2017-03-08 03:38:28 -08:00
|
|
|
props->Position[i] = source->Position[i];
|
Provide asynchronous property updates for sources
This necessitates a change in how source updates are handled. Rather than just
being able to update sources when a dependent object state is changed (e.g. a
listener gain change), now all source updates must be proactively provided.
Consequently, apps that do not utilize any deferring (AL_SOFT_defer_updates or
alcSuspendContext/alcProcessContext) may utilize more CPU since it'll be
filling out more update containers for the mixer thread to use.
The upside is that there's less blocking between the app's calling thread and
the mixer thread, particularly for vectors and other multi-value properties
(filters and sends). Deferring behavior when used is also improved, since
updates that shouldn't be applied yet are simply not provided. And when they
are provided, the mixer doesn't have to ignore them, meaning the actual
deferring of a context doesn't have to synchrnously force an update -- the
process call will send any pending updates, which the mixer will apply even if
another deferral occurs before the mixer runs, because it'll still be there
waiting on the next mixer invocation.
There is one slight bug introduced by this commit. When a listener change is
made, or changes to multiple sources while updates are being deferred, it is
possible for the mixer to run while the sources are prepping their updates,
causing some of the source updates to be seen before the other. This will be
fixed in short order.
2016-05-14 23:43:40 -07:00
|
|
|
for(i = 0;i < 3;i++)
|
2017-03-08 03:38:28 -08:00
|
|
|
props->Velocity[i] = source->Velocity[i];
|
Provide asynchronous property updates for sources
This necessitates a change in how source updates are handled. Rather than just
being able to update sources when a dependent object state is changed (e.g. a
listener gain change), now all source updates must be proactively provided.
Consequently, apps that do not utilize any deferring (AL_SOFT_defer_updates or
alcSuspendContext/alcProcessContext) may utilize more CPU since it'll be
filling out more update containers for the mixer thread to use.
The upside is that there's less blocking between the app's calling thread and
the mixer thread, particularly for vectors and other multi-value properties
(filters and sends). Deferring behavior when used is also improved, since
updates that shouldn't be applied yet are simply not provided. And when they
are provided, the mixer doesn't have to ignore them, meaning the actual
deferring of a context doesn't have to synchrnously force an update -- the
process call will send any pending updates, which the mixer will apply even if
another deferral occurs before the mixer runs, because it'll still be there
waiting on the next mixer invocation.
There is one slight bug introduced by this commit. When a listener change is
made, or changes to multiple sources while updates are being deferred, it is
possible for the mixer to run while the sources are prepping their updates,
causing some of the source updates to be seen before the other. This will be
fixed in short order.
2016-05-14 23:43:40 -07:00
|
|
|
for(i = 0;i < 3;i++)
|
2017-03-08 03:38:28 -08:00
|
|
|
props->Direction[i] = source->Direction[i];
|
Provide asynchronous property updates for sources
This necessitates a change in how source updates are handled. Rather than just
being able to update sources when a dependent object state is changed (e.g. a
listener gain change), now all source updates must be proactively provided.
Consequently, apps that do not utilize any deferring (AL_SOFT_defer_updates or
alcSuspendContext/alcProcessContext) may utilize more CPU since it'll be
filling out more update containers for the mixer thread to use.
The upside is that there's less blocking between the app's calling thread and
the mixer thread, particularly for vectors and other multi-value properties
(filters and sends). Deferring behavior when used is also improved, since
updates that shouldn't be applied yet are simply not provided. And when they
are provided, the mixer doesn't have to ignore them, meaning the actual
deferring of a context doesn't have to synchrnously force an update -- the
process call will send any pending updates, which the mixer will apply even if
another deferral occurs before the mixer runs, because it'll still be there
waiting on the next mixer invocation.
There is one slight bug introduced by this commit. When a listener change is
made, or changes to multiple sources while updates are being deferred, it is
possible for the mixer to run while the sources are prepping their updates,
causing some of the source updates to be seen before the other. This will be
fixed in short order.
2016-05-14 23:43:40 -07:00
|
|
|
for(i = 0;i < 2;i++)
|
|
|
|
{
|
2017-02-21 16:31:59 -08:00
|
|
|
ALsizei j;
|
Provide asynchronous property updates for sources
This necessitates a change in how source updates are handled. Rather than just
being able to update sources when a dependent object state is changed (e.g. a
listener gain change), now all source updates must be proactively provided.
Consequently, apps that do not utilize any deferring (AL_SOFT_defer_updates or
alcSuspendContext/alcProcessContext) may utilize more CPU since it'll be
filling out more update containers for the mixer thread to use.
The upside is that there's less blocking between the app's calling thread and
the mixer thread, particularly for vectors and other multi-value properties
(filters and sends). Deferring behavior when used is also improved, since
updates that shouldn't be applied yet are simply not provided. And when they
are provided, the mixer doesn't have to ignore them, meaning the actual
deferring of a context doesn't have to synchrnously force an update -- the
process call will send any pending updates, which the mixer will apply even if
another deferral occurs before the mixer runs, because it'll still be there
waiting on the next mixer invocation.
There is one slight bug introduced by this commit. When a listener change is
made, or changes to multiple sources while updates are being deferred, it is
possible for the mixer to run while the sources are prepping their updates,
causing some of the source updates to be seen before the other. This will be
fixed in short order.
2016-05-14 23:43:40 -07:00
|
|
|
for(j = 0;j < 3;j++)
|
2017-03-08 03:38:28 -08:00
|
|
|
props->Orientation[i][j] = source->Orientation[i][j];
|
Provide asynchronous property updates for sources
This necessitates a change in how source updates are handled. Rather than just
being able to update sources when a dependent object state is changed (e.g. a
listener gain change), now all source updates must be proactively provided.
Consequently, apps that do not utilize any deferring (AL_SOFT_defer_updates or
alcSuspendContext/alcProcessContext) may utilize more CPU since it'll be
filling out more update containers for the mixer thread to use.
The upside is that there's less blocking between the app's calling thread and
the mixer thread, particularly for vectors and other multi-value properties
(filters and sends). Deferring behavior when used is also improved, since
updates that shouldn't be applied yet are simply not provided. And when they
are provided, the mixer doesn't have to ignore them, meaning the actual
deferring of a context doesn't have to synchrnously force an update -- the
process call will send any pending updates, which the mixer will apply even if
another deferral occurs before the mixer runs, because it'll still be there
waiting on the next mixer invocation.
There is one slight bug introduced by this commit. When a listener change is
made, or changes to multiple sources while updates are being deferred, it is
possible for the mixer to run while the sources are prepping their updates,
causing some of the source updates to be seen before the other. This will be
fixed in short order.
2016-05-14 23:43:40 -07:00
|
|
|
}
|
2017-03-08 03:38:28 -08:00
|
|
|
props->HeadRelative = source->HeadRelative;
|
2018-11-18 03:39:32 -08:00
|
|
|
props->mDistanceModel = source->mDistanceModel;
|
2017-04-21 00:06:40 -07:00
|
|
|
props->Resampler = source->Resampler;
|
2017-03-08 03:38:28 -08:00
|
|
|
props->DirectChannels = source->DirectChannels;
|
2017-05-04 12:17:50 -07:00
|
|
|
props->SpatializeMode = source->Spatialize;
|
Provide asynchronous property updates for sources
This necessitates a change in how source updates are handled. Rather than just
being able to update sources when a dependent object state is changed (e.g. a
listener gain change), now all source updates must be proactively provided.
Consequently, apps that do not utilize any deferring (AL_SOFT_defer_updates or
alcSuspendContext/alcProcessContext) may utilize more CPU since it'll be
filling out more update containers for the mixer thread to use.
The upside is that there's less blocking between the app's calling thread and
the mixer thread, particularly for vectors and other multi-value properties
(filters and sends). Deferring behavior when used is also improved, since
updates that shouldn't be applied yet are simply not provided. And when they
are provided, the mixer doesn't have to ignore them, meaning the actual
deferring of a context doesn't have to synchrnously force an update -- the
process call will send any pending updates, which the mixer will apply even if
another deferral occurs before the mixer runs, because it'll still be there
waiting on the next mixer invocation.
There is one slight bug introduced by this commit. When a listener change is
made, or changes to multiple sources while updates are being deferred, it is
possible for the mixer to run while the sources are prepping their updates,
causing some of the source updates to be seen before the other. This will be
fixed in short order.
2016-05-14 23:43:40 -07:00
|
|
|
|
2017-03-08 03:38:28 -08:00
|
|
|
props->DryGainHFAuto = source->DryGainHFAuto;
|
|
|
|
props->WetGainAuto = source->WetGainAuto;
|
|
|
|
props->WetGainHFAuto = source->WetGainHFAuto;
|
|
|
|
props->OuterGainHF = source->OuterGainHF;
|
Provide asynchronous property updates for sources
This necessitates a change in how source updates are handled. Rather than just
being able to update sources when a dependent object state is changed (e.g. a
listener gain change), now all source updates must be proactively provided.
Consequently, apps that do not utilize any deferring (AL_SOFT_defer_updates or
alcSuspendContext/alcProcessContext) may utilize more CPU since it'll be
filling out more update containers for the mixer thread to use.
The upside is that there's less blocking between the app's calling thread and
the mixer thread, particularly for vectors and other multi-value properties
(filters and sends). Deferring behavior when used is also improved, since
updates that shouldn't be applied yet are simply not provided. And when they
are provided, the mixer doesn't have to ignore them, meaning the actual
deferring of a context doesn't have to synchrnously force an update -- the
process call will send any pending updates, which the mixer will apply even if
another deferral occurs before the mixer runs, because it'll still be there
waiting on the next mixer invocation.
There is one slight bug introduced by this commit. When a listener change is
made, or changes to multiple sources while updates are being deferred, it is
possible for the mixer to run while the sources are prepping their updates,
causing some of the source updates to be seen before the other. This will be
fixed in short order.
2016-05-14 23:43:40 -07:00
|
|
|
|
2017-03-08 03:38:28 -08:00
|
|
|
props->AirAbsorptionFactor = source->AirAbsorptionFactor;
|
|
|
|
props->RoomRolloffFactor = source->RoomRolloffFactor;
|
|
|
|
props->DopplerFactor = source->DopplerFactor;
|
Provide asynchronous property updates for sources
This necessitates a change in how source updates are handled. Rather than just
being able to update sources when a dependent object state is changed (e.g. a
listener gain change), now all source updates must be proactively provided.
Consequently, apps that do not utilize any deferring (AL_SOFT_defer_updates or
alcSuspendContext/alcProcessContext) may utilize more CPU since it'll be
filling out more update containers for the mixer thread to use.
The upside is that there's less blocking between the app's calling thread and
the mixer thread, particularly for vectors and other multi-value properties
(filters and sends). Deferring behavior when used is also improved, since
updates that shouldn't be applied yet are simply not provided. And when they
are provided, the mixer doesn't have to ignore them, meaning the actual
deferring of a context doesn't have to synchrnously force an update -- the
process call will send any pending updates, which the mixer will apply even if
another deferral occurs before the mixer runs, because it'll still be there
waiting on the next mixer invocation.
There is one slight bug introduced by this commit. When a listener change is
made, or changes to multiple sources while updates are being deferred, it is
possible for the mixer to run while the sources are prepping their updates,
causing some of the source updates to be seen before the other. This will be
fixed in short order.
2016-05-14 23:43:40 -07:00
|
|
|
|
2017-03-08 03:38:28 -08:00
|
|
|
props->StereoPan[0] = source->StereoPan[0];
|
|
|
|
props->StereoPan[1] = source->StereoPan[1];
|
Provide asynchronous property updates for sources
This necessitates a change in how source updates are handled. Rather than just
being able to update sources when a dependent object state is changed (e.g. a
listener gain change), now all source updates must be proactively provided.
Consequently, apps that do not utilize any deferring (AL_SOFT_defer_updates or
alcSuspendContext/alcProcessContext) may utilize more CPU since it'll be
filling out more update containers for the mixer thread to use.
The upside is that there's less blocking between the app's calling thread and
the mixer thread, particularly for vectors and other multi-value properties
(filters and sends). Deferring behavior when used is also improved, since
updates that shouldn't be applied yet are simply not provided. And when they
are provided, the mixer doesn't have to ignore them, meaning the actual
deferring of a context doesn't have to synchrnously force an update -- the
process call will send any pending updates, which the mixer will apply even if
another deferral occurs before the mixer runs, because it'll still be there
waiting on the next mixer invocation.
There is one slight bug introduced by this commit. When a listener change is
made, or changes to multiple sources while updates are being deferred, it is
possible for the mixer to run while the sources are prepping their updates,
causing some of the source updates to be seen before the other. This will be
fixed in short order.
2016-05-14 23:43:40 -07:00
|
|
|
|
2017-03-08 03:38:28 -08:00
|
|
|
props->Radius = source->Radius;
|
Provide asynchronous property updates for sources
This necessitates a change in how source updates are handled. Rather than just
being able to update sources when a dependent object state is changed (e.g. a
listener gain change), now all source updates must be proactively provided.
Consequently, apps that do not utilize any deferring (AL_SOFT_defer_updates or
alcSuspendContext/alcProcessContext) may utilize more CPU since it'll be
filling out more update containers for the mixer thread to use.
The upside is that there's less blocking between the app's calling thread and
the mixer thread, particularly for vectors and other multi-value properties
(filters and sends). Deferring behavior when used is also improved, since
updates that shouldn't be applied yet are simply not provided. And when they
are provided, the mixer doesn't have to ignore them, meaning the actual
deferring of a context doesn't have to synchrnously force an update -- the
process call will send any pending updates, which the mixer will apply even if
another deferral occurs before the mixer runs, because it'll still be there
waiting on the next mixer invocation.
There is one slight bug introduced by this commit. When a listener change is
made, or changes to multiple sources while updates are being deferred, it is
possible for the mixer to run while the sources are prepping their updates,
causing some of the source updates to be seen before the other. This will be
fixed in short order.
2016-05-14 23:43:40 -07:00
|
|
|
|
2017-03-08 03:38:28 -08:00
|
|
|
props->Direct.Gain = source->Direct.Gain;
|
|
|
|
props->Direct.GainHF = source->Direct.GainHF;
|
|
|
|
props->Direct.HFReference = source->Direct.HFReference;
|
|
|
|
props->Direct.GainLF = source->Direct.GainLF;
|
|
|
|
props->Direct.LFReference = source->Direct.LFReference;
|
Provide asynchronous property updates for sources
This necessitates a change in how source updates are handled. Rather than just
being able to update sources when a dependent object state is changed (e.g. a
listener gain change), now all source updates must be proactively provided.
Consequently, apps that do not utilize any deferring (AL_SOFT_defer_updates or
alcSuspendContext/alcProcessContext) may utilize more CPU since it'll be
filling out more update containers for the mixer thread to use.
The upside is that there's less blocking between the app's calling thread and
the mixer thread, particularly for vectors and other multi-value properties
(filters and sends). Deferring behavior when used is also improved, since
updates that shouldn't be applied yet are simply not provided. And when they
are provided, the mixer doesn't have to ignore them, meaning the actual
deferring of a context doesn't have to synchrnously force an update -- the
process call will send any pending updates, which the mixer will apply even if
another deferral occurs before the mixer runs, because it'll still be there
waiting on the next mixer invocation.
There is one slight bug introduced by this commit. When a listener change is
made, or changes to multiple sources while updates are being deferred, it is
possible for the mixer to run while the sources are prepping their updates,
causing some of the source updates to be seen before the other. This will be
fixed in short order.
2016-05-14 23:43:40 -07:00
|
|
|
|
|
|
|
for(i = 0;i < num_sends;i++)
|
|
|
|
{
|
2017-03-08 03:38:28 -08:00
|
|
|
props->Send[i].Slot = source->Send[i].Slot;
|
|
|
|
props->Send[i].Gain = source->Send[i].Gain;
|
|
|
|
props->Send[i].GainHF = source->Send[i].GainHF;
|
|
|
|
props->Send[i].HFReference = source->Send[i].HFReference;
|
|
|
|
props->Send[i].GainLF = source->Send[i].GainLF;
|
|
|
|
props->Send[i].LFReference = source->Send[i].LFReference;
|
Provide asynchronous property updates for sources
This necessitates a change in how source updates are handled. Rather than just
being able to update sources when a dependent object state is changed (e.g. a
listener gain change), now all source updates must be proactively provided.
Consequently, apps that do not utilize any deferring (AL_SOFT_defer_updates or
alcSuspendContext/alcProcessContext) may utilize more CPU since it'll be
filling out more update containers for the mixer thread to use.
The upside is that there's less blocking between the app's calling thread and
the mixer thread, particularly for vectors and other multi-value properties
(filters and sends). Deferring behavior when used is also improved, since
updates that shouldn't be applied yet are simply not provided. And when they
are provided, the mixer doesn't have to ignore them, meaning the actual
deferring of a context doesn't have to synchrnously force an update -- the
process call will send any pending updates, which the mixer will apply even if
another deferral occurs before the mixer runs, because it'll still be there
waiting on the next mixer invocation.
There is one slight bug introduced by this commit. When a listener change is
made, or changes to multiple sources while updates are being deferred, it is
possible for the mixer to run while the sources are prepping their updates,
causing some of the source updates to be seen before the other. This will be
fixed in short order.
2016-05-14 23:43:40 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Set the new container for updating internal parameters. */
|
2018-11-18 03:59:39 -08:00
|
|
|
props = ATOMIC_EXCHANGE(&voice->Update, props, almemory_order_acq_rel);
|
Provide asynchronous property updates for sources
This necessitates a change in how source updates are handled. Rather than just
being able to update sources when a dependent object state is changed (e.g. a
listener gain change), now all source updates must be proactively provided.
Consequently, apps that do not utilize any deferring (AL_SOFT_defer_updates or
alcSuspendContext/alcProcessContext) may utilize more CPU since it'll be
filling out more update containers for the mixer thread to use.
The upside is that there's less blocking between the app's calling thread and
the mixer thread, particularly for vectors and other multi-value properties
(filters and sends). Deferring behavior when used is also improved, since
updates that shouldn't be applied yet are simply not provided. And when they
are provided, the mixer doesn't have to ignore them, meaning the actual
deferring of a context doesn't have to synchrnously force an update -- the
process call will send any pending updates, which the mixer will apply even if
another deferral occurs before the mixer runs, because it'll still be there
waiting on the next mixer invocation.
There is one slight bug introduced by this commit. When a listener change is
made, or changes to multiple sources while updates are being deferred, it is
possible for the mixer to run while the sources are prepping their updates,
causing some of the source updates to be seen before the other. This will be
fixed in short order.
2016-05-14 23:43:40 -07:00
|
|
|
if(props)
|
|
|
|
{
|
|
|
|
/* If there was an unused update container, put it back in the
|
|
|
|
* freelist.
|
|
|
|
*/
|
2017-09-27 11:13:18 -07:00
|
|
|
ATOMIC_REPLACE_HEAD(struct ALvoiceProps*, &context->FreeVoiceProps, props);
|
Provide asynchronous property updates for sources
This necessitates a change in how source updates are handled. Rather than just
being able to update sources when a dependent object state is changed (e.g. a
listener gain change), now all source updates must be proactively provided.
Consequently, apps that do not utilize any deferring (AL_SOFT_defer_updates or
alcSuspendContext/alcProcessContext) may utilize more CPU since it'll be
filling out more update containers for the mixer thread to use.
The upside is that there's less blocking between the app's calling thread and
the mixer thread, particularly for vectors and other multi-value properties
(filters and sends). Deferring behavior when used is also improved, since
updates that shouldn't be applied yet are simply not provided. And when they
are provided, the mixer doesn't have to ignore them, meaning the actual
deferring of a context doesn't have to synchrnously force an update -- the
process call will send any pending updates, which the mixer will apply even if
another deferral occurs before the mixer runs, because it'll still be there
waiting on the next mixer invocation.
There is one slight bug introduced by this commit. When a listener change is
made, or changes to multiple sources while updates are being deferred, it is
possible for the mixer to run while the sources are prepping their updates,
causing some of the source updates to be seen before the other. This will be
fixed in short order.
2016-05-14 23:43:40 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void UpdateAllSourceProps(ALCcontext *context)
|
|
|
|
{
|
2017-02-21 16:31:59 -08:00
|
|
|
ALsizei num_sends = context->Device->NumAuxSends;
|
Provide asynchronous property updates for sources
This necessitates a change in how source updates are handled. Rather than just
being able to update sources when a dependent object state is changed (e.g. a
listener gain change), now all source updates must be proactively provided.
Consequently, apps that do not utilize any deferring (AL_SOFT_defer_updates or
alcSuspendContext/alcProcessContext) may utilize more CPU since it'll be
filling out more update containers for the mixer thread to use.
The upside is that there's less blocking between the app's calling thread and
the mixer thread, particularly for vectors and other multi-value properties
(filters and sends). Deferring behavior when used is also improved, since
updates that shouldn't be applied yet are simply not provided. And when they
are provided, the mixer doesn't have to ignore them, meaning the actual
deferring of a context doesn't have to synchrnously force an update -- the
process call will send any pending updates, which the mixer will apply even if
another deferral occurs before the mixer runs, because it'll still be there
waiting on the next mixer invocation.
There is one slight bug introduced by this commit. When a listener change is
made, or changes to multiple sources while updates are being deferred, it is
possible for the mixer to run while the sources are prepping their updates,
causing some of the source updates to be seen before the other. This will be
fixed in short order.
2016-05-14 23:43:40 -07:00
|
|
|
ALsizei pos;
|
2016-05-15 17:14:58 -07:00
|
|
|
|
Provide asynchronous property updates for sources
This necessitates a change in how source updates are handled. Rather than just
being able to update sources when a dependent object state is changed (e.g. a
listener gain change), now all source updates must be proactively provided.
Consequently, apps that do not utilize any deferring (AL_SOFT_defer_updates or
alcSuspendContext/alcProcessContext) may utilize more CPU since it'll be
filling out more update containers for the mixer thread to use.
The upside is that there's less blocking between the app's calling thread and
the mixer thread, particularly for vectors and other multi-value properties
(filters and sends). Deferring behavior when used is also improved, since
updates that shouldn't be applied yet are simply not provided. And when they
are provided, the mixer doesn't have to ignore them, meaning the actual
deferring of a context doesn't have to synchrnously force an update -- the
process call will send any pending updates, which the mixer will apply even if
another deferral occurs before the mixer runs, because it'll still be there
waiting on the next mixer invocation.
There is one slight bug introduced by this commit. When a listener change is
made, or changes to multiple sources while updates are being deferred, it is
possible for the mixer to run while the sources are prepping their updates,
causing some of the source updates to be seen before the other. This will be
fixed in short order.
2016-05-14 23:43:40 -07:00
|
|
|
for(pos = 0;pos < context->VoiceCount;pos++)
|
|
|
|
{
|
2017-02-21 11:17:47 -08:00
|
|
|
ALvoice *voice = context->Voices[pos];
|
2017-03-05 04:50:27 -08:00
|
|
|
ALsource *source = ATOMIC_LOAD(&voice->Source, almemory_order_acquire);
|
2018-11-13 20:26:32 -08:00
|
|
|
if(source && !ATOMIC_EXCHANGE(&source->PropsClean, AL_TRUE, almemory_order_acq_rel))
|
2017-09-27 11:13:18 -07:00
|
|
|
UpdateSourceProps(source, voice, num_sends, context);
|
Provide asynchronous property updates for sources
This necessitates a change in how source updates are handled. Rather than just
being able to update sources when a dependent object state is changed (e.g. a
listener gain change), now all source updates must be proactively provided.
Consequently, apps that do not utilize any deferring (AL_SOFT_defer_updates or
alcSuspendContext/alcProcessContext) may utilize more CPU since it'll be
filling out more update containers for the mixer thread to use.
The upside is that there's less blocking between the app's calling thread and
the mixer thread, particularly for vectors and other multi-value properties
(filters and sends). Deferring behavior when used is also improved, since
updates that shouldn't be applied yet are simply not provided. And when they
are provided, the mixer doesn't have to ignore them, meaning the actual
deferring of a context doesn't have to synchrnously force an update -- the
process call will send any pending updates, which the mixer will apply even if
another deferral occurs before the mixer runs, because it'll still be there
waiting on the next mixer invocation.
There is one slight bug introduced by this commit. When a listener change is
made, or changes to multiple sources while updates are being deferred, it is
possible for the mixer to run while the sources are prepping their updates,
causing some of the source updates to be seen before the other. This will be
fixed in short order.
2016-05-14 23:43:40 -07:00
|
|
|
}
|
2007-11-13 18:02:18 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2015-09-22 08:48:26 -07:00
|
|
|
/* GetSourceSampleOffset
|
2012-08-18 11:02:54 -07:00
|
|
|
*
|
|
|
|
* Gets the current read offset for the given Source, in 32.32 fixed-point
|
|
|
|
* samples. The offset is relative to the start of the queue (not the start of
|
|
|
|
* the current buffer).
|
|
|
|
*/
|
2017-02-27 15:35:15 -08:00
|
|
|
static ALint64 GetSourceSampleOffset(ALsource *Source, ALCcontext *context, ALuint64 *clocktime)
|
2012-08-18 11:02:54 -07:00
|
|
|
{
|
2017-02-27 15:35:15 -08:00
|
|
|
ALCdevice *device = context->Device;
|
2014-07-31 07:20:36 -07:00
|
|
|
const ALbufferlistitem *Current;
|
2012-08-18 11:02:54 -07:00
|
|
|
ALuint64 readPos;
|
2016-05-28 04:11:57 -07:00
|
|
|
ALuint refcount;
|
2017-02-27 15:35:15 -08:00
|
|
|
ALvoice *voice;
|
2012-08-18 11:02:54 -07:00
|
|
|
|
2016-05-28 04:11:57 -07:00
|
|
|
do {
|
2017-02-27 15:35:15 -08:00
|
|
|
Current = NULL;
|
2017-02-24 01:47:34 -08:00
|
|
|
readPos = 0;
|
2016-11-21 23:58:28 -08:00
|
|
|
while(((refcount=ATOMIC_LOAD(&device->MixCount, almemory_order_acquire))&1))
|
2016-05-28 04:11:57 -07:00
|
|
|
althrd_yield();
|
|
|
|
*clocktime = GetDeviceClockTime(device);
|
2016-07-07 19:48:21 -07:00
|
|
|
|
2017-02-27 15:35:15 -08:00
|
|
|
voice = GetSourceVoice(Source, context);
|
|
|
|
if(voice)
|
2017-02-24 01:47:34 -08:00
|
|
|
{
|
2017-02-27 15:35:15 -08:00
|
|
|
Current = ATOMIC_LOAD(&voice->current_buffer, almemory_order_relaxed);
|
2016-07-07 19:48:21 -07:00
|
|
|
|
2017-02-27 15:35:15 -08:00
|
|
|
readPos = (ALuint64)ATOMIC_LOAD(&voice->position, almemory_order_relaxed) << 32;
|
2017-04-08 14:29:08 -07:00
|
|
|
readPos |= (ALuint64)ATOMIC_LOAD(&voice->position_fraction, almemory_order_relaxed) <<
|
2017-02-24 01:47:34 -08:00
|
|
|
(32-FRACTIONBITS);
|
|
|
|
}
|
2016-11-21 23:58:28 -08:00
|
|
|
ATOMIC_THREAD_FENCE(almemory_order_acquire);
|
|
|
|
} while(refcount != ATOMIC_LOAD(&device->MixCount, almemory_order_relaxed));
|
2017-02-24 01:47:34 -08:00
|
|
|
|
2017-02-27 15:35:15 -08:00
|
|
|
if(voice)
|
2012-08-18 11:02:54 -07:00
|
|
|
{
|
2017-04-18 00:58:33 -07:00
|
|
|
const ALbufferlistitem *BufferList = Source->queue;
|
2017-02-27 15:35:15 -08:00
|
|
|
while(BufferList && BufferList != Current)
|
|
|
|
{
|
2018-03-27 08:27:16 -07:00
|
|
|
readPos += (ALuint64)BufferList->max_samples << 32;
|
2017-04-21 16:58:55 -07:00
|
|
|
BufferList = ATOMIC_LOAD(&CONST_CAST(ALbufferlistitem*,BufferList)->next,
|
|
|
|
almemory_order_relaxed);
|
2017-02-27 15:35:15 -08:00
|
|
|
}
|
|
|
|
readPos = minu64(readPos, U64(0x7fffffffffffffff));
|
2012-08-18 11:02:54 -07:00
|
|
|
}
|
|
|
|
|
2017-02-27 15:35:15 -08:00
|
|
|
return (ALint64)readPos;
|
2012-08-18 11:02:54 -07:00
|
|
|
}
|
|
|
|
|
2012-08-20 15:57:27 -07:00
|
|
|
/* GetSourceSecOffset
|
|
|
|
*
|
|
|
|
* Gets the current read offset for the given Source, in seconds. The offset is
|
|
|
|
* relative to the start of the queue (not the start of the current buffer).
|
|
|
|
*/
|
2017-02-27 15:35:15 -08:00
|
|
|
static ALdouble GetSourceSecOffset(ALsource *Source, ALCcontext *context, ALuint64 *clocktime)
|
2012-08-20 15:57:27 -07:00
|
|
|
{
|
2017-02-27 15:35:15 -08:00
|
|
|
ALCdevice *device = context->Device;
|
2014-07-31 07:20:36 -07:00
|
|
|
const ALbufferlistitem *Current;
|
2012-08-20 15:57:27 -07:00
|
|
|
ALuint64 readPos;
|
2016-05-28 04:11:57 -07:00
|
|
|
ALuint refcount;
|
2017-02-24 01:47:34 -08:00
|
|
|
ALdouble offset;
|
2017-02-27 15:35:15 -08:00
|
|
|
ALvoice *voice;
|
2012-08-20 15:57:27 -07:00
|
|
|
|
2016-05-28 04:11:57 -07:00
|
|
|
do {
|
2017-02-27 15:35:15 -08:00
|
|
|
Current = NULL;
|
2017-02-24 01:47:34 -08:00
|
|
|
readPos = 0;
|
2016-11-21 23:58:28 -08:00
|
|
|
while(((refcount=ATOMIC_LOAD(&device->MixCount, almemory_order_acquire))&1))
|
2016-05-28 04:11:57 -07:00
|
|
|
althrd_yield();
|
|
|
|
*clocktime = GetDeviceClockTime(device);
|
2016-07-07 19:48:21 -07:00
|
|
|
|
2017-02-27 15:35:15 -08:00
|
|
|
voice = GetSourceVoice(Source, context);
|
|
|
|
if(voice)
|
2017-02-24 01:47:34 -08:00
|
|
|
{
|
2017-02-27 15:35:15 -08:00
|
|
|
Current = ATOMIC_LOAD(&voice->current_buffer, almemory_order_relaxed);
|
2016-07-07 19:48:21 -07:00
|
|
|
|
2017-02-27 15:35:15 -08:00
|
|
|
readPos = (ALuint64)ATOMIC_LOAD(&voice->position, almemory_order_relaxed) <<
|
2017-02-24 01:47:34 -08:00
|
|
|
FRACTIONBITS;
|
2017-02-27 15:35:15 -08:00
|
|
|
readPos |= ATOMIC_LOAD(&voice->position_fraction, almemory_order_relaxed);
|
2017-02-24 01:47:34 -08:00
|
|
|
}
|
2016-11-21 23:58:28 -08:00
|
|
|
ATOMIC_THREAD_FENCE(almemory_order_acquire);
|
|
|
|
} while(refcount != ATOMIC_LOAD(&device->MixCount, almemory_order_relaxed));
|
2017-02-24 01:47:34 -08:00
|
|
|
|
2017-02-27 15:35:15 -08:00
|
|
|
offset = 0.0;
|
|
|
|
if(voice)
|
2012-08-20 15:57:27 -07:00
|
|
|
{
|
2017-04-18 00:58:33 -07:00
|
|
|
const ALbufferlistitem *BufferList = Source->queue;
|
|
|
|
const ALbuffer *BufferFmt = NULL;
|
2017-02-24 01:47:34 -08:00
|
|
|
while(BufferList && BufferList != Current)
|
2014-05-10 03:21:40 -07:00
|
|
|
{
|
2018-03-27 08:27:16 -07:00
|
|
|
ALsizei i = 0;
|
|
|
|
while(!BufferFmt && i < BufferList->num_buffers)
|
|
|
|
BufferFmt = BufferList->buffers[i++];
|
|
|
|
readPos += (ALuint64)BufferList->max_samples << FRACTIONBITS;
|
2017-04-21 16:58:55 -07:00
|
|
|
BufferList = ATOMIC_LOAD(&CONST_CAST(ALbufferlistitem*,BufferList)->next,
|
|
|
|
almemory_order_relaxed);
|
2014-05-10 03:21:40 -07:00
|
|
|
}
|
|
|
|
|
2017-04-18 00:58:33 -07:00
|
|
|
while(BufferList && !BufferFmt)
|
2017-02-24 01:47:34 -08:00
|
|
|
{
|
2018-03-27 08:27:16 -07:00
|
|
|
ALsizei i = 0;
|
|
|
|
while(!BufferFmt && i < BufferList->num_buffers)
|
|
|
|
BufferFmt = BufferList->buffers[i++];
|
2017-04-21 16:58:55 -07:00
|
|
|
BufferList = ATOMIC_LOAD(&CONST_CAST(ALbufferlistitem*,BufferList)->next,
|
|
|
|
almemory_order_relaxed);
|
2017-02-24 01:47:34 -08:00
|
|
|
}
|
2017-04-18 00:58:33 -07:00
|
|
|
assert(BufferFmt != NULL);
|
2017-02-24 01:47:34 -08:00
|
|
|
|
|
|
|
offset = (ALdouble)readPos / (ALdouble)FRACTIONONE /
|
2017-04-18 00:58:33 -07:00
|
|
|
(ALdouble)BufferFmt->Frequency;
|
2012-08-20 15:57:27 -07:00
|
|
|
}
|
|
|
|
|
2017-02-24 01:47:34 -08:00
|
|
|
return offset;
|
2012-08-20 15:57:27 -07:00
|
|
|
}
|
|
|
|
|
2016-04-25 02:22:54 -07:00
|
|
|
/* GetSourceOffset
|
2012-04-21 05:53:27 -07:00
|
|
|
*
|
2016-04-25 02:22:54 -07:00
|
|
|
* Gets the current read offset for the given Source, in the appropriate format
|
|
|
|
* (Bytes, Samples or Seconds). The offset is relative to the start of the
|
|
|
|
* queue (not the start of the current buffer).
|
2012-04-21 05:53:27 -07:00
|
|
|
*/
|
2017-02-27 15:35:15 -08:00
|
|
|
static ALdouble GetSourceOffset(ALsource *Source, ALenum name, ALCcontext *context)
|
2007-11-13 18:02:18 -08:00
|
|
|
{
|
2017-02-27 15:35:15 -08:00
|
|
|
ALCdevice *device = context->Device;
|
2014-07-31 07:20:36 -07:00
|
|
|
const ALbufferlistitem *Current;
|
2017-04-08 14:29:08 -07:00
|
|
|
ALuint readPos;
|
|
|
|
ALsizei readPosFrac;
|
2016-05-28 06:23:55 -07:00
|
|
|
ALuint refcount;
|
2017-02-24 01:47:34 -08:00
|
|
|
ALdouble offset;
|
2017-02-27 15:35:15 -08:00
|
|
|
ALvoice *voice;
|
2010-03-24 02:23:00 -07:00
|
|
|
|
2016-05-28 06:23:55 -07:00
|
|
|
do {
|
2017-03-05 04:50:27 -08:00
|
|
|
Current = NULL;
|
|
|
|
readPos = readPosFrac = 0;
|
2016-11-21 23:58:28 -08:00
|
|
|
while(((refcount=ATOMIC_LOAD(&device->MixCount, almemory_order_acquire))&1))
|
2016-05-28 06:23:55 -07:00
|
|
|
althrd_yield();
|
2017-02-27 15:35:15 -08:00
|
|
|
voice = GetSourceVoice(Source, context);
|
|
|
|
if(voice)
|
|
|
|
{
|
|
|
|
Current = ATOMIC_LOAD(&voice->current_buffer, almemory_order_relaxed);
|
2016-07-31 23:42:30 -07:00
|
|
|
|
2017-02-27 15:35:15 -08:00
|
|
|
readPos = ATOMIC_LOAD(&voice->position, almemory_order_relaxed);
|
|
|
|
readPosFrac = ATOMIC_LOAD(&voice->position_fraction, almemory_order_relaxed);
|
|
|
|
}
|
2016-11-21 23:58:28 -08:00
|
|
|
ATOMIC_THREAD_FENCE(almemory_order_acquire);
|
|
|
|
} while(refcount != ATOMIC_LOAD(&device->MixCount, almemory_order_relaxed));
|
2016-05-28 06:23:55 -07:00
|
|
|
|
2017-04-18 00:58:33 -07:00
|
|
|
offset = 0.0;
|
|
|
|
if(voice)
|
2017-02-24 01:47:34 -08:00
|
|
|
{
|
2017-04-18 00:58:33 -07:00
|
|
|
const ALbufferlistitem *BufferList = Source->queue;
|
|
|
|
const ALbuffer *BufferFmt = NULL;
|
|
|
|
ALboolean readFin = AL_FALSE;
|
|
|
|
ALuint totalBufferLen = 0;
|
2017-02-24 01:47:34 -08:00
|
|
|
|
2017-04-18 00:58:33 -07:00
|
|
|
while(BufferList != NULL)
|
2010-04-23 07:23:38 -07:00
|
|
|
{
|
2018-03-27 08:27:16 -07:00
|
|
|
ALsizei i = 0;
|
|
|
|
while(!BufferFmt && i < BufferList->num_buffers)
|
|
|
|
BufferFmt = BufferList->buffers[i++];
|
2017-12-15 22:59:51 -08:00
|
|
|
|
2018-03-27 08:27:16 -07:00
|
|
|
readFin |= (BufferList == Current);
|
|
|
|
totalBufferLen += BufferList->max_samples;
|
|
|
|
if(!readFin) readPos += BufferList->max_samples;
|
2017-12-15 22:59:51 -08:00
|
|
|
|
2017-04-21 16:58:55 -07:00
|
|
|
BufferList = ATOMIC_LOAD(&CONST_CAST(ALbufferlistitem*,BufferList)->next,
|
|
|
|
almemory_order_relaxed);
|
2010-04-23 07:23:38 -07:00
|
|
|
}
|
2017-04-18 00:58:33 -07:00
|
|
|
assert(BufferFmt != NULL);
|
2014-05-14 03:40:01 -07:00
|
|
|
|
2017-04-18 00:58:33 -07:00
|
|
|
if(Source->Looping)
|
|
|
|
readPos %= totalBufferLen;
|
|
|
|
else
|
|
|
|
{
|
|
|
|
/* Wrap back to 0 */
|
|
|
|
if(readPos >= totalBufferLen)
|
|
|
|
readPos = readPosFrac = 0;
|
|
|
|
}
|
2010-03-24 02:23:00 -07:00
|
|
|
|
2017-04-18 00:58:33 -07:00
|
|
|
offset = 0.0;
|
|
|
|
switch(name)
|
|
|
|
{
|
|
|
|
case AL_SEC_OFFSET:
|
|
|
|
offset = (readPos + (ALdouble)readPosFrac/FRACTIONONE) / BufferFmt->Frequency;
|
|
|
|
break;
|
2012-04-21 05:53:27 -07:00
|
|
|
|
2017-04-18 00:58:33 -07:00
|
|
|
case AL_SAMPLE_OFFSET:
|
|
|
|
offset = readPos + (ALdouble)readPosFrac/FRACTIONONE;
|
|
|
|
break;
|
2012-04-21 05:53:27 -07:00
|
|
|
|
2017-04-18 00:58:33 -07:00
|
|
|
case AL_BYTE_OFFSET:
|
|
|
|
if(BufferFmt->OriginalType == UserFmtIMA4)
|
|
|
|
{
|
|
|
|
ALsizei align = (BufferFmt->OriginalAlign-1)/2 + 4;
|
|
|
|
ALuint BlockSize = align * ChannelsFromFmt(BufferFmt->FmtChannels);
|
|
|
|
ALuint FrameBlockSize = BufferFmt->OriginalAlign;
|
2010-11-27 00:51:21 -08:00
|
|
|
|
2017-04-18 00:58:33 -07:00
|
|
|
/* Round down to nearest ADPCM block */
|
|
|
|
offset = (ALdouble)(readPos / FrameBlockSize * BlockSize);
|
|
|
|
}
|
|
|
|
else if(BufferFmt->OriginalType == UserFmtMSADPCM)
|
|
|
|
{
|
|
|
|
ALsizei align = (BufferFmt->OriginalAlign-2)/2 + 7;
|
|
|
|
ALuint BlockSize = align * ChannelsFromFmt(BufferFmt->FmtChannels);
|
|
|
|
ALuint FrameBlockSize = BufferFmt->OriginalAlign;
|
2014-03-04 22:44:30 -08:00
|
|
|
|
2017-04-18 00:58:33 -07:00
|
|
|
/* Round down to nearest ADPCM block */
|
|
|
|
offset = (ALdouble)(readPos / FrameBlockSize * BlockSize);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2018-01-21 23:35:28 -08:00
|
|
|
ALuint FrameSize = FrameSizeFromFmt(BufferFmt->FmtChannels,
|
|
|
|
BufferFmt->FmtType);
|
2017-04-18 00:58:33 -07:00
|
|
|
offset = (ALdouble)(readPos * FrameSize);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
2007-11-13 18:02:18 -08:00
|
|
|
}
|
2015-09-22 08:48:26 -07:00
|
|
|
|
2016-04-25 02:22:54 -07:00
|
|
|
return offset;
|
2007-11-13 18:02:18 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2012-04-21 05:53:27 -07:00
|
|
|
/* ApplyOffset
|
|
|
|
*
|
|
|
|
* Apply the stored playback offset to the Source. This function will update
|
2012-04-23 19:46:05 -07:00
|
|
|
* the number of buffers "played" given the stored offset.
|
|
|
|
*/
|
2017-03-19 13:48:40 -07:00
|
|
|
static ALboolean ApplyOffset(ALsource *Source, ALvoice *voice)
|
2007-11-13 18:02:18 -08:00
|
|
|
{
|
2014-05-10 03:21:40 -07:00
|
|
|
ALbufferlistitem *BufferList;
|
2018-03-27 08:27:16 -07:00
|
|
|
ALuint totalBufferLen;
|
2017-04-08 14:29:08 -07:00
|
|
|
ALuint offset = 0;
|
|
|
|
ALsizei frac = 0;
|
2007-11-13 18:02:18 -08:00
|
|
|
|
2012-04-21 05:53:27 -07:00
|
|
|
/* Get sample frame offset */
|
2015-10-13 03:01:34 -07:00
|
|
|
if(!GetSampleOffset(Source, &offset, &frac))
|
2010-01-12 02:22:38 -08:00
|
|
|
return AL_FALSE;
|
2007-11-13 18:02:18 -08:00
|
|
|
|
2012-04-21 05:53:27 -07:00
|
|
|
totalBufferLen = 0;
|
2017-04-18 00:58:33 -07:00
|
|
|
BufferList = Source->queue;
|
2014-05-10 03:21:40 -07:00
|
|
|
while(BufferList && totalBufferLen <= offset)
|
2010-01-12 02:22:38 -08:00
|
|
|
{
|
2018-03-27 08:27:16 -07:00
|
|
|
if((ALuint)BufferList->max_samples > offset-totalBufferLen)
|
2010-01-12 02:22:38 -08:00
|
|
|
{
|
2012-04-21 05:53:27 -07:00
|
|
|
/* Offset is in this buffer */
|
2017-02-27 15:35:15 -08:00
|
|
|
ATOMIC_STORE(&voice->position, offset - totalBufferLen, almemory_order_relaxed);
|
2017-04-18 00:58:33 -07:00
|
|
|
ATOMIC_STORE(&voice->position_fraction, frac, almemory_order_relaxed);
|
|
|
|
ATOMIC_STORE(&voice->current_buffer, BufferList, almemory_order_release);
|
2010-05-11 11:59:41 -07:00
|
|
|
return AL_TRUE;
|
2010-01-12 02:22:38 -08:00
|
|
|
}
|
2018-03-27 08:27:16 -07:00
|
|
|
totalBufferLen += BufferList->max_samples;
|
2010-01-12 02:22:38 -08:00
|
|
|
|
2017-04-19 19:54:17 -07:00
|
|
|
BufferList = ATOMIC_LOAD(&BufferList->next, almemory_order_relaxed);
|
2007-11-13 18:02:18 -08:00
|
|
|
}
|
2012-04-21 05:53:27 -07:00
|
|
|
|
|
|
|
/* Offset is out of range of the queue */
|
2010-05-11 11:59:41 -07:00
|
|
|
return AL_FALSE;
|
2007-11-13 18:02:18 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2012-04-21 05:53:27 -07:00
|
|
|
/* GetSampleOffset
|
|
|
|
*
|
2015-10-13 03:01:34 -07:00
|
|
|
* Retrieves the sample offset into the Source's queue (from the Sample, Byte
|
|
|
|
* or Second offset supplied by the application). This takes into account the
|
|
|
|
* fact that the buffer format may have been modifed since.
|
2012-04-21 05:53:27 -07:00
|
|
|
*/
|
2017-04-08 14:29:08 -07:00
|
|
|
static ALboolean GetSampleOffset(ALsource *Source, ALuint *offset, ALsizei *frac)
|
2007-11-13 18:02:18 -08:00
|
|
|
{
|
2017-04-18 00:58:33 -07:00
|
|
|
const ALbuffer *BufferFmt = NULL;
|
2010-12-09 19:47:08 -08:00
|
|
|
const ALbufferlistitem *BufferList;
|
2015-10-14 03:23:19 -07:00
|
|
|
ALdouble dbloff, dblfrac;
|
2007-11-13 18:02:18 -08:00
|
|
|
|
2012-04-21 05:53:27 -07:00
|
|
|
/* Find the first valid Buffer in the Queue */
|
2017-04-18 00:58:33 -07:00
|
|
|
BufferList = Source->queue;
|
2010-03-24 02:23:00 -07:00
|
|
|
while(BufferList)
|
2007-11-13 18:02:18 -08:00
|
|
|
{
|
2017-12-15 22:59:51 -08:00
|
|
|
ALsizei i;
|
|
|
|
for(i = 0;i < BufferList->num_buffers && !BufferFmt;i++)
|
|
|
|
BufferFmt = BufferList->buffers[i];
|
|
|
|
if(BufferFmt) break;
|
2017-04-21 16:58:55 -07:00
|
|
|
BufferList = ATOMIC_LOAD(&CONST_CAST(ALbufferlistitem*,BufferList)->next,
|
|
|
|
almemory_order_relaxed);
|
2007-11-13 18:02:18 -08:00
|
|
|
}
|
2017-04-18 00:58:33 -07:00
|
|
|
if(!BufferFmt)
|
2007-11-13 18:02:18 -08:00
|
|
|
{
|
2016-05-09 16:34:54 -07:00
|
|
|
Source->OffsetType = AL_NONE;
|
|
|
|
Source->Offset = 0.0;
|
2015-10-13 03:01:34 -07:00
|
|
|
return AL_FALSE;
|
2010-03-24 02:23:00 -07:00
|
|
|
}
|
2007-11-13 18:02:18 -08:00
|
|
|
|
2012-04-16 22:11:03 -07:00
|
|
|
switch(Source->OffsetType)
|
2010-03-24 02:23:00 -07:00
|
|
|
{
|
2010-05-11 11:06:48 -07:00
|
|
|
case AL_BYTE_OFFSET:
|
2012-04-21 05:53:27 -07:00
|
|
|
/* Determine the ByteOffset (and ensure it is block aligned) */
|
2015-10-13 03:01:34 -07:00
|
|
|
*offset = (ALuint)Source->Offset;
|
2017-04-18 00:58:33 -07:00
|
|
|
if(BufferFmt->OriginalType == UserFmtIMA4)
|
2010-11-29 19:27:33 -08:00
|
|
|
{
|
2017-04-18 00:58:33 -07:00
|
|
|
ALsizei align = (BufferFmt->OriginalAlign-1)/2 + 4;
|
2018-01-21 23:35:28 -08:00
|
|
|
*offset /= align * ChannelsFromFmt(BufferFmt->FmtChannels);
|
2017-04-18 00:58:33 -07:00
|
|
|
*offset *= BufferFmt->OriginalAlign;
|
2010-11-29 19:27:33 -08:00
|
|
|
}
|
2017-04-18 00:58:33 -07:00
|
|
|
else if(BufferFmt->OriginalType == UserFmtMSADPCM)
|
2014-03-04 22:44:30 -08:00
|
|
|
{
|
2017-04-18 00:58:33 -07:00
|
|
|
ALsizei align = (BufferFmt->OriginalAlign-2)/2 + 7;
|
2018-01-21 23:35:28 -08:00
|
|
|
*offset /= align * ChannelsFromFmt(BufferFmt->FmtChannels);
|
2017-04-18 00:58:33 -07:00
|
|
|
*offset *= BufferFmt->OriginalAlign;
|
2014-03-04 22:44:30 -08:00
|
|
|
}
|
2010-11-29 19:27:33 -08:00
|
|
|
else
|
2018-01-21 23:35:28 -08:00
|
|
|
*offset /= FrameSizeFromFmt(BufferFmt->FmtChannels, BufferFmt->FmtType);
|
2015-10-13 03:01:34 -07:00
|
|
|
*frac = 0;
|
2010-05-11 11:06:48 -07:00
|
|
|
break;
|
|
|
|
|
|
|
|
case AL_SAMPLE_OFFSET:
|
2015-10-24 15:13:56 -07:00
|
|
|
dblfrac = modf(Source->Offset, &dbloff);
|
2015-10-14 03:23:19 -07:00
|
|
|
*offset = (ALuint)mind(dbloff, UINT_MAX);
|
2017-04-08 14:29:08 -07:00
|
|
|
*frac = (ALsizei)mind(dblfrac*FRACTIONONE, FRACTIONONE-1.0);
|
2010-05-11 11:06:48 -07:00
|
|
|
break;
|
|
|
|
|
|
|
|
case AL_SEC_OFFSET:
|
2017-04-18 00:58:33 -07:00
|
|
|
dblfrac = modf(Source->Offset*BufferFmt->Frequency, &dbloff);
|
2015-10-14 03:23:19 -07:00
|
|
|
*offset = (ALuint)mind(dbloff, UINT_MAX);
|
2017-04-08 14:29:08 -07:00
|
|
|
*frac = (ALsizei)mind(dblfrac*FRACTIONONE, FRACTIONONE-1.0);
|
2010-05-11 11:06:48 -07:00
|
|
|
break;
|
2007-11-13 18:02:18 -08:00
|
|
|
}
|
2016-05-09 16:34:54 -07:00
|
|
|
Source->OffsetType = AL_NONE;
|
|
|
|
Source->Offset = 0.0;
|
2010-03-24 02:23:00 -07:00
|
|
|
|
2015-10-13 03:01:34 -07:00
|
|
|
return AL_TRUE;
|
2007-11-13 18:02:18 -08:00
|
|
|
}
|
2008-01-16 13:27:15 -08:00
|
|
|
|
|
|
|
|
2018-01-27 13:02:17 -08:00
|
|
|
static ALsource *AllocSource(ALCcontext *context)
|
|
|
|
{
|
2018-11-18 02:15:31 -08:00
|
|
|
ALCdevice *device{context->Device};
|
2018-01-27 13:02:17 -08:00
|
|
|
almtx_lock(&context->SourceLock);
|
|
|
|
if(context->NumSources >= device->SourcesMax)
|
|
|
|
{
|
|
|
|
almtx_unlock(&context->SourceLock);
|
2018-01-27 20:04:21 -08:00
|
|
|
alSetError(context, AL_OUT_OF_MEMORY, "Exceeding %u source limit", device->SourcesMax);
|
2018-11-18 02:15:31 -08:00
|
|
|
return nullptr;
|
2018-01-27 13:02:17 -08:00
|
|
|
}
|
2018-11-18 02:15:31 -08:00
|
|
|
auto sublist = std::find_if(context->SourceList.begin(), context->SourceList.end(),
|
|
|
|
[](const SourceSubList &entry) -> bool
|
|
|
|
{ return entry.FreeMask != 0; }
|
|
|
|
);
|
|
|
|
ALsizei lidx = std::distance(context->SourceList.begin(), sublist);
|
|
|
|
ALsource *source;
|
|
|
|
ALsizei slidx;
|
|
|
|
if(LIKELY(sublist != context->SourceList.end()))
|
2018-01-27 13:02:17 -08:00
|
|
|
{
|
2018-11-18 02:15:31 -08:00
|
|
|
slidx = CTZ64(sublist->FreeMask);
|
|
|
|
source = sublist->Sources + slidx;
|
2018-01-27 13:02:17 -08:00
|
|
|
}
|
2018-11-18 02:15:31 -08:00
|
|
|
else
|
2018-01-27 13:02:17 -08:00
|
|
|
{
|
|
|
|
/* Don't allocate so many list entries that the 32-bit ID could
|
|
|
|
* overflow...
|
|
|
|
*/
|
2018-11-18 02:15:31 -08:00
|
|
|
if(UNLIKELY(context->SourceList.size() >= 1<<25))
|
2018-01-27 13:02:17 -08:00
|
|
|
{
|
|
|
|
almtx_unlock(&device->BufferLock);
|
2018-01-27 20:04:21 -08:00
|
|
|
alSetError(context, AL_OUT_OF_MEMORY, "Too many sources allocated");
|
2018-11-18 02:15:31 -08:00
|
|
|
return nullptr;
|
2018-01-27 13:02:17 -08:00
|
|
|
}
|
2018-11-18 02:15:31 -08:00
|
|
|
context->SourceList.emplace_back();
|
|
|
|
sublist = context->SourceList.end() - 1;
|
|
|
|
|
2018-01-27 13:02:17 -08:00
|
|
|
sublist->FreeMask = ~U64(0);
|
2018-11-15 03:13:54 -08:00
|
|
|
sublist->Sources = static_cast<ALsource*>(al_calloc(16, sizeof(ALsource)*64));
|
2018-01-27 13:02:17 -08:00
|
|
|
if(UNLIKELY(!sublist->Sources))
|
|
|
|
{
|
2018-11-18 02:15:31 -08:00
|
|
|
context->SourceList.pop_back();
|
2018-01-27 13:02:17 -08:00
|
|
|
almtx_unlock(&context->SourceLock);
|
2018-01-27 20:04:21 -08:00
|
|
|
alSetError(context, AL_OUT_OF_MEMORY, "Failed to allocate source batch");
|
2018-11-18 02:15:31 -08:00
|
|
|
return nullptr;
|
2018-01-27 13:02:17 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
slidx = 0;
|
|
|
|
source = sublist->Sources + slidx;
|
|
|
|
}
|
|
|
|
|
2018-11-18 02:15:31 -08:00
|
|
|
source = new (source) ALsource{};
|
2018-01-27 13:02:17 -08:00
|
|
|
InitSourceParams(source, device->NumAuxSends);
|
|
|
|
|
|
|
|
/* Add 1 to avoid source ID 0. */
|
|
|
|
source->id = ((lidx<<6) | slidx) + 1;
|
|
|
|
|
|
|
|
context->NumSources++;
|
|
|
|
sublist->FreeMask &= ~(U64(1)<<slidx);
|
|
|
|
almtx_unlock(&context->SourceLock);
|
|
|
|
|
|
|
|
return source;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void FreeSource(ALCcontext *context, ALsource *source)
|
|
|
|
{
|
|
|
|
ALCdevice *device = context->Device;
|
|
|
|
ALuint id = source->id - 1;
|
|
|
|
ALsizei lidx = id >> 6;
|
|
|
|
ALsizei slidx = id & 0x3f;
|
|
|
|
ALvoice *voice;
|
|
|
|
|
|
|
|
ALCdevice_Lock(device);
|
|
|
|
if((voice=GetSourceVoice(source, context)) != NULL)
|
|
|
|
{
|
2018-11-15 03:13:54 -08:00
|
|
|
ATOMIC_STORE(&voice->Source, static_cast<ALsource*>(nullptr), almemory_order_relaxed);
|
2018-01-27 13:02:17 -08:00
|
|
|
ATOMIC_STORE(&voice->Playing, false, almemory_order_release);
|
|
|
|
}
|
|
|
|
ALCdevice_Unlock(device);
|
|
|
|
|
|
|
|
DeinitSource(source, device->NumAuxSends);
|
2018-11-18 02:15:31 -08:00
|
|
|
source->~ALsource();
|
2018-01-27 13:02:17 -08:00
|
|
|
|
2018-11-18 02:15:31 -08:00
|
|
|
context->SourceList[lidx].FreeMask |= U64(1) << slidx;
|
2018-01-27 13:02:17 -08:00
|
|
|
context->NumSources--;
|
|
|
|
}
|
|
|
|
|
2012-04-21 05:53:27 -07:00
|
|
|
/* ReleaseALSources
|
|
|
|
*
|
|
|
|
* Destroys all sources in the source map.
|
|
|
|
*/
|
2018-01-27 13:02:17 -08:00
|
|
|
ALvoid ReleaseALSources(ALCcontext *context)
|
2008-01-16 13:27:15 -08:00
|
|
|
{
|
2018-01-27 13:02:17 -08:00
|
|
|
ALCdevice *device = context->Device;
|
|
|
|
size_t leftover = 0;
|
2018-11-18 02:15:31 -08:00
|
|
|
for(auto &sublist : context->SourceList)
|
2008-01-16 13:27:15 -08:00
|
|
|
{
|
2018-11-18 02:15:31 -08:00
|
|
|
ALuint64 usemask = ~sublist.FreeMask;
|
2018-01-27 13:02:17 -08:00
|
|
|
while(usemask)
|
|
|
|
{
|
|
|
|
ALsizei idx = CTZ64(usemask);
|
2018-11-18 02:15:31 -08:00
|
|
|
ALsource *source = sublist.Sources + idx;
|
2009-10-24 07:09:44 -07:00
|
|
|
|
2018-01-27 13:02:17 -08:00
|
|
|
DeinitSource(source, device->NumAuxSends);
|
2018-11-18 02:15:31 -08:00
|
|
|
source->~ALsource();
|
2018-01-27 13:02:17 -08:00
|
|
|
++leftover;
|
2008-01-16 13:27:15 -08:00
|
|
|
|
2018-01-27 13:02:17 -08:00
|
|
|
usemask &= ~(U64(1) << idx);
|
|
|
|
}
|
2018-11-18 02:15:31 -08:00
|
|
|
sublist.FreeMask = ~usemask;
|
2008-01-16 13:27:15 -08:00
|
|
|
}
|
2018-01-27 13:02:17 -08:00
|
|
|
if(leftover > 0)
|
2018-11-15 03:13:54 -08:00
|
|
|
WARN("(%p) Deleted " SZFMT " Source%s\n", device, leftover, (leftover==1)?"":"s");
|
2008-01-16 13:27:15 -08:00
|
|
|
}
|