4
4
5
5
import Foundation
6
6
7
+ // MARK: - Direct Upload Options
8
+
7
9
/// Options for the direct upload
8
10
public struct DirectUploadOptions {
9
11
10
12
// MARK: - Transport Options
11
13
12
- /// Options to control the SDK network operations to
13
- /// transport the direct upload input to Mux
14
+ /// Options to adjust ``DirectUpload`` chunk transport
15
+ /// over the network.
14
16
public struct Transport {
15
17
16
- /// At least 8M is recommended
18
+ /// The size of each file chunk in bytes sent by the
19
+ /// SDK during an upload. At least 8MB is recommended.
17
20
public var chunkSizeInBytes : Int
18
21
19
- /// Number of retry attempts per chunk if the
20
- /// associated request fails
22
+ /// Number of retry attempts per chunk if its upload
23
+ /// request is unsuccessful
21
24
public var retryLimitPerChunk : Int
22
25
23
- /// A default set of transport options: 8MB chunk
24
- /// size and chunk request retry limit of 3
26
+ /// Default options for ``DirectUpload`` chunk transport
27
+ /// over the network. The chunk size is 8MB and the
28
+ /// per-chunk retry limit is 3.
25
29
public static var `default` : Transport {
26
30
Transport (
27
31
chunkSizeInBytes: 8 * 1024 * 1024 ,
28
32
retryLimitPerChunk: 3
29
33
)
30
34
}
31
35
32
- /// Initializes options that govern network transport
33
- /// by the SDK
36
+ /// Initializes options for upload chunk transport
37
+ /// over the network
34
38
///
35
39
/// - Parameters:
36
- /// - chunkSize : the size of each file chunk in
40
+ /// - chunkSizeInBytes : the size of each file chunk in
37
41
/// bytes the SDK sends when uploading, default
38
42
/// value is 8MB
39
- /// - retriesPerChunk : number of retry attempts
43
+ /// - retryLimitPerChunk : number of retry attempts
40
44
/// if the chunk request fails, default value is 3
41
45
public init (
42
46
chunkSizeInBytes: Int = 8 * 1024 * 1024 ,
@@ -52,7 +56,9 @@ public struct DirectUploadOptions {
52
56
53
57
// MARK: - Input Standardization Options
54
58
55
- /// Options controlling direct upload input standardization
59
+ /// Options for adjusments made by ``DirectUpload``
60
+ /// to some inputs to minimize processing time during
61
+ /// ingestion
56
62
public struct InputStandardization {
57
63
58
64
/// If requested the SDK will attempt to detect
@@ -124,8 +130,8 @@ public struct DirectUploadOptions {
124
130
maximumResolution: . default
125
131
)
126
132
127
- // Kept private to an invalid combination of parameters
128
- // being used for initialization
133
+ // Kept private to avoid an invalid combination of
134
+ // parameters being used for initialization
129
135
private init (
130
136
isRequested: Bool ,
131
137
maximumResolution: MaximumResolution
@@ -134,10 +140,8 @@ public struct DirectUploadOptions {
134
140
self . maximumResolution = maximumResolution
135
141
}
136
142
137
- /// Used to initialize ``DirectUploadOptions.InputStandardization``
138
- /// with that enables input standardization with
139
- /// a maximum resolution
140
- ///
143
+ /// Initializes options that request input
144
+ /// standardization with a custom maximum resolution
141
145
/// - Parameters:
142
146
/// - maximumResolution: the maximum resolution
143
147
/// of the standardized input
@@ -213,11 +217,18 @@ public struct DirectUploadOptions {
213
217
/// disable standardizing the format of the direct
214
218
/// upload inputs, it is requested by default. To
215
219
/// prevent the SDK from making any changes to the
220
+ /// - Parameters:
221
+ /// - eventTracking: event tracking options for the
222
+ /// direct upload
223
+ /// - inputStandardization: options to enable or
224
+ /// disable standardizing the format of the direct
225
+ /// upload inputs. True by default.
226
+ /// To prevent the SDK from making any changes to the
216
227
/// format of the input use ``DirectUploadOptions.InputStandardization.skipped``
217
- /// - chunkSize: the size of each file chunk in
218
- /// bytes the SDK sends when uploading, default
219
- /// value is 8MB
220
- /// - retriesPerChunk : number of retry attempts
228
+ /// - chunkSizeInBytes: The size of each file chunk
229
+ /// in bytes sent by the SDK during an upload.
230
+ /// Defaults to 8MB.
231
+ /// - retryLimitPerChunk : number of retry attempts
221
232
/// if the chunk request fails, default value is 3
222
233
public init (
223
234
eventTracking: EventTracking = . default,
0 commit comments