NIMNetCallCustomVideoParam.h 796 B

1234567891011121314151617181920212223242526272829303132
  1. //
  2. // NIMNetCallCustomVideoParam.h
  3. // NIMAVChat
  4. //
  5. // Created by Netease on 2017/7/17.
  6. // Copyright © 2017年 Netease. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. #import <CoreMedia/CMSampleBuffer.h>
  10. #import "NIMAVChatDefs.h"
  11. @class NIMNetCallVideoProcessorParam;
  12. /**
  13. * 自定义视频输入参数
  14. */
  15. @interface NIMNetCallCustomVideoParam : NSObject<NSCopying>
  16. /**
  17. * 编码帧率
  18. */
  19. @property (nonatomic, assign) NSUInteger videoFrameRate;
  20. /**
  21. * 视频前处理参数,如需开启前处理请指定该参数,不指定将不开启前处理。
  22. @discussion 如果需要在通话开始时就已添加美颜,水印等前处理,请指定该参数中对应的参数。
  23. */
  24. @property (nonatomic, strong) NIMNetCallVideoProcessorParam *videoProcessorParam;
  25. @end