CapturerEventsDelegate.h 424 B

12345678910111213141516
  1. // From https://github.com/react-native-webrtc/react-native-webrtc (MIT License)
  2. // SPDX-FileCopyrightText: 2023 React-Native-WebRTC authors
  3. // SPDX-License-Identifier: MIT
  4. #import <WebRTC/RTCVideoCapturer.h>
  5. NS_ASSUME_NONNULL_BEGIN
  6. @protocol CapturerEventsDelegate
  7. /** Called when the capturer is ended and in an irrecoverable state. */
  8. - (void)capturerDidEnd:(RTCVideoCapturer *)capturer;
  9. @end
  10. NS_ASSUME_NONNULL_END