Files
itgmania212121/stepmania/src/arch/Sound/RageSoundDriver_CA.cpp
T

276 lines
8.1 KiB
C++

#include "global.h"
#include "RageUtil.h"
#include "RageSoundDriver_CA.h"
#include "RageLog.h"
#include "RageTimer.h"
#include "PrefsManager.h"
#include <AudioToolbox/AudioConverter.h>
#include "CAAudioHardwareSystem.h"
#include "CAAudioHardwareDevice.h"
#include "CAAudioHardwareStream.h"
#include "CAStreamBasicDescription.h"
#include "CAException.h"
#include "archutils/Unix/CrashHandler.h"
#include <mach/thread_act.h>
#include <mach/mach_init.h>
#include <mach/mach_error.h>
static const UInt32 kFramesPerPacket = 1;
static const UInt32 kChannelsPerFrame = 2;
static const UInt32 kBitsPerChannel = 16;
static const UInt32 kBytesPerPacket = kChannelsPerFrame * kBitsPerChannel / 8;
static const UInt32 kBytesPerFrame = kBytesPerPacket;
static const UInt32 kFormatFlags = kAudioFormatFlagsNativeEndian |
kAudioFormatFlagIsSignedInteger;
typedef CAStreamBasicDescription Desc;
/* temporary hack: */
static float g_fLastIOProcTime = 0;
static const int NUM_MIX_TIMES = 16;
static float g_fLastMixTimes[NUM_MIX_TIMES];
static int g_iLastMixTimePos = 0;
static int g_iNumIOProcCalls = 0;
RageSound_CA::RageSound_CA()
{
mOutputDevice = NULL;
mConverter = NULL;
}
CString RageSound_CA::Init()
{
try
{
AudioDeviceID dID = CAAudioHardwareSystem::GetDefaultDevice( false, false );
mOutputDevice = new CAAudioHardwareDevice( dID );
}
catch( const CAException& e )
{
return "Couldn't create default output device.";
}
mSampleRate = PREFSMAN->m_iSoundPreferredSampleRate;
Float64 nominalSampleRate = mSampleRate;
try
{
mOutputDevice->SetNominalSampleRate(nominalSampleRate);
LOG->Info( "Set the nominal sample rate to %f.", nominalSampleRate );
}
catch( const CAException& e )
{
LOG->Warn( "Couldn't set the nominal sample rate." );
nominalSampleRate = mOutputDevice->GetNominalSampleRate();
LOG->Warn( "Device's nominal sample rate is %f", nominalSampleRate );
mSampleRate = int( nominalSampleRate );
}
AudioStreamID sID = mOutputDevice->GetStreamByIndex( kAudioDeviceSectionOutput, 0 );
CAAudioHardwareStream stream( sID );
try
{
mOutputDevice->AddPropertyListener( kAudioPropertyWildcardChannel, kAudioPropertyWildcardSection,
kAudioDeviceProcessorOverload, OverloadListener, this );
}
catch( const CAException& e )
{
LOG->Warn("Could not install the overload listener.");
}
// The canonical format
Desc IOProcFormat( nominalSampleRate, kAudioFormatLinearPCM, 8, 1, 8, 2, 32,
kAudioFormatFlagsNativeFloatPacked);
const Desc SMFormat( nominalSampleRate, kAudioFormatLinearPCM, kBytesPerPacket, kFramesPerPacket,
kBytesPerFrame, kChannelsPerFrame, kBitsPerChannel, kFormatFlags );
try
{
stream.SetCurrentIOProcFormat( IOProcFormat );
}
catch( const CAException& e )
{
LOG->Warn( "Could not set the IOProc format to the canonical format." );
stream.GetCurrentIOProcFormat( IOProcFormat );
}
if( AudioConverterNew(&SMFormat, &IOProcFormat, &mConverter) )
return "Couldn't create the audio converter";
UInt32 bufferSize;
try
{
bufferSize = mOutputDevice->GetIOBufferSize();
LOG->Info("I/O Buffer size: %lu frames", bufferSize);
}
catch( const CAException& e )
{
LOG->Warn( "Could not determine buffer size." );
bufferSize = 0;
}
try
{
UInt32 frames = mOutputDevice->GetLatency( kAudioDeviceSectionOutput );
if( stream.HasProperty(0, kAudioDevicePropertyLatency) )
{
UInt32 t, size = 4;
stream.GetPropertyData( 0, kAudioDevicePropertyLatency, size, &t );
frames += t;
LOG->Info( "Frames of stream latency: %lu", t );
}
else
{
LOG->Warn( "Stream does not report latency." );
}
frames += mOutputDevice->GetSafetyOffset( kAudioDeviceSectionOutput );
frames += bufferSize;
mLatency = frames / nominalSampleRate;
LOG->Info( "Frames of latency: %lu\n"
"Seconds of latency: %f", frames, mLatency );
}
catch( const CAException& e )
{
return "Couldn't get latency.";
}
StartDecodeThread();
try
{
mOutputDevice->AddIOProc( GetData, this );
mOutputDevice->StartIOProc( GetData );
}
catch( const CAException& e )
{
return "Couldn't start the IOProc.";
}
return "";
}
RageSound_CA::~RageSound_CA()
{
if( mOutputDevice != NULL )
{
mOutputDevice->StopIOProc( GetData );
mOutputDevice->RemoveIOProc( GetData );
}
delete mOutputDevice;
if( mConverter != NULL )
AudioConverterDispose( mConverter );
}
int64_t RageSound_CA::GetPosition( const RageSoundBase *sound ) const
{
#if 0
AudioTimeStamp inTime;
AudioTimeStamp outTime;
inTime.mHostTime = AudioGetCurrentHostTime();
inTime.mFlags = kAudioTimeStampHostTimeValid;
outTime.mFlags = kAudioTimeStampSampleTimeValid;
mOutputDevice->TranslateTime(inTime, outTime);
return int64_t(outTime.mSampleTime);
#else
AudioTimeStamp time;
mOutputDevice->GetCurrentTime( time );
return int64_t( time.mSampleTime );
#endif
}
OSStatus RageSound_CA::GetData( AudioDeviceID inDevice,
const AudioTimeStamp *inNow,
const AudioBufferList *inInputData,
const AudioTimeStamp *inInputTime,
AudioBufferList *outOutputData,
const AudioTimeStamp *inOutputTime,
void *inClientData )
{
RageTimer tm;
RageSound_CA *This = (RageSound_CA *)inClientData;
AudioBuffer& buf = outOutputData->mBuffers[0];
UInt32 dataPackets = buf.mDataByteSize >> 3; // 8 byes per packet
int64_t decodePos = int64_t( inOutputTime->mSampleTime );
int64_t now = int64_t( inNow->mSampleTime );
RageTimer tm2;
int16_t buffer[dataPackets * (kBytesPerPacket >> 1)];
This->Mix( buffer, dataPackets, decodePos, now) ;
g_fLastMixTimes[g_iLastMixTimePos] = tm2.GetDeltaTime();
++g_iLastMixTimePos;
wrap( g_iLastMixTimePos, NUM_MIX_TIMES );
AudioConverterConvertBuffer( This->mConverter, dataPackets * kBytesPerPacket,
buffer, &buf.mDataByteSize, buf.mData );
g_fLastIOProcTime = tm.GetDeltaTime();
++g_iNumIOProcCalls;
return noErr;
}
OSStatus RageSound_CA::OverloadListener( AudioDeviceID inDevice,
UInt32 inChannel,
Boolean isInput,
AudioDevicePropertyID inPropertyID,
void *inData )
{
CString Output;
for( int i = NUM_MIX_TIMES-1; i >= 0; --i )
{
int pos = (g_iLastMixTimePos+i) % NUM_MIX_TIMES;
Output += ssprintf( "%.3f ", g_fLastMixTimes[pos] );
}
LOG->Warn( "Audio overload. Last IOProc time: %f IOProc calls: %i (%s)",
g_fLastIOProcTime, g_iNumIOProcCalls, Output.c_str() );
g_iNumIOProcCalls = 0;
return noErr;
}
void RageSound_CA::SetupDecodingThread()
{
/* Increase the scheduling precedence of the decoder thread. */
thread_precedence_policy po;
po.importance = 32;
kern_return_t ret;
ret = thread_policy_set( mach_thread_self(),
THREAD_PRECEDENCE_POLICY, (int *)&po,
THREAD_PRECEDENCE_POLICY_COUNT );
if( ret != KERN_SUCCESS )
LOG->Warn( "thread_policy_set(THREAD_PRECEDENCE_POLICY) failed: %s", mach_error_string(ret) );
}
/*
* (c) 2004, 2005 Steve Checkoway
* All rights reserved.
*
* Permission is hereby granted, free of charge, to any person obtaining a
* copy of this software and associated documentation files (the
* "Software"), to deal in the Software without restriction, including
* without limitation the rights to use, copy, modify, merge, publish,
* distribute, and/or sell copies of the Software, and to permit persons to
* whom the Software is furnished to do so, provided that the above
* copyright notice(s) and this permission notice appear in all copies of
* the Software and that both the above copyright notice(s) and this
* permission notice appear in supporting documentation.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
* OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF
* THIRD PARTY RIGHTS. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS
* INCLUDED IN THIS NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT
* OR CONSEQUENTIAL DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS
* OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR
* OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
* PERFORMANCE OF THIS SOFTWARE.
*/