You Are Here:

Community: Wiki

This page was last modified on 6 September 2009, at 18:34.

Audiostream playback

From Forum Nokia Wiki

Reviewer Approved   

Generally there are two opportunities to play back raw audio data on Symbian OS. We can use CMdaAudioPlayerUtility and MMdaAudioPlayerCallback, or CMdaAudioOutputStream and MMdaAudioOutputStreamCallback classes. The former requires the whole data audio data with a valid WAVE header (in the header are the bitrate, sampling frequency and length defined), the latter opens a stream and we can write to the stream anytime. Consequently the second solution is much more memory friendly; it is preferable especially in case of longer audio data. It may be also prefered in case of remote audiostream playback (e.g. streaming audio from the internet).

This article deals with the second solution, also, with audiostream playback. In the first part of the article the main idea and functionality of streaming playback is introduced and the second part discusses the occurring problems on devices. According to my findings, some of these problems have never been publish before.

Contents

The usage of CMdaAudioOutputStream and MMdaAudioPlayerCallback

The audio playback class must be inherited from MMdaAudioPlayerCallback. In this class we must reference a CMdaAudioOutputStream type object:

class CAudioStreamPlayer:public MMdaAudioPlayerCallback
{
public: //Constructor and Destructor
 
public: // Player functions
 
public: //functions derived from MMdaAudioPlayerCallback
 
private:
CMdaAudioOutputStream* iAudioOutputStream;
 
// Other data
// ...
}

Then we can instantiate an object:

TRAPD(err, iAudioOutputStream = CMdaAudioOutputStream::NewL(*this););
PanicIfError(err);

where *this is the inherited class from MMdaAudioPlayerCallback. Now we have to open the stream:

TMdaAudioDataSettings iStreamSettings;
iStreamSettings.iChannels = TMdaAudioDataSettings::EChannelsMono;
iStreamSettings.iSampleRate = TMdaAudioDataSettings::ESampleRate8000Hz;
iAudioOutputStream->Open(&iStreamSettings);

When the stream is opened, the MaoscOpenComplete(TInt aError) callback function is called, so we must implement it in our class. In this function we can start to write into the stream (CAudiostreamPlayer is derived from MMdaAudioPlayerCallback):

void CAudiostreamPlayer::MaoscOpenComplete(TInt aError)
{
if (aError == KErrNone)
{
// the stream is opened
iAudioOutputStream->WriteL(iSomeMono8khzRawAudioData);
}
}

When iSomeMono8khzRawAudioData is copied into the stream, the MaoscBufferCopied(TInt aError, const TDesC8& aBuffer) callback function is called, consequently it must also be implemented:

void CAudiostreamPlayer::MaoscBufferCopied(TInt aError, const TDesC8& aBuffer)
{
if (aError==KErrNone)
{
// if there is more data, then write it into the stream
if (iMoreData==ETrue)
{
iAudioOutputStream->WriteL(iSomeMono8khzRawAudioData);
}
}
}

(Note: aBuffer points to the copied buffer. aBuffer should not be used/deleted untill MaoscBufferCopied callback is obtained.)



When there is no more audio data, or the last audio data segment has been played, and new data wasn’t written into the stream, then the MaoscPlayComplete(TInt aError) callback function is called; it is also called in case of any error or if the CMdaAudioOutputStream::Stop() function was called:

void CAudiostreamPlayer::MaoscPlayComplete(TInt aError)
{
if (aError==KErrUnderflow)
{
if (iMoreData==ETrue)
{
iAudioOutputStream->WriteL(iSomeMono8khzRawAudioData);
}
else
{
// done
}
}
else if (aError==KErrCancel)
{
// stopped
}
}

We can stop playing anytime by calling:

iAudioOutputStream->Stop();

More information on functions and error codes can be found in the Symbian SDK documentation.



Device specific errors

The audiostream playback as described above works perfectly on the emulator, but unfortunaltey it does not work so on the devices. There are several major issues that are present on some devices. Developers must pay attention to these issues to successfully implement audiostream playback in their application. Most of these issues can be solved.

Missing MaoscPlayComplete() callback function

The MaoscPlayComplete() callback function is never called on 2nd edition devices (have not tested it on 3rd edition devices) in case of KErrUnderflow, so when we stop writing to the stream or when the speed of the audio playback is faster than the speed the buffer is written into the stream. The actual end of playback is indicated by MaoscBufferCopied() being called instead. We can check the identity of the buffer received by MaoscBufferCopied(), comparing it with the buffers in the stream (e.g. to see whether it is the last buffer or not). We can still achieve MaoscPlayComplete() to be called with aError==KErrCancel, if we call the CMdaAudioOutputStream::Stop() function.

Memory leaking in MaoscPlayComplete() callback function

The developer might like to destroy the CMdaAudioOutputStream* object (also iAudioOutputStream in the examples) in MaoscPlayComplet(), when the whole audio data has been played or stopped to free up memory. But if it is destroyed in MaoscPlayComplete(), then it leads to memory leaking.

(Note: on 2nd edition devices MaoscPlayComplet() callback function is called only if the CMdaAudioOutputStreamCallback::Stop() member function is previously called.)

MaoscOpenComplete() never called when reopening the stream

On some 2nd edition devices (have not tested on 3rd edition devices) the MaoscOpenComplete() callback function is not called if we reopen the stream, just like when we call the Open() function more than once. To overcome the problem we must reconstruct the stream each time before opening it:

if (iAudioOutputStream) delete iAudioOutputStream;
iAudioOutputStream = NULL; // In case the following NewL leaves
TRAPD(err, iAudioOutputStream = CMdaAudioOutputStream::NewL(*this););
PanicIfError(err);



Stop() causes crash if it is called in the callback functions

Developers may call the CMdaAudioOutputStream::Stop() function in MaoscBufferCopied() to reach MaoscPlayComplete(). But on some 2nd edition devices (have not tested on 3rd edition devices) the application freezes when the Stop() function is called in the callback functions. To avoid this problem, the Stop() function should not be called directly from the callbacks. A possible solution is to use CIdle object for calling the Stop() function. With the help of CIdle the Stop() function is called only when there are no higher priority active objects running. So we should create and start the CIdle object when normally we would call the Stop() function and call the Stop() function in the CIdle object.

iStop = CIdle::NewL(EPriorityIdle);
iStop->Start(TCallBack(BackgroundStop, this));
TInt CAudiostreamPlayer::BackgroundStop(TAny *aStream)
{
return ((CAudiostreamPlayer*)aStream)->Stop();
}
 
TBool CAudiostreamPlayer::Stop()
{
iAudioOutputStream->Stop();
return EFalse;
}



”Feature not supported!” error message while calling WriteL()

On some 2nd edition devices (not tested on 3rd edition devices) the Feature not supported! error message is displayed, when CMdaAudioOutputStream::WriteL() is called. It is caused by the inappropriate sampling rate settings. Some devices support 22 kHz, others does not support it. Check out the devices’ specification or try it on the device, and if the Feature not supported! error message is displayed, than set the sampling rate lower, 8 kHz might be a good solution.

(Note: the sampling rate can be set when opening the stream in TMdaAudioDataSettings::iSampleRate property or by CMdaAudioOutputStream::SetAudioPropertiesL(TInt aSampleRate, TInt aChannels).)

Memory leaking in MaoscBufferCopied() callback function

One might like to do some extra calculations in MaoscBufferCopied() callback function (e.g. MP3 decoding, downloading from the Internet, text-to-speech conversion, etc.). In this case it is favorable to do the calculations after the last audio data segment was written into the stream. Unfortunately it causes memory leaking on 2nd edition devices (have not tested on 3rd edition devices). We can easily reproduce the problem by putting a for loop after the CMdaAudioOutputStream::WriteL() function:

void CAudiostreamPlayer::MaoscPlayComplete(TInt aError)
{
if (aError==KErrUnderflow)
{
if (iMoreData==ETrue)
{
iAudioOutputStream->WriteL(iSomeMono8khzRawAudioData);
for (TInt k=0; k<100000; k++)
{
k++;
for (TInt l=0; l<100; l++)
{
k++;
}
k-=101;
}
 
}
else
{
// done
}
}
else if (aError==KErrCancel)
{
// stopped
}
}

Unfortunately this issue has not been solved yet. Any idea and suggestion is welcome.



Tested devices

During the tests the following devices were used:

  • Nokia 3230, V3.0505.2, 19-02-05, Rm-51
  • Nokia 6600, V3.42.1, 16-10-03, NHL-10
  • Nokia 6680, V5.04.07, 15-02-06, RM-36
  • Nokia N70, V 5.0616.2.0.3, 24-04-06, RM-84

External links

Related Wiki Articles

No related wiki articles found

Rate This

 
Bookmark this page: DeliciousDiggFacebookGoogleYahooStumbleUponRedditDiigoTechnocratiTwitter  Share this page Share this page Print this Page Print this page Invite a friend Invite a friend
京ICP备05048969号    Email Newsletters Press Terms & Conditions Privacy Policy Sitemap Contact Us © 2009 Nokia 
RDF Facets: qdcZdescriptionQSxEa0E20WikiE20javaE20symbianE5fosE20s60E20maemoE20cE2bE2bE20WikiE20HomeE20WikiE20HelpE20OverviewE20GlossaryE20CreateE20PageE20ProposeE20anE20ArticleE20SpotlightE20TopicE20E2dE20WE52TE20WidgetsE20ProgrammingE20E4canguageE20E2dE20SymbianE20CE2bE2bE20E2dE20OpenE20CE2fCE2bE2bE20E2dE20JavaE20E2dE20FlashE20E4citeE20E2dE20PythonE20WebE20TechnologiesE20E2dE20WE52TE20WidgetsE20E2dE20WidSetsE20ToolsE20andE20SE44KE20CodeE20E45E78amplesE20KnowledgeE20BaseE20TechnologyE20AreasE20SoftwareE20PlatformsE20E44evelopmentE20ProcessE20E3fE3fWikiE20ChineseE20E3fE3fE3fWikiE20JapaneseE20PortugueseE2fBrazilianE20E52ussianE20WhatE20linksE20hereE20UploadE20fileE20SpecialE20pagesE20PrintableE20versionE44ownloadE20asE20PE44FE20GoE20ToE20E2eE2eE2eX qdcZidentifierQSxhttpE3aE2fE2fwikiE2eforumE2enokiaE2ecomE2findeE78E2ephpE2fProfilesE5fE45ngineE5fE45E78tendedE5fAPIX qdcZpublisherQUxhttpE3aE2fE2fswE2enokiaE2ecomE2fidE2fc764fd1cE2d8b06E2d499aE2d9a6aE2d17c3903d5a65E2fforumE5fnokiaE5fcrawlerE5fagentX qdcZtitleQSxProfilesE20E45ngineE20E45E78tendedE20APIE20E2dE20ForumE20NokiaE20WikiX qdcZtypeQUqfnZE45E78cludedFromGeneralE4cistingsQ qdcZtypeQUqfntypeZCommunityContentQ qdcZtypeQUqfntypeZE52esourceQ qdcZtypeQUqfntypeZWebpageQ qdcZtypeQUqfntypeZWikiContentQ qdcZtypeQUqmarsZManagedE52esourceQ qdcZtypeQUqwebZInformationE52esourceQ qdcZtypeQUqwebZPageQ qdcZtypeQUqwebZE52esourceQ qdcZtypeQUqrdfsZE52esourceQ qrssZdescriptionQSxEa0E20WikiE20javaE20symbianE5fosE20s60E20maemoE20cE2bE2bE20WikiE20HomeE20WikiE20HelpE20OverviewE20GlossaryE20CreateE20PageE20ProposeE20anE20ArticleE20SpotlightE20TopicE20E2dE20WE52TE20WidgetsE20ProgrammingE20E4canguageE20E2dE20SymbianE20CE2bE2bE20E2dE20OpenE20CE2fCE2bE2bE20E2dE20JavaE20E2dE20FlashE20E4citeE20E2dE20PythonE20WebE20TechnologiesE20E2dE20WE52TE20WidgetsE20E2dE20WidSetsE20ToolsE20andE20SE44KE20CodeE20E45E78amplesE20KnowledgeE20BaseE20TechnologyE20AreasE20SoftwareE20PlatformsE20E44evelopmentE20ProcessE20E3fE3fWikiE20ChineseE20E3fE3fE3fWikiE20JapaneseE20PortugueseE2fBrazilianE20E52ussianE20WhatE20linksE20hereE20UploadE20fileE20SpecialE20pagesE20PrintableE20versionE44ownloadE20asE20PE44FE20GoE20ToE20E2eE2eE2eX qfnZdistributionQUxhttpE3aE2fE2fwikiE2eforumE2enokiaE2ecomE2fX qfnZtopicQUqfnTopicZaudioQRqdcZtypeQUqrdfsZE52esourceQRqmarsZrelevanceQNx100X qfnZtopicQUqfnTopicZmultimediaQRqmarsZrelevanceQNx100X qfnZtopicQUqfnTopicZseriesE5f60QRqdcZtypeQUqrdfsZE52esourceQRqmarsZrelevanceQNx100X qfnZtypeQUqfntypeZCommunityContentQ qfnZtypeQUqfntypeZE52esourceQ qfnZtypeQUqfntypeZWebpageQ qfnZtypeQUqfntypeZWikiContentQ qfnZupdatedQDx2008E2d10E2d02X qfnZuserE5ftagQSxaudioX qfnZuserE5ftagQSxmultimediaX qfnZuserE5ftagQSxs60X qmarsZdescriptionQSxEa0E20WikiE20javaE20symbianE5fosE20s60E20maemoE20cE2bE2bE20WikiE20HomeE20WikiE20HelpE20OverviewE20GlossaryE20CreateE20PageE20ProposeE20anE20ArticleE20SpotlightE20TopicE20E2dE20WE52TE20WidgetsE20ProgrammingE20E4canguageE20E2dE20SymbianE20CE2bE2bE20E2dE20OpenE20CE2fCE2bE2bE20E2dE20JavaE20E2dE20FlashE20E4citeE20E2dE20PythonE20WebE20TechnologiesE20E2dE20WE52TE20WidgetsE20E2dE20WidSetsE20ToolsE20andE20SE44KE20CodeE20E45E78amplesE20KnowledgeE20BaseE20TechnologyE20AreasE20SoftwareE20PlatformsE20E44evelopmentE20ProcessE20E3fE3fWikiE20ChineseE20E3fE3fE3fWikiE20JapaneseE20PortugueseE2fBrazilianE20E52ussianE20WhatE20linksE20hereE20UploadE20fileE20SpecialE20pagesE20PrintableE20versionE44ownloadE20asE20PE44FE20GoE20ToE20E2eE2eE2eX qmarsZlanguageQUxhttpE3aE2fE2fswE2enokiaE2ecomE2flanguageE2d1E2fenX qrdfZtypeQUqfnZE45E78cludedFromGeneralE4cistingsQ qrdfZtypeQUqfntypeZCommunityContentQ qrdfZtypeQUqfntypeZE52esourceQ qrdfZtypeQUqfntypeZWebpageQ qrdfZtypeQUqfntypeZWikiContentQ qrdfZtypeQUqmarsZManagedE52esourceQ qrdfZtypeQUqwebZInformationE52esourceQ qrdfZtypeQUqwebZPageQ qrdfZtypeQUqwebZE52esourceQ qrdfZtypeQUqrdfsZE52esourceQ