RTCVideoDecoder.h 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. /*
  2. * Copyright 2017 The WebRTC project authors. All Rights Reserved.
  3. *
  4. * Use of this source code is governed by a BSD-style license
  5. * that can be found in the LICENSE file in the root of the source
  6. * tree. An additional intellectual property rights grant can be found
  7. * in the file PATENTS. All contributing project authors may
  8. * be found in the AUTHORS file in the root of the source tree.
  9. */
  10. #import <Foundation/Foundation.h>
  11. #import "RTCCodecSpecificInfo.h"
  12. #import "RTCEncodedImage.h"
  13. #import "RTCMacros.h"
  14. #import "RTCVideoEncoderSettings.h"
  15. #import "RTCVideoFrame.h"
  16. NS_ASSUME_NONNULL_BEGIN
  17. /** Callback block for decoder. */
  18. typedef void (^RTCVideoDecoderCallback)(RTCVideoFrame *frame);
  19. /** Protocol for decoder implementations. */
  20. RTC_OBJC_EXPORT
  21. @protocol RTCVideoDecoder <NSObject>
  22. - (void)setCallback:(RTCVideoDecoderCallback)callback;
  23. - (NSInteger)startDecodeWithSettings:(RTCVideoEncoderSettings *)settings
  24. numberOfCores:(int)numberOfCores
  25. DEPRECATED_MSG_ATTRIBUTE("use startDecodeWithNumberOfCores: instead");
  26. - (NSInteger)releaseDecoder;
  27. - (NSInteger)decode:(RTCEncodedImage *)encodedImage
  28. missingFrames:(BOOL)missingFrames
  29. codecSpecificInfo:(nullable id<RTCCodecSpecificInfo>)info
  30. renderTimeMs:(int64_t)renderTimeMs;
  31. - (NSString *)implementationName;
  32. // TODO(andersc): Make non-optional when `startDecodeWithSettings:numberOfCores:` is removed.
  33. @optional
  34. - (NSInteger)startDecodeWithNumberOfCores:(int)numberOfCores;
  35. @end
  36. NS_ASSUME_NONNULL_END