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.

21 lines
412 B

  1. //
  2. // SCCaptureSessionFixer.m
  3. // Snapchat
  4. //
  5. // Created by Derek Wang on 05/12/2017.
  6. //
  7. #import "SCCaptureSessionFixer.h"
  8. #import "SCCameraTweaks.h"
  9. @implementation SCCaptureSessionFixer
  10. - (void)detector:(SCBlackCameraNoOutputDetector *)detector didDetectBlackCamera:(id<SCCapturer>)capture
  11. {
  12. if (SCCameraTweaksBlackCameraRecoveryEnabled()) {
  13. [capture recreateAVCaptureSession];
  14. }
  15. }
  16. @end