mirror of
https://github.com/oonyeje/Get-Hip.git
synced 2025-12-25 11:47:41 +00:00
46 lines
1.1 KiB
Objective-C
Executable File
46 lines
1.1 KiB
Objective-C
Executable File
//
|
|
// TDAudioQueue.h
|
|
// TDAudioStreamer
|
|
//
|
|
// Created by Tony DiPasquale on 10/4/13.
|
|
// Copyright (c) 2013 Tony DiPasquale. The MIT License (MIT).
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
#import <AudioToolbox/AudioToolbox.h>
|
|
|
|
typedef NS_ENUM(NSUInteger, TDAudioQueueState) {
|
|
TDAudioQueueStateBuffering,
|
|
TDAudioQueueStateStopped,
|
|
TDAudioQueueStatePaused,
|
|
TDAudioQueueStatePlaying
|
|
};
|
|
|
|
@class TDAudioQueue;
|
|
|
|
@protocol TDAudioQueueDelegate <NSObject>
|
|
|
|
- (void)audioQueueDidFinishPlaying:(TDAudioQueue *)audioQueue;
|
|
- (void)audioQueueDidStartPlaying:(TDAudioQueue *)audioQueue;
|
|
|
|
@end
|
|
|
|
@class TDAudioQueueBuffer;
|
|
|
|
@interface TDAudioQueue : NSObject
|
|
|
|
@property (assign, nonatomic) TDAudioQueueState state;
|
|
@property (assign, nonatomic) id<TDAudioQueueDelegate> delegate;
|
|
|
|
- (instancetype)initWithBasicDescription:(AudioStreamBasicDescription)basicDescription bufferCount:(UInt32)bufferCount bufferSize:(UInt32)bufferSize magicCookieData:(void *)magicCookieData magicCookieSize:(UInt32)magicCookieSize;
|
|
|
|
- (TDAudioQueueBuffer *)nextFreeBuffer;
|
|
- (void)enqueue;
|
|
|
|
- (void)play;
|
|
- (void)pause;
|
|
- (void)stop;
|
|
- (void)finish;
|
|
|
|
@end
|