2007-03-02 01:36:52 +00:00
|
|
|
//
|
|
|
|
// AudioDecoder.m
|
|
|
|
// CogAudio
|
|
|
|
//
|
|
|
|
// Created by Vincent Spader on 2/21/07.
|
|
|
|
// Copyright 2007 __MyCompanyName__. All rights reserved.
|
|
|
|
//
|
|
|
|
|
|
|
|
#import "AudioSource.h"
|
|
|
|
|
|
|
|
|
|
|
|
@implementation AudioSource
|
|
|
|
|
2007-10-09 01:20:46 +00:00
|
|
|
+ (id<CogSource>) audioSourceForURL:(NSURL *)url
|
2007-03-02 01:36:52 +00:00
|
|
|
{
|
2007-10-09 01:20:46 +00:00
|
|
|
return [[PluginController sharedPluginController] audioSourceForURL:url];
|
2007-03-02 01:36:52 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
@end
|