cog/Audio/AudioDecoder.m

24 lines
575 B
Objective-C

//
// AudioDecoder.m
// CogAudio
//
// Created by Vincent Spader on 2/21/07.
// Copyright 2007 __MyCompanyName__. All rights reserved.
//
#import "AudioDecoder.h"
#import "PluginController.h"
@implementation AudioDecoder
+ (id<CogDecoder>)audioDecoderForSource:(id<CogSource>)source {
return [[PluginController sharedPluginController] audioDecoderForSource:source skipCue:NO];
}
+ (id<CogDecoder>)audioDecoderForSource:(id<CogSource>)source skipCue:(BOOL)skip {
return [[PluginController sharedPluginController] audioDecoderForSource:source skipCue:skip];
}
@end