QTCaptureDecompressedAudioOutput.inc 1.2 KB

123456789101112131415161718192021222324252627282930313233
  1. { Parsed from QTKit.framework QTCaptureDecompressedAudioOutput.h }
  2. {$ifdef TYPES}
  3. type
  4. QTCaptureDecompressedAudioOutputPtr = ^QTCaptureDecompressedAudioOutput;
  5. {$endif}
  6. {$if ((QTKIT_VERSION_MAX_ALLOWED >= QTKIT_VERSION_7_6_3)) and ((MAC_OS_X_VERSION_MAX_ALLOWED >= MAC_OS_X_VERSION_10_4))}
  7. {$ifdef CLASSES}
  8. type
  9. QTCaptureDecompressedAudioOutput = objcclass external (QTCaptureOutput)
  10. private
  11. _internal: QTCaptureDecompressedAudioOutputInternal;
  12. _delegate: id;
  13. _reserved4: clong;
  14. _reserved5: clong;
  15. _reserved6: clong;
  16. public
  17. function delegate: id; message 'delegate';
  18. procedure setDelegate (delegate: id); message 'setDelegate:';
  19. procedure outputAudioSampleBuffer_fromConnection (sampleBuffer: QTSampleBuffer; connection: QTCaptureConnection); message 'outputAudioSampleBuffer:fromConnection:';
  20. end;
  21. type
  22. QTCaptureDecompressedAudioOutput_Delegate = objccategory external (NSObject)
  23. procedure captureOutput_didOutputAudioSampleBuffer_fromConnection (captureOutput: QTCaptureOutput; sampleBuffer: QTSampleBuffer; connection: QTCaptureConnection); message 'captureOutput:didOutputAudioSampleBuffer:fromConnection:';
  24. end;
  25. {$endif}
  26. {$endif}