VocalEasel/Sources/VLAIFFDocument.mm

35 lines
834 B
Plaintext
Raw Permalink Normal View History

2008-05-29 18:54:30 +00:00
//
// File: VLAIFFDocument.mm - Export document in AIFF format
//
// Author(s):
//
// (MN) Matthias Neeracher
//
// Copyright © 2008-2011 Matthias Neeracher
2008-05-29 18:54:30 +00:00
//
#import "VLAIFFDocument.h"
#import "VLSoundOut.h"
#import <CoreAudio/CoreAudio.h>
@implementation VLDocument (AIFF)
- (NSFileWrapper *)aiffFileWrapperWithError:(NSError **)outError
{
[self createTmpFileWithExtension:@"mid" ofType:VLMIDIType];
2008-05-29 18:54:30 +00:00
NSURL * midiURL = [self fileURLWithExtension:@"mid"];
NSURL * aiffURL = [self fileURLWithExtension:@"aiff"];
VLSoundOut *writer =
VLSoundOut::FileWriter((CFURLRef)aiffURL, kAudioFormatLinearPCM);
writer->PlayFile(CFDataRef([NSData dataWithContentsOfURL:midiURL]));
delete writer;
return [[[NSFileWrapper alloc]
initWithPath:[[self fileURLWithExtension:@"aiff"] path]]
autorelease];
}
@end