2011-06-12 02:45:02 +02:00
|
|
|
// Copyright (c) 2011, Niels Martin Hansen
|
2007-04-22 23:59:35 +02: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/
|
2007-04-22 23:59:35 +02:00
|
|
|
//
|
2009-07-29 07:43:02 +02:00
|
|
|
// $Id$
|
|
|
|
|
|
|
|
/// @file audio_player_alsa.cpp
|
|
|
|
/// @brief ALSA-based audio output
|
|
|
|
/// @ingroup audio_output
|
|
|
|
///
|
2007-04-22 23:59:35 +02:00
|
|
|
|
2009-01-04 07:31:48 +01:00
|
|
|
#include "config.h"
|
|
|
|
|
2008-01-21 21:57:20 +01:00
|
|
|
#ifdef WITH_ALSA
|
|
|
|
|
2010-06-09 01:21:39 +02:00
|
|
|
#include <libaegisub/log.h>
|
|
|
|
|
2009-09-10 15:06:40 +02:00
|
|
|
#include "audio_player_alsa.h"
|
2012-01-08 02:33:39 +01:00
|
|
|
|
|
|
|
#include "audio_controller.h"
|
2011-11-07 06:24:46 +01:00
|
|
|
#include "include/aegisub/audio_provider.h"
|
2010-05-24 03:46:04 +02:00
|
|
|
#include "compat.h"
|
2007-04-22 23:59:35 +02:00
|
|
|
#include "frame_main.h"
|
2011-11-07 06:24:46 +01:00
|
|
|
#include "main.h"
|
|
|
|
|
|
|
|
#ifndef AGI_PRE
|
2011-06-12 02:45:02 +02:00
|
|
|
#include <algorithm>
|
2011-11-07 06:24:46 +01:00
|
|
|
#endif
|
2007-04-22 23:59:35 +02:00
|
|
|
|
2011-06-12 02:45:02 +02:00
|
|
|
class PthreadMutexLocker {
|
|
|
|
pthread_mutex_t &mutex;
|
2007-04-22 23:59:35 +02:00
|
|
|
|
2011-06-12 02:45:02 +02:00
|
|
|
PthreadMutexLocker(const PthreadMutexLocker &); // uncopyable
|
|
|
|
PthreadMutexLocker(); // no default
|
2007-04-22 23:59:35 +02:00
|
|
|
|
2011-06-12 02:45:02 +02:00
|
|
|
public:
|
|
|
|
explicit PthreadMutexLocker(pthread_mutex_t &mutex) : mutex(mutex)
|
|
|
|
{
|
|
|
|
pthread_mutex_lock(&mutex);
|
|
|
|
}
|
2007-04-22 23:59:35 +02:00
|
|
|
|
2011-06-12 02:45:02 +02:00
|
|
|
~PthreadMutexLocker()
|
|
|
|
{
|
|
|
|
pthread_mutex_unlock(&mutex);
|
|
|
|
}
|
2007-04-22 23:59:35 +02:00
|
|
|
|
2011-06-12 02:45:02 +02:00
|
|
|
int WaitCondition(pthread_cond_t &cond)
|
|
|
|
{
|
|
|
|
return pthread_cond_wait(&cond, &mutex);
|
|
|
|
}
|
2007-04-22 23:59:35 +02:00
|
|
|
|
2011-06-12 02:45:02 +02:00
|
|
|
int WaitConditionTimeout(pthread_cond_t &cond, int ms)
|
|
|
|
{
|
|
|
|
timespec abstime;
|
|
|
|
clock_gettime(CLOCK_REALTIME, &abstime);
|
|
|
|
abstime.tv_nsec += ms * 1000000;
|
|
|
|
return pthread_cond_timedwait(&cond, &mutex, &abstime);
|
2007-04-22 23:59:35 +02:00
|
|
|
}
|
2011-06-12 02:45:02 +02:00
|
|
|
};
|
2007-04-22 23:59:35 +02:00
|
|
|
|
|
|
|
|
2011-06-12 02:45:02 +02:00
|
|
|
class ScopedAliveFlag {
|
|
|
|
volatile bool &flag;
|
2007-04-22 23:59:35 +02:00
|
|
|
|
2011-06-12 02:45:02 +02:00
|
|
|
ScopedAliveFlag(const ScopedAliveFlag &); // uncopyable
|
|
|
|
ScopedAliveFlag(); // no default
|
2007-04-22 23:59:35 +02:00
|
|
|
|
2011-06-12 02:45:02 +02:00
|
|
|
public:
|
|
|
|
explicit ScopedAliveFlag(volatile bool &var) : flag(var) { flag = true; }
|
|
|
|
~ScopedAliveFlag() { flag = false; }
|
|
|
|
};
|
2007-04-26 20:34:36 +02:00
|
|
|
|
2007-04-25 00:29:27 +02:00
|
|
|
|
2011-06-12 02:45:02 +02:00
|
|
|
struct PlaybackState {
|
|
|
|
pthread_mutex_t mutex;
|
|
|
|
pthread_cond_t cond;
|
2007-04-22 23:59:35 +02:00
|
|
|
|
2011-06-12 02:45:02 +02:00
|
|
|
volatile bool playing;
|
|
|
|
volatile bool alive;
|
2007-04-22 23:59:35 +02:00
|
|
|
|
2011-06-12 02:45:02 +02:00
|
|
|
volatile bool signal_start;
|
|
|
|
volatile bool signal_stop;
|
|
|
|
volatile bool signal_close;
|
|
|
|
volatile bool signal_volume;
|
2007-04-22 23:59:35 +02:00
|
|
|
|
2011-06-12 02:45:02 +02:00
|
|
|
volatile double volume;
|
|
|
|
volatile int64_t start_position;
|
|
|
|
volatile int64_t end_position;
|
2007-04-26 22:11:48 +02:00
|
|
|
|
2011-06-12 02:45:02 +02:00
|
|
|
AudioProvider *provider;
|
|
|
|
std::string device_name;
|
2007-04-22 23:59:35 +02:00
|
|
|
|
2011-06-12 02:45:02 +02:00
|
|
|
int64_t last_position;
|
|
|
|
timespec last_position_time;
|
|
|
|
|
|
|
|
PlaybackState()
|
|
|
|
{
|
|
|
|
pthread_mutex_init(&mutex, 0);
|
|
|
|
pthread_cond_init(&cond, 0);
|
|
|
|
|
|
|
|
Reset();
|
|
|
|
volume = 1.0;
|
2007-04-26 20:34:36 +02:00
|
|
|
}
|
2010-06-09 01:21:39 +02:00
|
|
|
|
2011-06-12 02:45:02 +02:00
|
|
|
~PlaybackState()
|
|
|
|
{
|
|
|
|
pthread_cond_destroy(&cond);
|
|
|
|
pthread_mutex_destroy(&mutex);
|
2007-04-26 20:34:36 +02:00
|
|
|
}
|
2011-06-12 02:45:02 +02:00
|
|
|
|
|
|
|
void Reset()
|
|
|
|
{
|
|
|
|
playing = false;
|
|
|
|
alive = false;
|
|
|
|
signal_start = false;
|
|
|
|
signal_stop = false;
|
|
|
|
signal_close = false;
|
|
|
|
signal_volume = false;
|
|
|
|
start_position = 0;
|
|
|
|
end_position = 0;
|
|
|
|
last_position = 0;
|
|
|
|
provider = 0;
|
2007-04-26 20:34:36 +02:00
|
|
|
}
|
2011-06-12 02:45:02 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
void *playback_thread(void *arg)
|
|
|
|
{
|
|
|
|
// This is exception-free territory!
|
|
|
|
// Return a pointer to a static string constant describing the error, or 0 on no error
|
|
|
|
PlaybackState &ps = *(PlaybackState*)arg;
|
|
|
|
|
|
|
|
PthreadMutexLocker ml(ps.mutex);
|
|
|
|
ScopedAliveFlag alive_flag(ps.alive);
|
|
|
|
|
|
|
|
snd_pcm_t *pcm = 0;
|
|
|
|
if (snd_pcm_open(&pcm, ps.device_name.c_str(), SND_PCM_STREAM_PLAYBACK, 0) != 0)
|
2011-11-07 06:24:46 +01:00
|
|
|
return (void*)"snd_pcm_open";
|
2011-06-12 02:45:02 +02:00
|
|
|
printf("alsa_player: opened pcm\n");
|
|
|
|
|
|
|
|
do_setup:
|
|
|
|
snd_pcm_format_t pcm_format;
|
|
|
|
switch (ps.provider->GetBytesPerSample())
|
|
|
|
{
|
|
|
|
case 1:
|
|
|
|
printf("alsa_player: format U8\n");
|
|
|
|
pcm_format = SND_PCM_FORMAT_U8;
|
|
|
|
break;
|
|
|
|
case 2:
|
|
|
|
printf("alsa_player: format S16_LE\n");
|
|
|
|
pcm_format = SND_PCM_FORMAT_S16_LE;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
snd_pcm_close(pcm);
|
2011-11-07 06:24:46 +01:00
|
|
|
return (void*)"snd_pcm_format_t";
|
2007-04-22 23:59:35 +02:00
|
|
|
}
|
2011-06-12 02:45:02 +02:00
|
|
|
if (snd_pcm_set_params(pcm,
|
|
|
|
pcm_format,
|
|
|
|
SND_PCM_ACCESS_RW_INTERLEAVED,
|
|
|
|
ps.provider->GetChannels(),
|
|
|
|
ps.provider->GetSampleRate(),
|
|
|
|
1, // allow resample
|
|
|
|
100*1000 // 100 milliseconds latency
|
|
|
|
) != 0)
|
2011-11-07 06:24:46 +01:00
|
|
|
return (void*)"snd_pcm_set_params";
|
2011-06-12 02:45:02 +02:00
|
|
|
printf("alsa_player: set pcm params\n");
|
|
|
|
|
|
|
|
size_t framesize = ps.provider->GetChannels() * ps.provider->GetBytesPerSample();
|
|
|
|
|
|
|
|
ps.signal_close = false;
|
|
|
|
while (ps.signal_close == false)
|
|
|
|
{
|
|
|
|
// Wait for condition to trigger
|
|
|
|
if (!ps.signal_start)
|
|
|
|
ml.WaitCondition(ps.cond);
|
|
|
|
printf("alsa_player: outer loop, condition happened\n");
|
|
|
|
|
|
|
|
if (ps.signal_start == false || ps.end_position <= ps.start_position)
|
|
|
|
{
|
2012-01-22 19:18:07 +01:00
|
|
|
printf("alsa_player: nothing to play, rewaiting\n");
|
|
|
|
ps.signal_start = false;
|
2011-06-12 02:45:02 +02:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
printf("alsa_player: starting playback\n");
|
|
|
|
int64_t position = ps.start_position;
|
|
|
|
|
|
|
|
// Playback position
|
|
|
|
ps.last_position = position;
|
|
|
|
clock_gettime(CLOCK_REALTIME, &ps.last_position_time);
|
|
|
|
|
|
|
|
// Initial buffer-fill
|
|
|
|
snd_pcm_sframes_t avail = std::min(snd_pcm_avail(pcm), (snd_pcm_sframes_t)(ps.end_position-position));
|
|
|
|
char *buf = new char[avail*framesize];
|
|
|
|
ps.provider->GetAudioWithVolume(buf, position, avail, ps.volume);
|
|
|
|
snd_pcm_sframes_t written = 0;
|
|
|
|
while (written <= 0)
|
|
|
|
{
|
|
|
|
written = snd_pcm_writei(pcm, buf, avail);
|
|
|
|
if (written == -ESTRPIPE)
|
|
|
|
{
|
|
|
|
snd_pcm_recover(pcm, written, 0);
|
|
|
|
}
|
|
|
|
else if (written <= 0)
|
|
|
|
{
|
|
|
|
delete[] buf;
|
|
|
|
snd_pcm_close(pcm);
|
|
|
|
printf("alsa_player: error filling buffer\n");
|
2011-11-07 06:24:46 +01:00
|
|
|
return (void*)"snd_pcm_writei";
|
2011-06-12 02:45:02 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
delete[] buf;
|
|
|
|
position += written;
|
|
|
|
|
|
|
|
// Start playback
|
|
|
|
printf("alsa_player: initial buffer filled, hitting start\n");
|
|
|
|
snd_pcm_start(pcm);
|
|
|
|
|
|
|
|
ps.signal_start = false;
|
|
|
|
ps.signal_stop = false;
|
|
|
|
|
|
|
|
while (ps.signal_stop == false)
|
|
|
|
{
|
|
|
|
ScopedAliveFlag playing_flag(ps.playing);
|
|
|
|
|
|
|
|
// Sleep a bit, or until an event
|
|
|
|
ml.WaitConditionTimeout(ps.cond, 50);
|
|
|
|
//printf("alsa_player: playback loop, out of wait\n");
|
|
|
|
|
|
|
|
// Check for stop signal
|
|
|
|
if (ps.signal_stop == true)
|
|
|
|
{
|
|
|
|
printf("alsa_player: playback loop, stop signal\n");
|
|
|
|
snd_pcm_drop(pcm);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Playback position
|
|
|
|
snd_pcm_sframes_t delay;
|
|
|
|
if (snd_pcm_delay(pcm, &delay) == 0)
|
|
|
|
{
|
|
|
|
ps.last_position = position - delay;
|
|
|
|
clock_gettime(CLOCK_REALTIME, &ps.last_position_time);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Fill buffer
|
|
|
|
avail = std::min(snd_pcm_avail(pcm), (snd_pcm_sframes_t)(ps.end_position-position));
|
|
|
|
buf = new char[avail*framesize];
|
|
|
|
ps.provider->GetAudioWithVolume(buf, position, avail, ps.volume);
|
|
|
|
written = 0;
|
|
|
|
while (written <= 0)
|
|
|
|
{
|
|
|
|
written = snd_pcm_writei(pcm, buf, avail);
|
|
|
|
if (written == -ESTRPIPE || written == -EPIPE)
|
|
|
|
{
|
|
|
|
snd_pcm_recover(pcm, written, 0);
|
|
|
|
}
|
|
|
|
else if (written == 0)
|
|
|
|
{
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
else if (written < 0)
|
|
|
|
{
|
|
|
|
delete[] buf;
|
|
|
|
snd_pcm_close(pcm);
|
2011-11-07 06:24:46 +01:00
|
|
|
printf("alsa_player: error filling buffer, written=%d\n", (int)written);
|
|
|
|
return (void*)"snd_pcm_writei";
|
2011-06-12 02:45:02 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
delete[] buf;
|
|
|
|
position += written;
|
|
|
|
//printf("alsa_player: playback loop, filled buffer\n");
|
|
|
|
|
|
|
|
// Check for end of playback
|
|
|
|
if (position >= ps.end_position)
|
|
|
|
{
|
|
|
|
printf("alsa_player: playback loop, past end, draining\n");
|
|
|
|
snd_pcm_drain(pcm);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
ps.signal_stop = false;
|
|
|
|
printf("alsa_player: out of playback loop\n");
|
|
|
|
|
|
|
|
switch (snd_pcm_state(pcm))
|
|
|
|
{
|
|
|
|
case SND_PCM_STATE_OPEN:
|
|
|
|
// no clue what could have happened here, but start over
|
|
|
|
ps.signal_start = false;
|
|
|
|
ps.signal_stop = false;
|
|
|
|
goto do_setup;
|
|
|
|
|
|
|
|
case SND_PCM_STATE_SETUP:
|
|
|
|
// we lost the preparedness?
|
|
|
|
snd_pcm_prepare(pcm);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case SND_PCM_STATE_DISCONNECTED:
|
|
|
|
// lost device, close the handle and return error
|
|
|
|
snd_pcm_close(pcm);
|
2011-11-07 06:24:46 +01:00
|
|
|
return (void*)"SND_PCM_STATE_DISCONNECTED";
|
2007-04-22 23:59:35 +02:00
|
|
|
|
2011-06-12 02:45:02 +02:00
|
|
|
default:
|
|
|
|
// everything else should either be fine or impossible (here)
|
|
|
|
break;
|
|
|
|
}
|
2007-04-22 23:59:35 +02:00
|
|
|
}
|
2011-06-12 02:45:02 +02:00
|
|
|
ps.signal_close = false;
|
|
|
|
printf("alsa_player: out of outer loop\n");
|
|
|
|
|
|
|
|
snd_pcm_close(pcm);
|
2007-04-25 00:29:27 +02:00
|
|
|
|
2011-06-12 02:45:02 +02:00
|
|
|
return 0;
|
2007-04-22 23:59:35 +02:00
|
|
|
}
|
|
|
|
|
2011-06-12 02:45:02 +02:00
|
|
|
|
|
|
|
AlsaPlayer::AlsaPlayer()
|
2011-11-07 06:24:46 +01:00
|
|
|
: ps(new PlaybackState)
|
2007-04-22 23:59:35 +02:00
|
|
|
{
|
2011-06-12 02:45:02 +02:00
|
|
|
open = false;
|
|
|
|
}
|
2007-04-22 23:59:35 +02:00
|
|
|
|
|
|
|
|
2011-06-12 02:45:02 +02:00
|
|
|
AlsaPlayer::~AlsaPlayer()
|
|
|
|
{
|
|
|
|
CloseStream();
|
|
|
|
}
|
2007-04-22 23:59:35 +02:00
|
|
|
|
|
|
|
|
2011-06-12 02:45:02 +02:00
|
|
|
void AlsaPlayer::OpenStream()
|
|
|
|
{
|
|
|
|
if (open) return;
|
|
|
|
|
|
|
|
CloseStream();
|
|
|
|
|
2011-11-07 06:24:46 +01:00
|
|
|
ps->Reset();
|
|
|
|
ps->provider = GetProvider();
|
2007-04-25 00:29:27 +02:00
|
|
|
|
2011-06-12 02:45:02 +02:00
|
|
|
wxString device_name = lagi_wxString(OPT_GET("Player/Audio/ALSA/Device")->GetString());
|
2011-11-07 06:24:46 +01:00
|
|
|
ps->device_name = std::string(device_name.utf8_str());
|
2010-01-15 23:58:51 +01:00
|
|
|
|
2011-11-07 06:24:46 +01:00
|
|
|
if (pthread_create(&thread, 0, &playback_thread, ps.get()) == 0)
|
2011-06-12 02:45:02 +02:00
|
|
|
{
|
|
|
|
open = true;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2012-01-08 02:33:39 +01:00
|
|
|
throw agi::AudioPlayerOpenError("AlsaPlayer: Creating the playback thread failed", 0);
|
2007-04-25 00:29:27 +02:00
|
|
|
}
|
2007-04-22 23:59:35 +02:00
|
|
|
}
|
|
|
|
|
2011-06-12 02:45:02 +02:00
|
|
|
|
2007-04-25 00:29:27 +02:00
|
|
|
void AlsaPlayer::CloseStream()
|
2007-04-22 23:59:35 +02:00
|
|
|
{
|
2007-04-25 00:29:27 +02:00
|
|
|
if (!open) return;
|
|
|
|
|
2011-06-12 02:45:02 +02:00
|
|
|
{
|
2011-11-07 06:24:46 +01:00
|
|
|
PthreadMutexLocker ml(ps->mutex);
|
|
|
|
ps->signal_stop = true;
|
|
|
|
ps->signal_close = true;
|
2011-06-12 02:45:02 +02:00
|
|
|
printf("AlsaPlayer: close stream, stop+close signal\n");
|
2011-11-07 06:24:46 +01:00
|
|
|
pthread_cond_signal(&ps->cond);
|
2011-06-12 02:45:02 +02:00
|
|
|
}
|
2007-04-25 00:29:27 +02:00
|
|
|
|
2011-06-12 02:45:02 +02:00
|
|
|
pthread_join(thread, 0); // FIXME: check for errors
|
2007-04-25 00:29:27 +02:00
|
|
|
|
|
|
|
open = false;
|
2007-04-22 23:59:35 +02:00
|
|
|
}
|
|
|
|
|
2011-06-12 02:45:02 +02:00
|
|
|
|
|
|
|
void AlsaPlayer::Play(int64_t start, int64_t count)
|
2007-04-22 23:59:35 +02:00
|
|
|
{
|
2011-06-12 02:45:02 +02:00
|
|
|
OpenStream();
|
|
|
|
|
|
|
|
{
|
2011-11-07 06:24:46 +01:00
|
|
|
PthreadMutexLocker ml(ps->mutex);
|
|
|
|
ps->signal_start = true;
|
|
|
|
ps->signal_stop = true; // make sure to stop any ongoing playback first
|
|
|
|
ps->start_position = start;
|
|
|
|
ps->end_position = start + count;
|
|
|
|
pthread_cond_signal(&ps->cond);
|
2007-04-25 00:29:27 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
if (displayTimer && !displayTimer->IsRunning()) displayTimer->Start(15);
|
2007-04-22 23:59:35 +02:00
|
|
|
}
|
|
|
|
|
2011-06-12 02:45:02 +02:00
|
|
|
|
2007-04-25 00:29:27 +02:00
|
|
|
void AlsaPlayer::Stop(bool timerToo)
|
2007-04-22 23:59:35 +02:00
|
|
|
{
|
2007-04-25 00:29:27 +02:00
|
|
|
if (!open) return;
|
|
|
|
|
2011-06-12 02:45:02 +02:00
|
|
|
{
|
2011-11-07 06:24:46 +01:00
|
|
|
PthreadMutexLocker ml(ps->mutex);
|
|
|
|
ps->signal_stop = true;
|
2011-06-12 02:45:02 +02:00
|
|
|
printf("AlsaPlayer: stop stream, stop signal\n");
|
2011-11-07 06:24:46 +01:00
|
|
|
pthread_cond_signal(&ps->cond);
|
2011-06-12 02:45:02 +02:00
|
|
|
}
|
2007-04-25 00:29:27 +02:00
|
|
|
|
2011-06-12 02:45:02 +02:00
|
|
|
if (timerToo && displayTimer) {
|
|
|
|
displayTimer->Stop();
|
|
|
|
}
|
2007-04-22 23:59:35 +02:00
|
|
|
}
|
|
|
|
|
2007-04-25 00:29:27 +02:00
|
|
|
bool AlsaPlayer::IsPlaying()
|
2007-04-22 23:59:35 +02:00
|
|
|
{
|
2011-11-07 06:24:46 +01:00
|
|
|
return open && ps->playing;
|
2007-04-22 23:59:35 +02:00
|
|
|
}
|
|
|
|
|
2011-06-12 02:45:02 +02:00
|
|
|
|
2007-08-31 16:11:35 +02:00
|
|
|
void AlsaPlayer::SetEndPosition(int64_t pos)
|
2007-04-22 23:59:35 +02:00
|
|
|
{
|
2011-06-12 02:45:02 +02:00
|
|
|
if (!open) return;
|
2011-11-07 06:24:46 +01:00
|
|
|
PthreadMutexLocker ml(ps->mutex);
|
|
|
|
ps->end_position = pos;
|
2007-04-22 23:59:35 +02:00
|
|
|
}
|
|
|
|
|
2011-06-12 02:45:02 +02:00
|
|
|
|
2007-08-31 16:11:35 +02:00
|
|
|
void AlsaPlayer::SetCurrentPosition(int64_t pos)
|
2007-04-22 23:59:35 +02:00
|
|
|
{
|
2011-06-12 02:45:02 +02:00
|
|
|
if (!open) return;
|
|
|
|
|
2011-11-07 06:24:46 +01:00
|
|
|
PthreadMutexLocker ml(ps->mutex);
|
2011-06-12 02:45:02 +02:00
|
|
|
|
2011-11-07 06:24:46 +01:00
|
|
|
if (!ps->playing) return;
|
2011-06-12 02:45:02 +02:00
|
|
|
|
2011-11-07 06:24:46 +01:00
|
|
|
ps->start_position = pos;
|
|
|
|
ps->signal_start = true;
|
|
|
|
ps->signal_stop = true;
|
2011-06-12 02:45:02 +02:00
|
|
|
printf("AlsaPlayer: set position, stop+start signal\n");
|
2011-11-07 06:24:46 +01:00
|
|
|
pthread_cond_signal(&ps->cond);
|
2007-04-22 23:59:35 +02:00
|
|
|
}
|
|
|
|
|
2007-08-31 16:11:35 +02:00
|
|
|
int64_t AlsaPlayer::GetStartPosition()
|
2007-04-22 23:59:35 +02:00
|
|
|
{
|
2011-06-12 02:45:02 +02:00
|
|
|
if (!open) return 0;
|
2011-11-07 06:24:46 +01:00
|
|
|
return ps->start_position;
|
2007-04-22 23:59:35 +02:00
|
|
|
}
|
|
|
|
|
2007-08-31 16:11:35 +02:00
|
|
|
int64_t AlsaPlayer::GetEndPosition()
|
2007-04-22 23:59:35 +02:00
|
|
|
{
|
2011-06-12 02:45:02 +02:00
|
|
|
if (!open) return 0;
|
2011-11-07 06:24:46 +01:00
|
|
|
return ps->end_position;
|
2007-04-22 23:59:35 +02:00
|
|
|
}
|
|
|
|
|
2011-06-12 02:45:02 +02:00
|
|
|
|
2007-08-31 16:11:35 +02:00
|
|
|
int64_t AlsaPlayer::GetCurrentPosition()
|
2007-04-22 23:59:35 +02:00
|
|
|
{
|
2011-06-12 02:45:02 +02:00
|
|
|
if (!open) return 0;
|
|
|
|
|
|
|
|
int64_t lastpos;
|
|
|
|
timespec lasttime;
|
|
|
|
int64_t samplerate;
|
|
|
|
|
|
|
|
{
|
2011-11-07 06:24:46 +01:00
|
|
|
//PthreadMutexLocker ml(ps->mutex);
|
|
|
|
lastpos = ps->last_position;
|
|
|
|
lasttime = ps->last_position_time;
|
|
|
|
samplerate = ps->provider->GetSampleRate();
|
2011-06-12 02:45:02 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
timespec now;
|
|
|
|
clock_gettime(CLOCK_REALTIME, &now);
|
|
|
|
|
|
|
|
const double NANO = 1000000000; // nano- is 10^-9
|
|
|
|
|
|
|
|
double now_sec = now.tv_sec + now.tv_nsec/NANO;
|
|
|
|
double last_sec = lasttime.tv_sec + lasttime.tv_nsec/NANO;
|
|
|
|
double diff_sec = now_sec - last_sec;
|
|
|
|
|
|
|
|
int64_t pos = lastpos + (int64_t)(diff_sec * samplerate);
|
|
|
|
//printf("AlsaPlayer: current position = %lld\n", pos);
|
|
|
|
|
|
|
|
return pos;
|
2007-04-22 23:59:35 +02:00
|
|
|
}
|
|
|
|
|
2011-06-12 02:45:02 +02:00
|
|
|
void AlsaPlayer::SetVolume(double vol)
|
2007-04-22 23:59:35 +02:00
|
|
|
{
|
2011-06-12 02:45:02 +02:00
|
|
|
if (!open) return;
|
2011-11-07 06:24:46 +01:00
|
|
|
PthreadMutexLocker ml(ps->mutex);
|
|
|
|
ps->volume = vol;
|
|
|
|
ps->signal_volume = true;
|
|
|
|
pthread_cond_signal(&ps->cond);
|
2011-06-12 02:45:02 +02:00
|
|
|
}
|
2007-04-25 00:29:27 +02:00
|
|
|
|
|
|
|
|
2011-06-12 02:45:02 +02:00
|
|
|
double AlsaPlayer::GetVolume()
|
|
|
|
{
|
|
|
|
if (!open) return 1.0;
|
2011-11-07 06:24:46 +01:00
|
|
|
PthreadMutexLocker ml(ps->mutex);
|
|
|
|
return ps->volume;
|
2007-04-22 23:59:35 +02:00
|
|
|
}
|
|
|
|
|
2008-01-21 21:57:20 +01:00
|
|
|
#endif // WITH_ALSA
|