SCTVOSSDK 23.0.0
Smartclip Advertisement Framework for tvOS
Loading...
Searching...
No Matches
SCMediaError.h
1//
2// SCMediaError.h
3// SCTVOSSDK
4//
5// Copyright © 2019 smartclip. All rights reserved.
6//
7
8#import <Foundation/Foundation.h>
9
10NS_ASSUME_NONNULL_BEGIN
11
12@interface SCMediaError : NSObject
13typedef enum MediaErrorCode {
14 MEDIA_ERR_ABORTED = 1,
15 MEDIA_ERR_NETWORK,
16 MEDIA_ERR_DECODE,
17 MEDIA_ERR_SRC_NOT_SUPPORTED
18} MediaErrorCode;
19
20//
21- (instancetype)initWithError:(NSError*)error;
22- (NSString*)description;
23@end
24
25NS_ASSUME_NONNULL_END
Definition: SCMediaError.h:13