45fan.com - 路饭网

搜索: 您的位置主页 > 网络频道 > 阅读资讯:DirectSound之操作缓冲区的方法

DirectSound之操作缓冲区的方法

2016-09-03 11:12:35 来源:www.45fan.com 【

DirectSound之操作缓冲区的方法

填充和播放静态缓冲区

向一个静态缓冲区载入数据是包含三个步骤:
1.使用IDirectSoundBuffer8::Lock将整个缓冲区锁定。你指定缓冲区中你打算开始写的偏移位置(通常为0),并返回该点的内存地址。
2.使用标准的内存拷贝程序将音频数据写入返回的地址中。
3.使用IDirectSoundBuffer8::Unlock为缓冲区解锁。

下面的例子显示了这些步骤,其中lpdsbStatic是一个IDirectSoundBuffer8接口指针,pbData是一个数据源地址:

DirectSound之操作缓冲区的方法LPVOIDlpvWrite;
DirectSound之操作缓冲区的方法DWORDdwLength;
DirectSound之操作缓冲区的方法
DirectSound之操作缓冲区的方法
if(DS_OK==lpdsbStatic->
Lock(
DirectSound之操作缓冲区的方法
0,//Offsetatwhichtostartlock.

DirectSound之操作缓冲区的方法0,//Sizeoflock;ignoredbecauseofflag.
DirectSound之操作缓冲区的方法&lpvWrite,//Getsaddressoffirstpartoflock.
DirectSound之操作缓冲区的方法&dwLength,//Getssizeoffirstpartoflock.
DirectSound之操作缓冲区的方法NULL,//Addressofwraparoundnotneeded.
DirectSound之操作缓冲区的方法NULL,//Sizeofwraparoundnotneeded.
DirectSound之操作缓冲区的方法DSBLOCK_ENTIREBUFFER))//Flag.
DirectSound之操作缓冲区的方法DirectSound之操作缓冲区的方法{
DirectSound之操作缓冲区的方法memcpy(lpvWrite,pbData,dwLength);
DirectSound之操作缓冲区的方法lpdsbStatic
->
Unlock(
DirectSound之操作缓冲区的方法lpvWrite,
//Addressoflockstart.

DirectSound之操作缓冲区的方法dwLength,//Sizeoflock.
DirectSound之操作缓冲区的方法NULL,//Nowraparoundportion.
DirectSound之操作缓冲区的方法0);//Nowraparoundsize.
DirectSound之操作缓冲区的方法}

DirectSound之操作缓冲区的方法else
DirectSound之操作缓冲区的方法(
DirectSound之操作缓冲区的方法ErrorHandler();
//Adderror-handlinghere.
DirectSound之操作缓冲区的方法}

调用IDirectSoundBuffer8::Play播放缓冲区,如下面的例子:

DirectSound之操作缓冲区的方法lpdsbStatic->SetCurrentPosition(0);
DirectSound之操作缓冲区的方法HRESULThr
=lpdsbStatic->
Play(
DirectSound之操作缓冲区的方法
0,//Unused.

DirectSound之操作缓冲区的方法0,//Priorityforvoicemanagement.
DirectSound之操作缓冲区的方法0);//Flags.
DirectSound之操作缓冲区的方法if(FAILED(hr))
DirectSound之操作缓冲区的方法(
DirectSound之操作缓冲区的方法ErrorHandler();
//Adderror-handlinghere.

DirectSound之操作缓冲区的方法}

因为这个例子中没有设置DSBPLAY_LOOPING标识,当缓冲区到达末尾时自动停止播放。你也可以使用IDirectSoundBuffer8::Stop过早停止它。当你过早停止一个缓冲区时,播放指针的位置仍然停留在那里。因此例子中调用IDirectSoundBuffer8::SetCurrentPosition,确保缓冲区从起始位置播放。

使用流缓冲区

一个流缓冲区播放一长段声音时,不能一次将所有声音装入缓冲区。当缓冲区播放时,旧数据周期性地被新数据替换。调用IDirectSoundBuffer8::Play方法播放流缓冲区,设置dsFlags参数为DSBPLAY_LOOPING。调用IDirectSoundBuffer8::Stop方法停止播放。这个方法立即停止缓冲区,因此你需要确保所有数据已经被播放。这个可以通过轮流检查播放位置或设置通知位置来实现。

流入一个缓冲区需要以下步骤:
1.确定缓冲区是否已做好接收新数据的准备。这个可以通过轮流检查播放指针或等待通知来实现。
2.使用IDirectSoundBuffer8::Lock锁定缓冲区的一部分。这个方法返回一个或两个地址,从该地址数据能够被立刻写入。
3.使用标准内存拷贝程序将音频数据写入返回的地址中。
4.使用IDirectSoundBuffer8::Unlock为缓冲区解锁。
IDirectSoundBuffer8::Lock可能返回两个地址的原因是你能够锁定多达缓冲区大小的任意字节数,而忽略起始点。例如,假设你在一个40 000字节缓冲区的20 000字节处开始锁定30 000字节。这时你必须进行两次独立内存拷贝。

虽然可以锁定整个缓冲区,但是在缓冲区播放时你不能这么做。通常你每次只更新缓冲区的一小部分。例如,在播放指针到达缓冲区的四分之二时,你能够锁定缓冲区的四分之一部分并写入数据。你永远不能对位于播放指针和写指针之间的缓冲区部分进行写操作。

下面的函数向一个声音缓冲区写数据,起始位置由dwOffset传入:

DirectSound之操作缓冲区的方法BOOLAppWriteDataToBuffer(
DirectSound之操作缓冲区的方法LPDIRECTSOUNDBUFFER8lpDsb,
//Thebuffer.

DirectSound之操作缓冲区的方法DWORDdwOffset,//Ourownwritecursor.
DirectSound之操作缓冲区的方法LPBYTElpbSoundData,//Startofourdata.
DirectSound之操作缓冲区的方法DWORDdwSoundBytes)//Sizeofblocktocopy.
DirectSound之操作缓冲区的方法DirectSound之操作缓冲区的方法{
DirectSound之操作缓冲区的方法LPVOIDlpvPtr1;
DirectSound之操作缓冲区的方法DWORDdwBytes1;
DirectSound之操作缓冲区的方法LPVOIDlpvPtr2;
DirectSound之操作缓冲区的方法DWORDdwBytes2;
DirectSound之操作缓冲区的方法HRESULThr;
DirectSound之操作缓冲区的方法
DirectSound之操作缓冲区的方法
//
Obtainmemoryaddressofwriteblock.Thiswillbeintwoparts
DirectSound之操作缓冲区的方法
//iftheblockwrapsaround.

DirectSound之操作缓冲区的方法
DirectSound之操作缓冲区的方法hr=lpDsb->Lock(dwOffset,dwSoundBytes,&lpvPtr1,
DirectSound之操作缓冲区的方法
&dwBytes1,&lpvPtr2,&dwBytes2,0
);
DirectSound之操作缓冲区的方法
DirectSound之操作缓冲区的方法
//Ifthebufferwaslost,restoreandretrylock.

DirectSound之操作缓冲区的方法
DirectSound之操作缓冲区的方法if(DSERR_BUFFERLOST==hr)
DirectSound之操作缓冲区的方法DirectSound之操作缓冲区的方法
{
DirectSound之操作缓冲区的方法lpDsb
->
Restore();
DirectSound之操作缓冲区的方法hr
=lpDsb->
Lock(dwOffset,dwSoundBytes,
DirectSound之操作缓冲区的方法
&lpvPtr1,&
dwBytes1,
DirectSound之操作缓冲区的方法
&lpvPtr2,&dwBytes2,0
);
DirectSound之操作缓冲区的方法}

DirectSound之操作缓冲区的方法if(SUCCEEDED(hr))
DirectSound之操作缓冲区的方法DirectSound之操作缓冲区的方法
{
DirectSound之操作缓冲区的方法
//Writetopointers.

DirectSound之操作缓冲区的方法
DirectSound之操作缓冲区的方法CopyMemory(lpvPtr1,lpbSoundData,dwBytes1);
DirectSound之操作缓冲区的方法
if(NULL!=
lpvPtr2)
DirectSound之操作缓冲区的方法DirectSound之操作缓冲区的方法
{
DirectSound之操作缓冲区的方法CopyMemory(lpvPtr2,lpbSoundData
+
dwBytes1,dwBytes2);
DirectSound之操作缓冲区的方法}

DirectSound之操作缓冲区的方法
DirectSound之操作缓冲区的方法
//ReleasethedatabacktoDirectSound.

DirectSound之操作缓冲区的方法
DirectSound之操作缓冲区的方法hr=lpDsb->Unlock(lpvPtr1,dwBytes1,lpvPtr2,
DirectSound之操作缓冲区的方法dwBytes2);
DirectSound之操作缓冲区的方法
if
(SUCCEEDED(hr))
DirectSound之操作缓冲区的方法DirectSound之操作缓冲区的方法
{
DirectSound之操作缓冲区的方法
//Success.

DirectSound之操作缓冲区的方法returnTRUE;
DirectSound之操作缓冲区的方法}

DirectSound之操作缓冲区的方法}

DirectSound之操作缓冲区的方法
DirectSound之操作缓冲区的方法
//Lock,Unlock,orRestorefailed.

DirectSound之操作缓冲区的方法
DirectSound之操作缓冲区的方法returnFALSE;
DirectSound之操作缓冲区的方法}

 

 

本文地址:http://www.45fan.com/a/question/71644.html
Tags: 学习 笔记 DirectSound
编辑:路饭网
关于我们 | 联系我们 | 友情链接 | 网站地图 | Sitemap | App | 返回顶部