SampleHandler.swift 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. //
  2. // SampleHandler.swift
  3. // Screen Sharing
  4. //
  5. // Created by Suraj Kumar Mandal on 06/06/22.
  6. //
  7. import ReplayKit
  8. class SampleHandler: RPBroadcastSampleHandler {
  9. override func broadcastStarted(withSetupInfo setupInfo: [String : NSObject]?) {
  10. // User has requested to start the broadcast. Setup info from the UI extension can be supplied but optional.
  11. }
  12. override func broadcastPaused() {
  13. // User has requested to pause the broadcast. Samples will stop being delivered.
  14. }
  15. override func broadcastResumed() {
  16. // User has requested to resume the broadcast. Samples delivery will resume.
  17. }
  18. override func broadcastFinished() {
  19. // User has requested to finish the broadcast.
  20. }
  21. override func processSampleBuffer(_ sampleBuffer: CMSampleBuffer, with sampleBufferType: RPSampleBufferType) {
  22. switch sampleBufferType {
  23. case RPSampleBufferType.video:
  24. // Handle video sample buffer
  25. break
  26. case RPSampleBufferType.audioApp:
  27. // Handle audio sample buffer for app audio
  28. break
  29. case RPSampleBufferType.audioMic:
  30. // Handle audio sample buffer for mic audio
  31. break
  32. @unknown default:
  33. // Handle other sample buffer types
  34. fatalError("Unknown type of sample buffer")
  35. }
  36. }
  37. }