TiLiveView.h 546 B

12345678910111213141516171819202122
  1. //
  2. // TiView.h
  3. // TiTest
  4. //
  5. // Created by Husky Cooper on 2018/7/13.
  6. // Copyright © 2018年 Tillusory Tech. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. @interface TiLiveView : UIView
  10. typedef enum TiPixelFormatType {
  11. kCV_BGRA = kCVPixelFormatType_32BGRA,
  12. kCV_420v = kCVPixelFormatType_420YpCbCr8BiPlanarVideoRange,
  13. kCV_420f = kCVPixelFormatType_420YpCbCr8BiPlanarFullRange
  14. } TiPixelFormatType;
  15. - (void)setupPreview:(TiPixelFormatType)type;
  16. - (void)startPreview:(CVPixelBufferRef)pixelBuffer isMirror:(BOOL)isMirror;
  17. @end