webRtcPlayerViewController.h 580 B

12345678910111213141516171819202122232425262728
  1. //
  2. // webRtcPlayerViewController.h
  3. // 双子星云手机
  4. //
  5. // Created by xd h on 2024/9/2.
  6. //
  7. #import "BaseViewController.h"
  8. #import <WebRTC/AMediaStream.h>
  9. #import <WebRTC/RTCMacros.h>
  10. #import "UIView+HWCategory.h"
  11. #import "webRtcMsgModel.h"
  12. NS_ASSUME_NONNULL_BEGIN
  13. @interface webRtcPlayerViewController : BaseViewController
  14. {
  15. CGRect startFrame;//悬浮标拖拽用
  16. }
  17. @property (nonatomic, strong) AMediaStream *mediaStream;
  18. @property(nonatomic,strong)UIButton *controlBtn;
  19. @property (nonatomic,strong) webRtcMsgModel * webRtcMsgMod;
  20. @end
  21. NS_ASSUME_NONNULL_END