mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2025-06-16 05:55:20 +00:00
17 lines
358 B
Objective-C
17 lines
358 B
Objective-C
#import <Foundation/Foundation.h>
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@class TGDataItem;
|
|
|
|
@interface TGOggOpusWriter : NSObject
|
|
|
|
- (bool)beginWithDataItem:(TGDataItem *)dataItem;
|
|
- (bool)writeFrame:(uint8_t * _Nullable)framePcmBytes frameByteCount:(NSUInteger)frameByteCount;
|
|
- (NSUInteger)encodedBytes;
|
|
- (NSTimeInterval)encodedDuration;
|
|
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|