23 lines
381 B
Objective-C
23 lines
381 B
Objective-C
//
|
|
// CoreAudio.m
|
|
// CoreAudio
|
|
//
|
|
// Created by Vincent Spader on 2/21/07.
|
|
// Copyright 2007 __MyCompanyName__. All rights reserved.
|
|
//
|
|
|
|
#import "CoreAudioPlugin.h"
|
|
#import "CoreAudioDecoder.h"
|
|
|
|
@implementation CoreAudioPlugin
|
|
|
|
+ (NSDictionary *)pluginInfo
|
|
{
|
|
return [NSDictionary dictionaryWithObjectsAndKeys:
|
|
kCogDecoder, [CoreAudioDecoder className],
|
|
nil
|
|
];
|
|
}
|
|
|
|
@end
|