📄 soundcardpmo.cpp
字号:
/*____________________________________________________________________________
FreeAmp - The Free MP3 Player
Portions Copyright (C) 1998-1999 EMusic.com
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
This program 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 General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
$Id: soundcardpmo.cpp,v 1.1 2000/09/28 18:43:10 ijr Exp $
____________________________________________________________________________*/
/* system headers */
#include <stdlib.h>
#include <iostream.h>
#include <sys/ioctl.h>
#include <fcntl.h>
#include <errno.h>
#include <string.h>
#include <time.h>
#include <assert.h>
/* project headers */
#include <config.h>
#include "soundcardpmo.h"
#include "lmc.h"
#include "eventdata.h"
#include "facontext.h"
#include "log.h"
#define DB printf("%s:%d\n", __FILE__, __LINE__);
extern "C"
{
PhysicalMediaOutput *Initialize(FAContext *context)
{
return new SoundCardPMO(context);
}
}
SoundCardPMO::SoundCardPMO(FAContext *context) :
PhysicalMediaOutput(context)
{
m_properlyInitialized = false;
myInfo = new OutputInfo();
memset(myInfo, 0, sizeof(OutputInfo));
m_pBufferThread = NULL;
m_iOutputBufferSize = 0;
m_iTotalBytesWritten = 0;
m_iBytesPerSample = 0;
m_iLastFrame = -1;
m_iDataSize = 0;
outaudioport = (ALport)0;
audio_fd = -1;
if (!m_pBufferThread)
{
m_pBufferThread = Thread::CreateThread();
assert(m_pBufferThread);
m_pBufferThread->Create(SoundCardPMO::StartWorkerThread, this);
}
}
SoundCardPMO::~SoundCardPMO()
{
m_bExit = true;
m_pSleepSem->Signal();
m_pPauseSem->Signal();
if (m_pBufferThread)
{
m_pBufferThread->Join();
delete m_pBufferThread;
}
Reset(true);
if (outaudioport != (ALport) 0) {
ALcloseport(outaudioport);
outaudioport = (ALport)0;
}
if (myInfo)
{
delete myInfo;
myInfo = NULL;
}
}
void SoundCardPMO::SetVolume(int32 left, int32 right)
{ /*
int mixFd = open("/dev/mixer",O_RDWR);
int32 v;
if (mixFd != -1)
{
v = (right << 8) | left;
ioctl(mixFd, SOUND_MIXER_WRITE_PCM, &v);
close(mixFd);
} */
}
void SoundCardPMO::GetVolume(int32 &left, int32 &right)
{ /*
int mixFd = open("/dev/mixer",O_RDWR);
int volume = 0;
if (mixFd != -1)
{
ioctl(mixFd, SOUND_MIXER_READ_PCM, &volume);
close(mixFd);
}
right = (volume >> 8) & 0xFF;
left = volume & 0xFF; */
}
Error SoundCardPMO::Init(OutputInfo * info)
{
ALconfig config = ALnewconfig();
long pvbuffer[2];
m_properlyInitialized = false;
if (!info)
{
info = myInfo;
}
else
{
m_iDataSize = info->max_buffer_size;
}
pvbuffer[0] = AL_OUTPUT_RATE;
pvbuffer[1] = info->samples_per_second;
if (ALsetparams(AL_DEFAULT_DEVICE, pvbuffer, 2) < 0)
{
ReportError("Cannot set the soundcard's sampling speed.");
return (Error) pmoError_IOCTL_SNDCTL_DSP_SPEED;
}
int ret = -1;
if (info->bits_per_sample > 8)
ret = ALsetwidth(config, AL_SAMPLE_16);
else
ret = ALsetwidth(config, AL_SAMPLE_8);
if (ret < 0)
{
ReportError("The soundcard does not support 16 bit sample size.");
return (Error) pmoError_IOCTL_SNDCTL_DSP_SAMPLESIZE;
}
ret = -1;
if (info->number_of_channels == 2)
ret = ALsetchannels(config, AL_STEREO);
else
ret = ALsetchannels(config, AL_MONO);
if (ret < 0)
{
ReportError("Cannot set the soundcard to stereo.");
return (Error) pmoError_IOCTL_SNDCTL_DSP_STEREO;
}
ALsetqueuesize(config, m_iDataSize);
outaudioport = ALopenport("freeamp", "w", config);
if (outaudioport == (ALport)0)
{
ReportError("Couldn't open port.");
return (Error) pmoError_IOCTL_SNDCTL_DSP_STEREO;
}
audio_fd = ALgetfd(outaudioport);
channels = info->number_of_channels;
// configure the device:
int play_precision = info->bits_per_sample;
int play_stereo = channels - 1;
int play_sample_rate = info->samples_per_second;
memcpy(myInfo, info, sizeof(OutputInfo));
m_properlyInitialized = true;
// PORTING: The GETOSPACE ioctl determines how much space the kernel's
// output buffer has. Your OS may not have this.
m_iTotalFragments = 2048; /* arbitrary blah */
m_iOutputBufferSize = play_precision * m_iTotalFragments;
m_iBytesPerSample = info->number_of_channels * (info->bits_per_sample / 8);
return kError_NoErr;
}
Error SoundCardPMO::Reset(bool user_stop)
{
int a;
if (audio_fd <= 0)
return kError_NoErr;
if (user_stop)
{
ALcloseport(outaudioport);
outaudioport = (ALport)0;
Init(NULL);
}
else
{
//PORTING: DSP_SYNC blocks until the soundcard is done playing and
// then returns
if (audio_fd >= 0) {
fd_set write_fds;
FD_ZERO(&write_fds);
FD_SET(audio_fd, &write_fds);
select(audio_fd + 1, NULL, &write_fds, NULL, NULL);
}
}
return kError_NoErr;
}
// PORTING: This function returns when the sound card is done playing, or
// when exit or pause is signaled. Returns true if the card naturally ran
// out of things to play. False if m_bExit or m_bPause became true
bool SoundCardPMO::WaitForDrain(void)
{
audio_buf_info info;
for(; !m_bExit && !m_bPause; )
{
if (audio_fd >= 0) {
fd_set write_fds;
FD_ZERO(&write_fds);
FD_SET(audio_fd, &write_fds);
struct timeval tv;
tv.sec = 0;
tv.usec = 1000;
if (select(audio_fd + 1, NULL, &write_fds, NULL, &tv) > 0)
return true;
}
}
return false;
}
// PORTING: This is the bitchy function. In essence, this function is
// trying to figure out what samples are currently playing. Under linux
// you don't always know how many bytes have been played so far, so
// this function makes a best guess by keeping track of the
// total number of bytes fed to the card (m_iTotalBytesWritten).
// It uses that number minus the amount of data in the buffer to
// guess at which sample is currently playing. That info is converted
// into time and then set to the UI. Have fun!
void SoundCardPMO::HandleTimeInfoEvent(PMOTimeInfoEvent *pEvent)
{
MediaTimeInfoEvent *pmtpi;
int32 hours, minutes, seconds;
int iTotalTime = 0, iDataInBuffer;
audio_buf_info info;
if (pEvent->GetFrameNumber() != m_iLastFrame + 1)
{
m_iTotalBytesWritten = myInfo->samples_per_frame *
pEvent->GetFrameNumber() *
m_iBytesPerSample;
}
m_iLastFrame = pEvent->GetFrameNumber();
if (myInfo->samples_per_second <= 0 || pEvent->GetFrameNumber() < 2)
return;
iDataInBuffer = 0;
iTotalTime = (m_iTotalBytesWritten - iDataInBuffer) /
(m_iBytesPerSample * myInfo->samples_per_second);
iTotalTime %= 86400;
hours = iTotalTime / 3600;
minutes = (iTotalTime / 60) % 60;
seconds = iTotalTime % 60;
if (hours < 0 ||
minutes < 0 || minutes > 59 ||
seconds < 0 || seconds > 59)
return;
pmtpi = new MediaTimeInfoEvent(hours, minutes, seconds, 0,
iTotalTime, 0);
m_pTarget->AcceptEvent(pmtpi);
}
void SoundCardPMO::StartWorkerThread(void *pVoidBuffer)
{
((SoundCardPMO*)pVoidBuffer)->WorkerThread();
}
void SoundCardPMO::WorkerThread(void)
{
void *pBuffer;
Error eErr;
size_t iRet;
Event *pEvent;
audio_buf_info info;
bool bPerfWarn = false;
// Don't do anything until resume is called.
m_pPauseSem->Wait();
//CheckForBufferUp();
// Wait a specified prebuffer time...
PreBuffer();
for(; !m_bExit;)
{
if (m_bPause)
{
m_pPauseSem->Wait();
continue;
}
// Loop until we get an Init event from the LMC
if (!m_properlyInitialized)
{
pEvent = ((EventBuffer *)m_pInputBuffer)->GetEvent();
if (pEvent == NULL)
{
m_pLmc->Wake();
WasteTime();
continue;
}
if (pEvent->Type() == PMO_Init)
{
if (IsError(Init(((PMOInitEvent *)pEvent)->GetInfo())))
{
delete pEvent;
break;
}
}
delete pEvent;
continue;
}
// Set up reading a block from the buffer. If not enough bytes are
// available, sleep for a little while and try again.
for(;;)
{
eErr = ((EventBuffer *)m_pInputBuffer)->BeginRead(pBuffer,
m_iDataSize);
if (eErr == kError_EndOfStream || eErr == kError_Interrupt)
break;
if (eErr == kError_NoDataAvail)
{
m_pLmc->Wake();
CheckForBufferUp();
if (!bPerfWarn)
{
time_t t;
time(&t);
m_pContext->log->Log(LogPerf, "Output buffer underflow: %s",
ctime(&t));
bPerfWarn = true;
}
WasteTime();
continue;
}
// Is there an event pending that we need to take care of
// before we play this block of samples?
if (eErr == kError_EventPending)
{
pEvent = ((EventBuffer *)m_pInputBuffer)->PeekEvent();
if (pEvent == NULL)
continue;
if (pEvent->Type() == PMO_Quit &&
((EventBuffer *)m_pInputBuffer)->GetNumBytesInBuffer() > 0)
{
if (WaitForDrain())
{
m_pTarget->AcceptEvent(new Event(INFO_DoneOutputting));
return;
}
continue;
}
pEvent = ((EventBuffer *)m_pInputBuffer)->GetEvent();
if (pEvent->Type() == PMO_Init)
Init(((PMOInitEvent *)pEvent)->GetInfo());
if (pEvent->Type() == PMO_Reset)
Reset(false);
if (pEvent->Type() == PMO_Info)
HandleTimeInfoEvent((PMOTimeInfoEvent *)pEvent);
if (pEvent->Type() == PMO_Quit)
{
delete pEvent;
m_pTarget->AcceptEvent(new Event(INFO_DoneOutputting));
return;
}
delete pEvent;
continue;
}
if (IsError(eErr))
{
ReportError("Internal error occured.");
m_pContext->log->Error("Cannot read from buffer in PMO "
"worker tread: %d\n", eErr);
break;
}
bPerfWarn = false;
break;
}
if (m_bExit || m_bPause)
{
m_pInputBuffer->EndRead(0);
continue;
}
iRet = ALwritesamps(outaudioport, pBuffer, m_iDataSize);
if ((int)iRet < 0)
{
m_pInputBuffer->EndRead(0);
ReportError("Could not write sound data to the soundcard.");
m_pContext->log->Error("Failed to write to the soundcard: %s\n",
strerror(errno));
break;
}
m_iTotalBytesWritten += iRet;
m_pInputBuffer->EndRead(iRet);
m_pLmc->Wake();
UpdateBufferStatus();
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -