2007-04-22 03:23:25 +02:00
|
|
|
// Copyright (c) 2005-2007, Rodrigo Braz Monteiro
|
2006-02-25 07:04:46 +01:00
|
|
|
// All rights reserved.
|
|
|
|
//
|
|
|
|
// Redistribution and use in source and binary forms, with or without
|
|
|
|
// modification, are permitted provided that the following conditions are met:
|
|
|
|
//
|
|
|
|
// * Redistributions of source code must retain the above copyright notice,
|
|
|
|
// this list of conditions and the following disclaimer.
|
|
|
|
// * Redistributions in binary form must reproduce the above copyright notice,
|
|
|
|
// this list of conditions and the following disclaimer in the documentation
|
|
|
|
// and/or other materials provided with the distribution.
|
|
|
|
// * Neither the name of the Aegisub Group nor the names of its contributors
|
|
|
|
// may be used to endorse or promote products derived from this software
|
|
|
|
// without specific prior written permission.
|
|
|
|
//
|
|
|
|
// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
|
|
|
// AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
|
|
// IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
|
|
// ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
|
|
|
|
// LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
|
|
|
|
// CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
|
|
|
|
// SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
|
|
|
|
// INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
|
|
|
|
// CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
|
|
|
|
// ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
|
|
|
// POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
//
|
2009-07-29 07:43:02 +02:00
|
|
|
// Aegisub Project http://www.aegisub.org/
|
2006-02-25 07:04:46 +01:00
|
|
|
//
|
2009-07-29 07:43:02 +02:00
|
|
|
// $Id$
|
|
|
|
|
|
|
|
/// @file audio_player_portaudio.cpp
|
|
|
|
/// @brief PortAudio v18-based audio output
|
|
|
|
/// @ingroup audio_output
|
|
|
|
///
|
2006-02-25 07:04:46 +01:00
|
|
|
|
|
|
|
|
2009-01-04 07:31:48 +01:00
|
|
|
#include "config.h"
|
|
|
|
|
2008-01-21 21:57:20 +01:00
|
|
|
#ifdef WITH_PORTAUDIO
|
|
|
|
|
|
|
|
|
2006-02-25 07:04:46 +01:00
|
|
|
///////////
|
|
|
|
// Headers
|
2008-03-05 03:43:01 +01:00
|
|
|
#include "audio_player_portaudio.h"
|
2008-03-07 22:43:45 +01:00
|
|
|
#include "audio_provider_manager.h"
|
2009-06-10 06:45:57 +02:00
|
|
|
#include "options.h"
|
2006-02-25 07:04:46 +01:00
|
|
|
#include "utils.h"
|
2009-07-14 23:28:49 +02:00
|
|
|
#include "charset_conv.h"
|
2007-04-22 03:23:25 +02:00
|
|
|
|
2009-07-30 04:51:42 +02:00
|
|
|
/// @define PORTAUDIO_DEBUG Enable debugging?
|
2009-06-10 06:45:57 +02:00
|
|
|
//#define PORTAUDIO_DEBUG
|
2007-04-22 03:23:25 +02:00
|
|
|
|
Note: This was done using a script! it's far from perfect but 95% of the work has been done already formatting-wise.
Document all functions, class, struct, union, enum, macro, variable, typedefs. This isn't the actual document in itself but empty documentation using any old documentation if it was there.
This was done using exuberant ctags to get tag info, then a TCL script to parse/remove old comments and convert them into Doxygen-style.
Some notes:
* Anything labeled 'DOCME' needs to be documented, @param and @return have been left blank as it would be annoying to delete the 'DOCME' from every one of those.
* Some multiline comments may have been munged into single line comments
* Leave the /// comments above global variables with a space, if they're harder to read then we'll be less likey to use them.
* Enum comments can go after the enumeration itself '[value] /// comment'
* include/aegisub/*.h haven't been converted yet, this will be done in a later commit
* Some documentation blocks are in the wrong place, in the .h when it should be in the .cpp, or vice versa.
See http://devel.aegisub.org/wiki/Doxygen for some details on Doxygen and a 'style guide'.
Originally committed to SVN as r3312.
2009-07-30 00:59:22 +02:00
|
|
|
|
2009-07-30 04:51:42 +02:00
|
|
|
/// Reference counter
|
2006-02-25 07:04:46 +01:00
|
|
|
int PortAudioPlayer::pa_refcount = 0;
|
|
|
|
|
|
|
|
|
Note: This was done using a script! it's far from perfect but 95% of the work has been done already formatting-wise.
Document all functions, class, struct, union, enum, macro, variable, typedefs. This isn't the actual document in itself but empty documentation using any old documentation if it was there.
This was done using exuberant ctags to get tag info, then a TCL script to parse/remove old comments and convert them into Doxygen-style.
Some notes:
* Anything labeled 'DOCME' needs to be documented, @param and @return have been left blank as it would be annoying to delete the 'DOCME' from every one of those.
* Some multiline comments may have been munged into single line comments
* Leave the /// comments above global variables with a space, if they're harder to read then we'll be less likey to use them.
* Enum comments can go after the enumeration itself '[value] /// comment'
* include/aegisub/*.h haven't been converted yet, this will be done in a later commit
* Some documentation blocks are in the wrong place, in the .h when it should be in the .cpp, or vice versa.
See http://devel.aegisub.org/wiki/Doxygen for some details on Doxygen and a 'style guide'.
Originally committed to SVN as r3312.
2009-07-30 00:59:22 +02:00
|
|
|
|
2009-07-30 04:51:42 +02:00
|
|
|
/// @brief Constructor
|
2006-02-25 07:04:46 +01:00
|
|
|
PortAudioPlayer::PortAudioPlayer() {
|
|
|
|
// Initialize portaudio
|
|
|
|
if (!pa_refcount) {
|
|
|
|
PaError err = Pa_Initialize();
|
2009-06-10 06:45:57 +02:00
|
|
|
|
2006-04-15 00:47:08 +02:00
|
|
|
if (err != paNoError) {
|
|
|
|
static wchar_t errormsg[2048];
|
|
|
|
swprintf(errormsg, 2048, L"Failed opening PortAudio: %s", Pa_GetErrorText(err));
|
|
|
|
throw (const wchar_t *)errormsg;
|
|
|
|
}
|
2009-06-10 06:45:57 +02:00
|
|
|
|
2006-02-25 07:04:46 +01:00
|
|
|
pa_refcount++;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Variables
|
|
|
|
playing = false;
|
|
|
|
stopping = false;
|
|
|
|
volume = 1.0f;
|
2006-04-20 14:02:38 +02:00
|
|
|
paStart = 0.0;
|
2006-02-25 07:04:46 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
Note: This was done using a script! it's far from perfect but 95% of the work has been done already formatting-wise.
Document all functions, class, struct, union, enum, macro, variable, typedefs. This isn't the actual document in itself but empty documentation using any old documentation if it was there.
This was done using exuberant ctags to get tag info, then a TCL script to parse/remove old comments and convert them into Doxygen-style.
Some notes:
* Anything labeled 'DOCME' needs to be documented, @param and @return have been left blank as it would be annoying to delete the 'DOCME' from every one of those.
* Some multiline comments may have been munged into single line comments
* Leave the /// comments above global variables with a space, if they're harder to read then we'll be less likey to use them.
* Enum comments can go after the enumeration itself '[value] /// comment'
* include/aegisub/*.h haven't been converted yet, this will be done in a later commit
* Some documentation blocks are in the wrong place, in the .h when it should be in the .cpp, or vice versa.
See http://devel.aegisub.org/wiki/Doxygen for some details on Doxygen and a 'style guide'.
Originally committed to SVN as r3312.
2009-07-30 00:59:22 +02:00
|
|
|
|
2009-07-30 04:51:42 +02:00
|
|
|
/// @brief Destructor
|
2006-02-25 07:04:46 +01:00
|
|
|
PortAudioPlayer::~PortAudioPlayer() {
|
|
|
|
// Deinit portaudio
|
|
|
|
if (!--pa_refcount) Pa_Terminate();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
Note: This was done using a script! it's far from perfect but 95% of the work has been done already formatting-wise.
Document all functions, class, struct, union, enum, macro, variable, typedefs. This isn't the actual document in itself but empty documentation using any old documentation if it was there.
This was done using exuberant ctags to get tag info, then a TCL script to parse/remove old comments and convert them into Doxygen-style.
Some notes:
* Anything labeled 'DOCME' needs to be documented, @param and @return have been left blank as it would be annoying to delete the 'DOCME' from every one of those.
* Some multiline comments may have been munged into single line comments
* Leave the /// comments above global variables with a space, if they're harder to read then we'll be less likey to use them.
* Enum comments can go after the enumeration itself '[value] /// comment'
* include/aegisub/*.h haven't been converted yet, this will be done in a later commit
* Some documentation blocks are in the wrong place, in the .h when it should be in the .cpp, or vice versa.
See http://devel.aegisub.org/wiki/Doxygen for some details on Doxygen and a 'style guide'.
Originally committed to SVN as r3312.
2009-07-30 00:59:22 +02:00
|
|
|
|
2009-07-30 04:51:42 +02:00
|
|
|
/// @brief Open stream
|
2009-06-10 06:45:57 +02:00
|
|
|
void PortAudioPlayer::OpenStream() {
|
|
|
|
// Open stream
|
|
|
|
PaStreamParameters pa_output_p;
|
|
|
|
|
|
|
|
int pa_config_default = Options.AsInt(_T("Audio PortAudio Device"));
|
|
|
|
PaDeviceIndex pa_device;
|
|
|
|
|
|
|
|
if (pa_config_default < 0) {
|
|
|
|
pa_device = Pa_GetDefaultOutputDevice();
|
|
|
|
wxLogDebug(_T("PortAudioPlayer::OpenStream Using Default Output Device: %d"), pa_device);
|
|
|
|
} else {
|
|
|
|
pa_device = pa_config_default;
|
|
|
|
wxLogDebug(_T("PortAudioPlayer::OpenStream Using Config Device: %d"), pa_device);
|
2006-02-25 07:04:46 +01:00
|
|
|
}
|
|
|
|
|
2009-06-10 06:45:57 +02:00
|
|
|
pa_output_p.device = pa_device;
|
|
|
|
pa_output_p.channelCount = provider->GetChannels();
|
|
|
|
pa_output_p.sampleFormat = paInt16;
|
|
|
|
pa_output_p.suggestedLatency = Pa_GetDeviceInfo(pa_device)->defaultLowOutputLatency;
|
|
|
|
pa_output_p.hostApiSpecificStreamInfo = NULL;
|
|
|
|
|
|
|
|
wxLogDebug(_T("PortAudioPlayer::OpenStream Output channels: %d, Latency: %f Sample Rate: %ld\n"),
|
|
|
|
pa_output_p.channelCount, pa_output_p.suggestedLatency, pa_output_p.sampleFormat);
|
|
|
|
|
|
|
|
PaError err = Pa_OpenStream(&stream, NULL, &pa_output_p, provider->GetSampleRate(), 256, paPrimeOutputBuffersUsingStreamCallback, paCallback, this);
|
|
|
|
|
|
|
|
if (err != paNoError) {
|
|
|
|
|
|
|
|
const PaHostErrorInfo *pa_err = Pa_GetLastHostErrorInfo();
|
|
|
|
if (pa_err->errorCode != 0) {
|
|
|
|
wxLogDebug(_T("PortAudioPlayer::OpenStream HostError: API: %d, %s (%ld)\n"), pa_err->hostApiType, pa_err->errorText, pa_err->errorCode);
|
|
|
|
}
|
2009-07-14 23:28:49 +02:00
|
|
|
throw wxString(_T("Failed initializing PortAudio stream with error: ") + wxString(Pa_GetErrorText(err),csConvLocal));
|
2006-02-25 07:04:46 +01:00
|
|
|
}
|
2009-06-10 06:45:57 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
Note: This was done using a script! it's far from perfect but 95% of the work has been done already formatting-wise.
Document all functions, class, struct, union, enum, macro, variable, typedefs. This isn't the actual document in itself but empty documentation using any old documentation if it was there.
This was done using exuberant ctags to get tag info, then a TCL script to parse/remove old comments and convert them into Doxygen-style.
Some notes:
* Anything labeled 'DOCME' needs to be documented, @param and @return have been left blank as it would be annoying to delete the 'DOCME' from every one of those.
* Some multiline comments may have been munged into single line comments
* Leave the /// comments above global variables with a space, if they're harder to read then we'll be less likey to use them.
* Enum comments can go after the enumeration itself '[value] /// comment'
* include/aegisub/*.h haven't been converted yet, this will be done in a later commit
* Some documentation blocks are in the wrong place, in the .h when it should be in the .cpp, or vice versa.
See http://devel.aegisub.org/wiki/Doxygen for some details on Doxygen and a 'style guide'.
Originally committed to SVN as r3312.
2009-07-30 00:59:22 +02:00
|
|
|
|
2009-07-30 04:51:42 +02:00
|
|
|
/// @brief Close stream
|
2009-06-10 06:45:57 +02:00
|
|
|
void PortAudioPlayer::CloseStream() {
|
|
|
|
try {
|
|
|
|
Stop(false);
|
|
|
|
Pa_CloseStream(stream);
|
|
|
|
} catch (...) {}
|
|
|
|
}
|
2006-02-25 07:04:46 +01:00
|
|
|
|
Note: This was done using a script! it's far from perfect but 95% of the work has been done already formatting-wise.
Document all functions, class, struct, union, enum, macro, variable, typedefs. This isn't the actual document in itself but empty documentation using any old documentation if it was there.
This was done using exuberant ctags to get tag info, then a TCL script to parse/remove old comments and convert them into Doxygen-style.
Some notes:
* Anything labeled 'DOCME' needs to be documented, @param and @return have been left blank as it would be annoying to delete the 'DOCME' from every one of those.
* Some multiline comments may have been munged into single line comments
* Leave the /// comments above global variables with a space, if they're harder to read then we'll be less likey to use them.
* Enum comments can go after the enumeration itself '[value] /// comment'
* include/aegisub/*.h haven't been converted yet, this will be done in a later commit
* Some documentation blocks are in the wrong place, in the .h when it should be in the .cpp, or vice versa.
See http://devel.aegisub.org/wiki/Doxygen for some details on Doxygen and a 'style guide'.
Originally committed to SVN as r3312.
2009-07-30 00:59:22 +02:00
|
|
|
|
|
|
|
/// @brief Called when the callback has finished.
|
2009-07-30 04:51:42 +02:00
|
|
|
/// @param userData Local data to be handed to the callback.
|
2009-06-10 06:45:57 +02:00
|
|
|
void PortAudioPlayer::paStreamFinishedCallback(void *userData) {
|
|
|
|
PortAudioPlayer *player = (PortAudioPlayer *) userData;
|
2006-02-25 07:04:46 +01:00
|
|
|
|
2009-06-10 06:45:57 +02:00
|
|
|
player->playing = false;
|
2006-02-25 07:04:46 +01:00
|
|
|
|
2009-06-10 06:45:57 +02:00
|
|
|
if (player->displayTimer) {
|
|
|
|
player->displayTimer->Stop();
|
|
|
|
}
|
|
|
|
|
|
|
|
wxLogDebug(_T("PortAudioPlayer::paStreamFinishedCallback Stopping stream."));
|
2006-02-25 07:04:46 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
Note: This was done using a script! it's far from perfect but 95% of the work has been done already formatting-wise.
Document all functions, class, struct, union, enum, macro, variable, typedefs. This isn't the actual document in itself but empty documentation using any old documentation if it was there.
This was done using exuberant ctags to get tag info, then a TCL script to parse/remove old comments and convert them into Doxygen-style.
Some notes:
* Anything labeled 'DOCME' needs to be documented, @param and @return have been left blank as it would be annoying to delete the 'DOCME' from every one of those.
* Some multiline comments may have been munged into single line comments
* Leave the /// comments above global variables with a space, if they're harder to read then we'll be less likey to use them.
* Enum comments can go after the enumeration itself '[value] /// comment'
* include/aegisub/*.h haven't been converted yet, this will be done in a later commit
* Some documentation blocks are in the wrong place, in the .h when it should be in the .cpp, or vice versa.
See http://devel.aegisub.org/wiki/Doxygen for some details on Doxygen and a 'style guide'.
Originally committed to SVN as r3312.
2009-07-30 00:59:22 +02:00
|
|
|
|
2009-07-30 04:51:42 +02:00
|
|
|
/// @brief Play audio.
|
|
|
|
/// @param start Start position.
|
|
|
|
/// @param count Frame count
|
2007-08-31 16:11:35 +02:00
|
|
|
void PortAudioPlayer::Play(int64_t start,int64_t count) {
|
2009-06-10 06:45:57 +02:00
|
|
|
PaError err;
|
|
|
|
|
2006-02-25 07:04:46 +01:00
|
|
|
// Stop if it's already playing
|
|
|
|
wxMutexLocker locker(PAMutex);
|
|
|
|
|
|
|
|
// Set values
|
|
|
|
endPos = start + count;
|
|
|
|
playPos = start;
|
|
|
|
startPos = start;
|
|
|
|
|
|
|
|
// Start playing
|
|
|
|
if (!playing) {
|
2009-06-10 06:45:57 +02:00
|
|
|
|
|
|
|
err = Pa_SetStreamFinishedCallback(stream, paStreamFinishedCallback);
|
|
|
|
|
|
|
|
if (err != paNoError) {
|
|
|
|
wxLogDebug(_T("PortAudioPlayer::Play Could not set FinishedCallback\n"));
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
err = Pa_StartStream(stream);
|
|
|
|
|
2006-02-25 07:04:46 +01:00
|
|
|
if (err != paNoError) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
playing = true;
|
2009-06-10 06:45:57 +02:00
|
|
|
paStart = Pa_GetStreamTime(stream);
|
2006-02-25 07:04:46 +01:00
|
|
|
|
|
|
|
// Update timer
|
|
|
|
if (displayTimer && !displayTimer->IsRunning()) displayTimer->Start(15);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
Note: This was done using a script! it's far from perfect but 95% of the work has been done already formatting-wise.
Document all functions, class, struct, union, enum, macro, variable, typedefs. This isn't the actual document in itself but empty documentation using any old documentation if it was there.
This was done using exuberant ctags to get tag info, then a TCL script to parse/remove old comments and convert them into Doxygen-style.
Some notes:
* Anything labeled 'DOCME' needs to be documented, @param and @return have been left blank as it would be annoying to delete the 'DOCME' from every one of those.
* Some multiline comments may have been munged into single line comments
* Leave the /// comments above global variables with a space, if they're harder to read then we'll be less likey to use them.
* Enum comments can go after the enumeration itself '[value] /// comment'
* include/aegisub/*.h haven't been converted yet, this will be done in a later commit
* Some documentation blocks are in the wrong place, in the .h when it should be in the .cpp, or vice versa.
See http://devel.aegisub.org/wiki/Doxygen for some details on Doxygen and a 'style guide'.
Originally committed to SVN as r3312.
2009-07-30 00:59:22 +02:00
|
|
|
|
2009-07-30 04:51:42 +02:00
|
|
|
/// @brief Stop Playback
|
|
|
|
/// @param timerToo Stop display timer?
|
Note: This was done using a script! it's far from perfect but 95% of the work has been done already formatting-wise.
Document all functions, class, struct, union, enum, macro, variable, typedefs. This isn't the actual document in itself but empty documentation using any old documentation if it was there.
This was done using exuberant ctags to get tag info, then a TCL script to parse/remove old comments and convert them into Doxygen-style.
Some notes:
* Anything labeled 'DOCME' needs to be documented, @param and @return have been left blank as it would be annoying to delete the 'DOCME' from every one of those.
* Some multiline comments may have been munged into single line comments
* Leave the /// comments above global variables with a space, if they're harder to read then we'll be less likey to use them.
* Enum comments can go after the enumeration itself '[value] /// comment'
* include/aegisub/*.h haven't been converted yet, this will be done in a later commit
* Some documentation blocks are in the wrong place, in the .h when it should be in the .cpp, or vice versa.
See http://devel.aegisub.org/wiki/Doxygen for some details on Doxygen and a 'style guide'.
Originally committed to SVN as r3312.
2009-07-30 00:59:22 +02:00
|
|
|
///
|
2006-02-25 07:04:46 +01:00
|
|
|
void PortAudioPlayer::Stop(bool timerToo) {
|
|
|
|
//wxMutexLocker locker(PAMutex);
|
|
|
|
//softStop = false;
|
|
|
|
|
|
|
|
// Stop stream
|
|
|
|
playing = false;
|
|
|
|
Pa_StopStream (stream);
|
|
|
|
|
|
|
|
// Stop timer
|
|
|
|
if (timerToo && displayTimer) {
|
|
|
|
displayTimer->Stop();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
Note: This was done using a script! it's far from perfect but 95% of the work has been done already formatting-wise.
Document all functions, class, struct, union, enum, macro, variable, typedefs. This isn't the actual document in itself but empty documentation using any old documentation if it was there.
This was done using exuberant ctags to get tag info, then a TCL script to parse/remove old comments and convert them into Doxygen-style.
Some notes:
* Anything labeled 'DOCME' needs to be documented, @param and @return have been left blank as it would be annoying to delete the 'DOCME' from every one of those.
* Some multiline comments may have been munged into single line comments
* Leave the /// comments above global variables with a space, if they're harder to read then we'll be less likey to use them.
* Enum comments can go after the enumeration itself '[value] /// comment'
* include/aegisub/*.h haven't been converted yet, this will be done in a later commit
* Some documentation blocks are in the wrong place, in the .h when it should be in the .cpp, or vice versa.
See http://devel.aegisub.org/wiki/Doxygen for some details on Doxygen and a 'style guide'.
Originally committed to SVN as r3312.
2009-07-30 00:59:22 +02:00
|
|
|
|
2009-07-30 04:51:42 +02:00
|
|
|
/// @brief PortAudio callback
|
|
|
|
/// @param inputBuffer Input buffer.
|
|
|
|
/// @param outputBuffer Output buffer.
|
|
|
|
/// @param framesPerBuffer Frames per buffer.
|
|
|
|
/// @param timeInfo PortAudio time information.
|
|
|
|
/// @param statusFlags Status flags
|
|
|
|
/// @param userData Local data to hand callback
|
|
|
|
/// @return Whether to stop playback.
|
Note: This was done using a script! it's far from perfect but 95% of the work has been done already formatting-wise.
Document all functions, class, struct, union, enum, macro, variable, typedefs. This isn't the actual document in itself but empty documentation using any old documentation if it was there.
This was done using exuberant ctags to get tag info, then a TCL script to parse/remove old comments and convert them into Doxygen-style.
Some notes:
* Anything labeled 'DOCME' needs to be documented, @param and @return have been left blank as it would be annoying to delete the 'DOCME' from every one of those.
* Some multiline comments may have been munged into single line comments
* Leave the /// comments above global variables with a space, if they're harder to read then we'll be less likey to use them.
* Enum comments can go after the enumeration itself '[value] /// comment'
* include/aegisub/*.h haven't been converted yet, this will be done in a later commit
* Some documentation blocks are in the wrong place, in the .h when it should be in the .cpp, or vice versa.
See http://devel.aegisub.org/wiki/Doxygen for some details on Doxygen and a 'style guide'.
Originally committed to SVN as r3312.
2009-07-30 00:59:22 +02:00
|
|
|
///
|
2009-06-10 06:45:57 +02:00
|
|
|
int PortAudioPlayer::paCallback(const void *inputBuffer, void *outputBuffer, unsigned long framesPerBuffer, const PaStreamCallbackTimeInfo* timeInfo, PaStreamCallbackFlags statusFlags, void *userData) {
|
|
|
|
|
|
|
|
// Get provider
|
|
|
|
PortAudioPlayer *player = (PortAudioPlayer *) userData;
|
|
|
|
AudioProvider *provider = player->GetProvider();
|
|
|
|
|
|
|
|
#ifdef PORTAUDIO_DEBUG
|
|
|
|
printf("paCallBack: playPos: %lld startPos: %lld paStart: %f Pa_GetStreamTime: %f AdcTime: %f DacTime: %f framesPerBuffer: %lu CPU: %f\n",
|
|
|
|
player->playPos, player->startPos, player->paStart, Pa_GetStreamTime(player->stream),
|
|
|
|
timeInfo->inputBufferAdcTime, timeInfo->outputBufferDacTime, framesPerBuffer, Pa_GetStreamCpuLoad(player->stream));
|
2007-04-05 18:39:49 +02:00
|
|
|
#endif
|
|
|
|
|
2009-06-10 06:45:57 +02:00
|
|
|
// Calculate how much left
|
|
|
|
int64_t lenAvailable = (player->endPos - player->playPos) > 0 ? framesPerBuffer : 0;
|
|
|
|
|
|
|
|
|
|
|
|
// Play something
|
|
|
|
if (lenAvailable > 0) {
|
|
|
|
provider->GetAudioWithVolume(outputBuffer, player->playPos, lenAvailable, player->GetVolume());
|
|
|
|
|
|
|
|
// Set play position
|
|
|
|
player->playPos += framesPerBuffer;
|
|
|
|
|
|
|
|
// Continue as normal
|
|
|
|
return 0;
|
2006-02-25 09:26:29 +01:00
|
|
|
}
|
2009-06-10 06:45:57 +02:00
|
|
|
|
|
|
|
// Abort stream and stop the callback.
|
|
|
|
return paAbort;
|
2006-02-25 07:04:46 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
Note: This was done using a script! it's far from perfect but 95% of the work has been done already formatting-wise.
Document all functions, class, struct, union, enum, macro, variable, typedefs. This isn't the actual document in itself but empty documentation using any old documentation if it was there.
This was done using exuberant ctags to get tag info, then a TCL script to parse/remove old comments and convert them into Doxygen-style.
Some notes:
* Anything labeled 'DOCME' needs to be documented, @param and @return have been left blank as it would be annoying to delete the 'DOCME' from every one of those.
* Some multiline comments may have been munged into single line comments
* Leave the /// comments above global variables with a space, if they're harder to read then we'll be less likey to use them.
* Enum comments can go after the enumeration itself '[value] /// comment'
* include/aegisub/*.h haven't been converted yet, this will be done in a later commit
* Some documentation blocks are in the wrong place, in the .h when it should be in the .cpp, or vice versa.
See http://devel.aegisub.org/wiki/Doxygen for some details on Doxygen and a 'style guide'.
Originally committed to SVN as r3312.
2009-07-30 00:59:22 +02:00
|
|
|
|
2009-07-30 04:51:42 +02:00
|
|
|
/// @brief Get current stream position.
|
|
|
|
/// @return Stream position
|
2009-06-10 06:45:57 +02:00
|
|
|
int64_t PortAudioPlayer::GetCurrentPosition()
|
|
|
|
{
|
|
|
|
|
|
|
|
if (!playing) return 0;
|
|
|
|
|
|
|
|
const PaStreamInfo* streamInfo = Pa_GetStreamInfo(stream);
|
|
|
|
|
|
|
|
#ifdef PORTAUDIO_DEBUG
|
|
|
|
PaTime pa_getstream = Pa_GetStreamTime(stream);
|
|
|
|
int64_t real = ((pa_getstream - paStart) * streamInfo->sampleRate) + startPos;
|
|
|
|
printf("GetCurrentPosition: Pa_GetStreamTime: %f startPos: %lld playPos: %lld paStart: %f real: %lld diff: %f\n",
|
|
|
|
pa_getstream, startPos, playPos, paStart, real, pa_getstream-paStart);
|
|
|
|
|
|
|
|
return real;
|
|
|
|
#else
|
|
|
|
return ((Pa_GetStreamTime(stream) - paStart) * streamInfo->sampleRate) + startPos;
|
|
|
|
#endif
|
|
|
|
|
2006-02-25 07:04:46 +01:00
|
|
|
}
|
2006-12-23 15:15:04 +01:00
|
|
|
|
2008-01-21 21:57:20 +01:00
|
|
|
|
Note: This was done using a script! it's far from perfect but 95% of the work has been done already formatting-wise.
Document all functions, class, struct, union, enum, macro, variable, typedefs. This isn't the actual document in itself but empty documentation using any old documentation if it was there.
This was done using exuberant ctags to get tag info, then a TCL script to parse/remove old comments and convert them into Doxygen-style.
Some notes:
* Anything labeled 'DOCME' needs to be documented, @param and @return have been left blank as it would be annoying to delete the 'DOCME' from every one of those.
* Some multiline comments may have been munged into single line comments
* Leave the /// comments above global variables with a space, if they're harder to read then we'll be less likey to use them.
* Enum comments can go after the enumeration itself '[value] /// comment'
* include/aegisub/*.h haven't been converted yet, this will be done in a later commit
* Some documentation blocks are in the wrong place, in the .h when it should be in the .cpp, or vice versa.
See http://devel.aegisub.org/wiki/Doxygen for some details on Doxygen and a 'style guide'.
Originally committed to SVN as r3312.
2009-07-30 00:59:22 +02:00
|
|
|
|
2009-07-30 04:51:42 +02:00
|
|
|
/// @brief @param Setting from config file.
|
|
|
|
/// @param favorite Favorite output device
|
|
|
|
/// @return List of available output devices.
|
2009-06-10 06:45:57 +02:00
|
|
|
wxArrayString PortAudioPlayer::GetOutputDevices(wxString favorite) {
|
|
|
|
wxArrayString list;
|
|
|
|
int devices = Pa_GetDeviceCount();
|
|
|
|
int i;
|
|
|
|
|
|
|
|
if (devices < 0) {
|
|
|
|
// some error here
|
|
|
|
}
|
|
|
|
|
|
|
|
for (i=0; i<devices; i++) {
|
|
|
|
const PaDeviceInfo *dev_info = Pa_GetDeviceInfo(i);
|
|
|
|
wxString name(dev_info->name, wxConvUTF8);
|
|
|
|
list.Insert(name, i);
|
|
|
|
}
|
|
|
|
|
|
|
|
return list;
|
|
|
|
}
|
|
|
|
|
2008-01-21 21:57:20 +01:00
|
|
|
#endif // WITH_PORTAUDIO
|