TCVodPlayViewController.h 754 B

12345678910111213141516171819202122232425
  1. //
  2. // TCVodPlayViewController.h
  3. // TCLVBIMDemo
  4. //
  5. // Created by annidyfeng on 2017/9/15.
  6. // Copyright © 2017年 tencent. All rights reserved.
  7. //
  8. #import "TCBasePlayViewController.h"
  9. #import <TXLiteAVSDK_Professional/TXVodPlayListener.h>
  10. @interface TCVodPlayViewController : TCBasePlayViewController<UITextFieldDelegate,UITableViewDelegate,UITableViewDataSource,UIScrollViewDelegate, TXVodPlayListener,TCPlayDecorateDelegate>
  11. @property (nonatomic, assign) BOOL log_switch;
  12. -(id)initWithPlayInfoS:(NSArray<TCLiveInfo *>*) liveInfos liveInfo:(TCLiveInfo *)liveInfo videoIsReady:(videoIsReadyBlock)videoIsReady;
  13. - (void)stopRtmp;
  14. - (void)onAppDidEnterBackGround:(UIApplication*)app;
  15. - (void)onAppWillEnterForeground:(UIApplication*)app;
  16. @end