Displaying 1 result from an estimated 1 matches for "klinearpcmformatflagissignedinteg".
Did you mean:
  klinearpcmformatflagissignedinteger
  
2004 Feb 07
0
OS X
...turn noErr;
}
SomewhereThePlay Function(...){
    ...
    AURenderCallbackStruct in;
    in.inputProc = Render;
    in.inputProcRefCon = NULL;
    ...
    AudioStreamBasicDescription sFormat;
    sFormat.mSampleRate = 44100;
    sFormat.mFormatID = kAudioFormatLinearPCM;
    sFormat.mFormatFlags = kLinearPCMFormatFlagIsSignedInteger;
    sFormat.mBytesPerPacket = 4;
    sFormat.mFramesPerPacket = 1;
    sFormat.mBytesPerFrame = 4;
    sFormat.mChannelsPerFrame = 2;
    s.mBitsPerChannel = 16;
    ...
}
<p>You need more info's, please ask....
<p>Thank you in advance,
Beth.
__________________________________...