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
|
|
|
|
|
2007-03-02 01:36:52 +00:00
|
|
|
+ (id<CogDecoder>) audioDecoderForURL:(NSURL *)url
|
2007-02-24 20:36:27 +00:00
|
|
|
{
|
2007-10-09 01:20:46 +00:00
|
|
|
return [[PluginController sharedPluginController] audioDecoderForURL:url];
|
2007-02-24 20:36:27 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
@end
|