123456789101112131415161718192021222324252627282930 |
- #import <Foundation/Foundation.h>
- @interface ARDBitrateTracker : NSObject
- @property(nonatomic, readonly) double bitrate;
- @property(nonatomic, readonly) NSString *bitrateString;
- + (NSString *)bitrateStringForBitrate:(double)bitrate;
- - (void)updateBitrateWithCurrentByteCount:(NSInteger)byteCount;
- @end
|