Fix some missing items, and add nullability declarations. Signed-off-by: Christopher Snowhill <kode54@gmail.com>
58 lines
1.1 KiB
Objective-C
58 lines
1.1 KiB
Objective-C
//
|
|
// InputNode.h
|
|
// Cog
|
|
//
|
|
// Created by Vincent Spader on 8/2/05.
|
|
// Copyright 2005 Vincent Spader. All rights reserved.
|
|
//
|
|
|
|
#import <Cocoa/Cocoa.h>
|
|
|
|
#import <AudioToolbox/AudioToolbox.h>
|
|
#import <AudioUnit/AudioUnit.h>
|
|
#import <CoreAudio/AudioHardware.h>
|
|
|
|
#import "AudioDecoder.h"
|
|
#import "Node.h"
|
|
#import "Plugin.h"
|
|
|
|
#define INPUT_NODE_SEEK
|
|
|
|
@interface InputNode : Node {
|
|
id<CogDecoder> decoder;
|
|
|
|
int bytesPerSample;
|
|
int bytesPerFrame;
|
|
BOOL floatingPoint;
|
|
BOOL swapEndian;
|
|
|
|
BOOL shouldSeek;
|
|
long seekFrame;
|
|
|
|
double lastVolume;
|
|
|
|
BOOL observersAdded;
|
|
|
|
Semaphore *exitAtTheEndOfTheStream;
|
|
}
|
|
@property(readonly) Semaphore * _Nonnull exitAtTheEndOfTheStream;
|
|
@property(readonly) BOOL threadExited;
|
|
|
|
- (id _Nullable)initWithController:(id _Nonnull)c previous:(id _Nullable)p;
|
|
|
|
- (BOOL)openWithSource:(id<CogSource>_Nonnull)source;
|
|
- (BOOL)openWithDecoder:(id<CogDecoder>_Nonnull)d;
|
|
|
|
- (void)process;
|
|
- (NSDictionary *_Nonnull)properties;
|
|
- (void)seek:(long)frame;
|
|
|
|
- (void)registerObservers;
|
|
|
|
- (BOOL)setTrack:(NSURL *_Nonnull)track;
|
|
|
|
- (id<CogDecoder>_Nonnull)decoder;
|
|
|
|
- (void)setLastVolume:(double)v;
|
|
|
|
@end
|