cog/Audio/AudioDecoder.m

26 lines
585 B
Matlab
Raw Normal View History

//
// 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
2007-10-14 18:12:15 +00:00
+ (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