mirror of
https://github.com/oonyeje/Get-Hip.git
synced 2025-12-25 19:57:42 +00:00
25 lines
558 B
Objective-C
Executable File
25 lines
558 B
Objective-C
Executable File
//
|
|
// TDAudioInputStreamer.h
|
|
// TDAudioStreamer
|
|
//
|
|
// Created by Tony DiPasquale on 10/4/13.
|
|
// Copyright (c) 2013 Tony DiPasquale. The MIT License (MIT).
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
|
|
@interface TDAudioInputStreamer : NSObject
|
|
|
|
@property (assign, nonatomic) UInt32 audioStreamReadMaxLength;
|
|
@property (assign, nonatomic) UInt32 audioQueueBufferSize;
|
|
@property (assign, nonatomic) UInt32 audioQueueBufferCount;
|
|
|
|
- (instancetype)initWithInputStream:(NSInputStream *)inputStream;
|
|
|
|
- (void)start;
|
|
- (void)resume;
|
|
- (void)pause;
|
|
- (void)stop;
|
|
|
|
@end
|