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.

31 lines
920 B

  1. //
  2. // SCCaptureCommon.m
  3. // Snapchat
  4. //
  5. // Created by Lin Jia on 9/29/17.
  6. //
  7. //
  8. #import "SCCaptureCommon.h"
  9. CGFloat const kSCManagedCapturerAspectRatioUnspecified = -1.0;
  10. CGFloat const kSCManagedCapturerDefaultVideoActiveFormatWidth = 1280;
  11. CGFloat const kSCManagedCapturerDefaultVideoActiveFormatHeight = 720;
  12. CGFloat const kSCManagedCapturerVideoActiveFormatWidth1080p = 1920;
  13. CGFloat const kSCManagedCapturerVideoActiveFormatHeight1080p = 1080;
  14. CGFloat const kSCManagedCapturerNightVideoHighResActiveFormatWidth = 2592;
  15. CGFloat const kSCManagedCapturerNightVideoHighResActiveFormatHeight = 1936;
  16. CGFloat const kSCManagedCapturerNightVideoDefaultResActiveFormatWidth = 640;
  17. CGFloat const kSCManagedCapturerNightVideoDefaultResActiveFormatHeight = 480;
  18. CGFloat const kSCManagedCapturerLiveStreamingVideoActiveFormatWidth = 1280;
  19. CGFloat const kSCManagedCapturerLiveStreamingVideoActiveFormatHeight = 720;