Hi ssolovie,
I have similar problem, I am streaming MP3 with 44100 sample rate and 2 channels. I set:
Code:
TMdaAudioDataSettings iStreamSettings;
iStreamSettings.iSampleRate = TMdaAudioDataSettings::ESampleRate44100Hz;
iStreamSettings.iChannels = TMdaAudioDataSettings::EChannelsStereo;
TFourCC iStreamFourCC;
iStreamFourCC.Set( KMMFFourCCCodeMP3 );
Then I call
Code:
iStreamOutput->Open( &iStreamSettings );
and finally in the MaoscOpenComplete I call again
Code:
TRAPD( err, iStreamOutput->SetAudioPropertiesL(iStreamSettings.iSampleRate, iStreamSettings.iChannels) ); // This is probably not necessary
iStreamOutput->SetDataTypeL( iStreamFourCC.FourCC() )
On S60 5th the music playback is fine, while on S^3 I hear the noise only. Any tips what has to be changed? How did you solve your problem? I have tested it with the 32kbps AAC with the same result.
BR
STeN