TXBitrateItem.h 590 B

12345678910111213141516171819
  1. //
  2. // TXBitrateItem.h
  3. // TXLiteAVSDK
  4. //
  5. // Created by annidyfeng on 2017/11/15.
  6. // Copyright © 2017年 Tencent. All rights reserved.
  7. //
  8. #ifndef TXBitrateItem_h
  9. #define TXBitrateItem_h
  10. /// HLS多码率信息
  11. @interface TXBitrateItem : NSObject
  12. @property (nonatomic, assign) NSInteger index; ///< m3u8 文件中的序号
  13. @property (nonatomic, assign) NSInteger width; ///< 此流的视频宽度
  14. @property (nonatomic, assign) NSInteger height; ///< 此流的视频高度
  15. @property (nonatomic, assign) NSInteger bitrate; ///< 此流的视频码率
  16. @end
  17. #endif /* TXBitrateItem_h */