I am new to this.. and trying to play the sound from a server...

Somehow it passed the compiling but never actually have sound...

I wonder whats wrong with it...

the audio source is Linear PCM

len => FrameSize ctx=> pointer to callback founction

and i just have no idea if they are necessary to place them in my code...(which is pretty much copy&paste*modified from the internet) please let me know if my code suppose to make any sound?

void AudioHandle(Np_DateTime time,
             char* buffer, 
             int len, 
             int bitsPerSample, 
             int samplesPerSec, 
             int channels, 
             void* ctx)
{
NSLog(@"Enter Audio Handle");  
/*
NSLog([NSString stringWithFormat:@"%d", len]);                  //1280
NSLog([NSString stringWithFormat:@"%d", bitsPerSample]);        //16
NSLog([NSString stringWithFormat:@"%d", samplesPerSec]);        //8000
NSLog([NSString stringWithFormat:@"%d", channels]);             //1
*/

NSData * audioData = [[NSData alloc] initWithBytes:buffer length:len];

NSDictionary* outputSettingsDict = [[NSDictionary alloc] initWithObjectsAndKeys:
                                    [NSNumber numberWithInt:kAudioFormatLinearPCM], AVFormatIDKey,
                                    [NSNumber numberWithInt:samplesPerSec], AVSampleRateKey,
                                    [NSNumber numberWithInt:channels], AVNumberOfChannelsKey,
                                    [NSNumber numberWithInt:bitsPerSample],AVLinearPCMBitDepthKey,
                                    [NSNumber numberWithBool:NO], AVLinearPCMIsBigEndianKey,
                                    [NSNumber numberWithBool:NO], AVLinearPCMIsFloatKey,
                                    [NSNumber numberWithBool:NO], AVLinearPCMIsNonInterleaved,
                                    nil];
NSLog(@"init player");  
AVAudioPlayer *player = [[AVAudioPlayer alloc]initWithData:audioData error:nil];
[player setValuesForKeysWithDictionary:outputSettingsDict];
NSLog(@"player");    

[player play]; 
NSLog(@"play");
//[pCamHelper readAudioStreamingDataResponse:data];
} 
link|improve this question
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.