SNFCoreAudioUtils.h 441 B

12345678910111213141516171819202122
  1. //
  2. // SNFCoreAudioUtils.h
  3. // VTMAUGraphDemo
  4. //
  5. // Created by Chris Adamson on 11/8/11.
  6. // Copyright (c) 2011 Subsequently and Furthermore, Inc. All rights reserved.
  7. //
  8. #ifndef VTMAUGraphDemo_SNFCoreAudioUtils_h
  9. #define VTMAUGraphDemo_SNFCoreAudioUtils_h
  10. #import <AudioToolbox/AudioToolbox.h>
  11. void CheckError(OSStatus error, const char *operation);
  12. typedef struct {
  13. AudioUnit mixerUnit;
  14. UInt32 inputBus;
  15. } SNFAUMixerInput;
  16. #endif