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