KSYQosInfo.h 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. //
  2. // KSYQosInfo.h
  3. // IJKMediaPlayer
  4. //
  5. // Created by 崔崔 on 16/3/14.
  6. // Copyright © 2016年 bilibili. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. /**
  10. * Qos信息
  11. */
  12. @interface KSYQosInfo : NSObject
  13. /**
  14. audio queue size in bytes
  15. */
  16. @property (nonatomic, assign)int audioBufferByteLength;
  17. /**
  18. audio queue time length in ms
  19. */
  20. @property (nonatomic, assign)int audioBufferTimeLength;
  21. /**
  22. size of data have arrived at audio queue since playing. unit:byte
  23. */
  24. @property (nonatomic, assign)int64_t audioTotalDataSize;
  25. /**
  26. video queue size in bytes
  27. */
  28. @property (nonatomic, assign)int videoBufferByteLength;
  29. /**
  30. video queue time length in ms
  31. */
  32. @property (nonatomic, assign)int videoBufferTimeLength;
  33. /**
  34. size of data have arrived at video queue since playing. unit:byte
  35. */
  36. @property (nonatomic, assign)int64_t videoTotalDataSize;
  37. /**
  38. size of total audio and video data since playing. unit: byte
  39. */
  40. @property (nonatomic, assign)int64_t totalDataSize;
  41. /**
  42. video decode frame count per second
  43. */
  44. @property (nonatomic, assign)float videoDecodeFPS;
  45. /**
  46. video refresh frame count per second
  47. */
  48. @property (nonatomic, assign)float videoRefreshFPS;
  49. @end