mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2025-06-16 05:55:20 +00:00
14 lines
238 B
Objective-C
14 lines
238 B
Objective-C
#import <Foundation/Foundation.h>
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@interface OggOpusReader : NSObject
|
|
|
|
- (instancetype _Nullable)initWithPath:(NSString *)path;
|
|
|
|
- (int32_t)read:(void *)pcmData bufSize:(int)bufSize;
|
|
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|