mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2025-07-12 22:39:23 +00:00
16 lines
433 B
Objective-C
16 lines
433 B
Objective-C
#import <Foundation/Foundation.h>
|
|
|
|
#import <LegacyComponents/PSCoding.h>
|
|
|
|
@interface TGAudioWaveform : NSObject <NSCoding, PSCoding>
|
|
|
|
@property (nonatomic, strong, readonly) NSData *samples;
|
|
@property (nonatomic, readonly) int32_t peak;
|
|
|
|
- (instancetype)initWithSamples:(NSData *)samples peak:(int32_t)peak;
|
|
- (instancetype)initWithBitstream:(NSData *)bitstream bitsPerSample:(NSUInteger)bitsPerSample;
|
|
|
|
- (NSData *)bitstream;
|
|
|
|
@end
|