Cog/Plugins/Shorten/ShortenDecoder.h
Christopher Snowhill 85c7073649 Reformat my own source code with clang-format
Signed-off-by: Christopher Snowhill <kode54@gmail.com>
2022-02-06 21:49:27 -08:00

27 lines
430 B
Objective-C

//
// ShnFile.h
// Cog
//
// Created by Vincent Spader on 6/6/05.
// Copyright 2005 Vincent Spader All rights reserved.
//
#import <Cocoa/Cocoa.h>
#import <Shorten/shn_reader.h>
#import "Plugin.h"
@interface ShortenDecoder : NSObject <CogDecoder> {
// shn_file *handle;
shn_reader *decoder;
long bufferSize; // total size
int channels;
int bitsPerSample;
float frequency;
long totalFrames;
BOOL seekable;
}
@end