Skip to content

Instantly share code, notes, and snippets.

@tassock
tassock / FloatExtract.m
Created January 24, 2011 00:43
Attempt to
#import <Foundation/Foundation.h>
#include <AudioToolbox/AudioToolbox.h>
#define kInputFileLocation CFSTR("/Users/petermarks/Developer/CoreAudio/FloatExtract/loop.wav")
#pragma mark utility functions
static void CheckResult(OSStatus error, const char *operation)
{
if (error == noErr) return;
char errorString[20];