2014 snapchat source code
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

24 lines
535 B

  1. //
  2. // SCManagedVideoARDataSource.h
  3. // Snapchat
  4. //
  5. // Created by Eyal Segal on 20/10/2017.
  6. //
  7. #import "SCCapturerDefines.h"
  8. #import <SCCameraFoundation/SCManagedVideoDataSource.h>
  9. #import <ARKit/ARKit.h>
  10. @protocol SCManagedVideoARDataSource <SCManagedVideoDataSource>
  11. @property (atomic, strong) ARFrame *currentFrame NS_AVAILABLE_IOS(11_0);
  12. #ifdef SC_USE_ARKIT_FACE
  13. @property (atomic, strong) AVDepthData *lastDepthData NS_AVAILABLE_IOS(11_0);
  14. #endif
  15. @property (atomic, assign) float fieldOfView NS_AVAILABLE_IOS(11_0);
  16. @end