2007-02-24 20:36:27 +00:00
|
|
|
//
|
|
|
|
// AudioDecoder.m
|
|
|
|
// CogAudio
|
|
|
|
//
|
|
|
|
// Created by Vincent Spader on 2/21/07.
|
|
|
|
// Copyright 2007 __MyCompanyName__. All rights reserved.
|
|
|
|
//
|
|
|
|
|
|
|
|
#import "AudioDecoder.h"
|
|
|
|
|
2007-03-02 01:36:52 +00:00
|
|
|
#import "PluginController.h"
|
2007-02-24 20:36:27 +00:00
|
|
|
|
|
|
|
@implementation AudioDecoder
|
|
|
|
|
2022-02-07 05:49:27 +00:00
|
|
|
+ (id<CogDecoder>)audioDecoderForSource:(id<CogSource>)source {
|
|
|
|
return [[PluginController sharedPluginController] audioDecoderForSource:source skipCue:NO];
|
2022-01-15 00:46:35 +00:00
|
|
|
}
|
|
|
|
|
2022-02-07 05:49:27 +00:00
|
|
|
+ (id<CogDecoder>)audioDecoderForSource:(id<CogSource>)source skipCue:(BOOL)skip {
|
|
|
|
return [[PluginController sharedPluginController] audioDecoderForSource:source skipCue:skip];
|
2007-02-24 20:36:27 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
@end
|