зеркало из https://github.com/mozilla/gecko-dev.git
Minor structural changes to nsSound, r=sfraser
This commit is contained in:
Родитель
02c4cf8433
Коммит
382502a6c1
|
@ -38,6 +38,7 @@ NS_IMPL_ISUPPORTS(nsSound, nsCOMTypeInfo<nsISound>::GetIID());
|
|||
nsSound::nsSound()
|
||||
{
|
||||
NS_INIT_REFCNT();
|
||||
mInited = PR_FALSE;
|
||||
}
|
||||
|
||||
nsSound::~nsSound()
|
||||
|
@ -46,6 +47,7 @@ nsSound::~nsSound()
|
|||
PR_Free( mPlayBuf );
|
||||
if (mBuffer)
|
||||
PR_Free( mBuffer );
|
||||
mInited = PR_FALSE;
|
||||
}
|
||||
|
||||
nsresult NS_NewSound(nsISound** aSound)
|
||||
|
@ -54,25 +56,41 @@ nsresult NS_NewSound(nsISound** aSound)
|
|||
if (!aSound)
|
||||
return NS_ERROR_NULL_POINTER;
|
||||
|
||||
nsSound** mySound;
|
||||
nsSound* mySound = nsnull;
|
||||
NS_NEWXPCOM(mySound, nsSound);
|
||||
if (!mySound)
|
||||
return NS_ERROR_OUT_OF_MEMORY;
|
||||
|
||||
*aSound = new nsSound();
|
||||
if (! *aSound)
|
||||
return NS_ERROR_OUT_OF_MEMORY;
|
||||
mySound = (nsSound **) aSound;
|
||||
(*mySound)->mBufferSize = 4098;
|
||||
(*mySound)->mBuffer = (char *) PR_Malloc( (*mySound)->mBufferSize );
|
||||
if ( (*mySound)->mBuffer == (char *) NULL )
|
||||
return NS_ERROR_OUT_OF_MEMORY;
|
||||
(*mySound)->mPlayBuf = (char *) NULL;
|
||||
NS_ADDREF(*aSound);
|
||||
nsresult rv = mySound->Init();
|
||||
if (NS_FAILED(rv)) {
|
||||
delete mySound;
|
||||
return rv;
|
||||
}
|
||||
|
||||
// QI does the addref
|
||||
return mySound->QueryInterface(NS_GET_IID(nsISound), (void**)aSound);
|
||||
|
||||
}
|
||||
|
||||
nsresult nsSound::Init()
|
||||
{
|
||||
return NS_OK;
|
||||
}
|
||||
|
||||
|
||||
NS_METHOD nsSound::Init(void)
|
||||
nsresult nsSound::AllocateBuffers()
|
||||
{
|
||||
return NS_OK;
|
||||
nsresult rv = NS_OK;
|
||||
if ( mInited == PR_TRUE )
|
||||
return( rv );
|
||||
mBufferSize = 4098;
|
||||
mBuffer = (char *) PR_Malloc( mBufferSize );
|
||||
if ( mBuffer == (char *) NULL ) {
|
||||
rv = NS_ERROR_OUT_OF_MEMORY;
|
||||
return( rv );
|
||||
}
|
||||
mPlayBuf = (char *) NULL;
|
||||
mInited = PR_TRUE;
|
||||
return rv;
|
||||
}
|
||||
|
||||
|
||||
|
@ -86,16 +104,19 @@ NS_METHOD nsSound::Beep()
|
|||
NS_METHOD nsSound::Play(nsIURI *aURI)
|
||||
{
|
||||
nsresult rv;
|
||||
nsIInputStream *inputStream;
|
||||
nsCOMPtr <nsIInputStream>inputStream;
|
||||
PRUint32 totalLen = 0;
|
||||
PRUint32 len;
|
||||
|
||||
if ( !mInited && NS_FAILED((rv = AllocateBuffers())) )
|
||||
return rv;
|
||||
|
||||
if ( mPlayBuf ) {
|
||||
::PlaySound(nsnull, nsnull, 0); // stop what might be playing so we can free
|
||||
PR_Free( this->mPlayBuf );
|
||||
this->mPlayBuf = (char *) NULL;
|
||||
}
|
||||
rv = NS_OpenURI(&inputStream, aURI);
|
||||
rv = NS_OpenURI(getter_AddRefs(inputStream), aURI);
|
||||
if (NS_FAILED(rv))
|
||||
return rv;
|
||||
do {
|
||||
|
@ -105,7 +126,6 @@ NS_METHOD nsSound::Play(nsIURI *aURI)
|
|||
if ( this->mPlayBuf == (char *) NULL ) {
|
||||
this->mPlayBuf = (char *) PR_Malloc( len );
|
||||
if ( this->mPlayBuf == (char *) NULL ) {
|
||||
NS_IF_RELEASE( inputStream );
|
||||
return NS_ERROR_OUT_OF_MEMORY;
|
||||
}
|
||||
memcpy( this->mPlayBuf, this->mBuffer, len );
|
||||
|
@ -113,7 +133,6 @@ NS_METHOD nsSound::Play(nsIURI *aURI)
|
|||
else {
|
||||
this->mPlayBuf = (char *) PR_Realloc( this->mPlayBuf, totalLen );
|
||||
if ( this->mPlayBuf == (char *) NULL ) {
|
||||
NS_IF_RELEASE( inputStream );
|
||||
return NS_ERROR_OUT_OF_MEMORY;
|
||||
}
|
||||
memcpy( this->mPlayBuf + (totalLen - len), this->mBuffer, len );
|
||||
|
@ -122,7 +141,6 @@ NS_METHOD nsSound::Play(nsIURI *aURI)
|
|||
} while (len > 0);
|
||||
if ( this->mPlayBuf != (char *) NULL )
|
||||
::PlaySound(this->mPlayBuf, nsnull, SND_MEMORY | SND_NODEFAULT | SND_ASYNC);
|
||||
NS_IF_RELEASE( inputStream );
|
||||
return NS_OK;
|
||||
}
|
||||
|
||||
|
|
|
@ -30,9 +30,12 @@ class nsSound : public nsISound {
|
|||
|
||||
nsSound();
|
||||
virtual ~nsSound();
|
||||
nsresult Init();
|
||||
nsresult AllocateBuffers();
|
||||
char *mPlayBuf;
|
||||
char *mBuffer;
|
||||
PRInt32 mBufferSize;
|
||||
PRBool mInited;
|
||||
NS_DECL_ISUPPORTS
|
||||
NS_DECL_NSISOUND
|
||||
};
|
||||
|
|
Загрузка…
Ссылка в новой задаче