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.

19 lines
440 B

  1. //
  2. // SCFileAudioCaptureSession.h
  3. // Snapchat
  4. //
  5. // Created by Xiaomu Wu on 2/2/17.
  6. // Copyright © 2017 Snapchat, Inc. All rights reserved.
  7. //
  8. #import "SCAudioCaptureSession.h"
  9. #import <Foundation/Foundation.h>
  10. @interface SCFileAudioCaptureSession : NSObject <SCAudioCaptureSession>
  11. // Linear PCM is required.
  12. // To best mimic `SCAudioCaptureSession`, use an audio file recorded from it.
  13. - (void)setFileURL:(NSURL *)fileURL;
  14. @end