~ubuntu-branches/ubuntu/trusty/monodevelop/trusty-proposed

« back to all changes in this revision

Viewing changes to external/monomac/docs/en/MonoMac.AVFoundation/AVAssetReaderVideoCompositionOutput.xml

  • Committer: Package Import Robot
  • Author(s): Jo Shields
  • Date: 2013-05-12 09:46:03 UTC
  • mto: This revision was merged to the branch mainline in revision 29.
  • Revision ID: package-import@ubuntu.com-20130512094603-mad323bzcxvmcam0
Tags: upstream-4.0.5+dfsg
ImportĀ upstreamĀ versionĀ 4.0.5+dfsg

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
<Type Name="AVAssetReaderVideoCompositionOutput" FullName="MonoMac.AVFoundation.AVAssetReaderVideoCompositionOutput">
 
2
  <TypeSignature Language="C#" Value="public class AVAssetReaderVideoCompositionOutput : MonoMac.AVFoundation.AVAssetReaderOutput" />
 
3
  <TypeSignature Language="ILAsm" Value=".class public auto ansi beforefieldinit AVAssetReaderVideoCompositionOutput extends MonoMac.AVFoundation.AVAssetReaderOutput" />
 
4
  <AssemblyInfo>
 
5
    <AssemblyName>MonoMac</AssemblyName>
 
6
    <AssemblyVersion>0.0.0.0</AssemblyVersion>
 
7
  </AssemblyInfo>
 
8
  <Base>
 
9
    <BaseTypeName>MonoMac.AVFoundation.AVAssetReaderOutput</BaseTypeName>
 
10
  </Base>
 
11
  <Interfaces />
 
12
  <Attributes>
 
13
    <Attribute>
 
14
      <AttributeName>MonoMac.Foundation.Register("AVAssetReaderVideoCompositionOutput", true)</AttributeName>
 
15
    </Attribute>
 
16
  </Attributes>
 
17
  <Docs>
 
18
    <summary>To be added.</summary>
 
19
    <remarks>To be added.</remarks>
 
20
  </Docs>
 
21
  <Members>
 
22
    <Member MemberName=".ctor">
 
23
      <MemberSignature Language="C#" Value="public AVAssetReaderVideoCompositionOutput (MonoMac.Foundation.NSCoder coder);" />
 
24
      <MemberSignature Language="ILAsm" Value=".method public hidebysig specialname rtspecialname instance void .ctor(class MonoMac.Foundation.NSCoder coder) cil managed" />
 
25
      <MemberType>Constructor</MemberType>
 
26
      <AssemblyInfo>
 
27
        <AssemblyVersion>0.0.0.0</AssemblyVersion>
 
28
      </AssemblyInfo>
 
29
      <Attributes>
 
30
        <Attribute>
 
31
          <AttributeName>MonoMac.Foundation.Export("initWithCoder:")</AttributeName>
 
32
        </Attribute>
 
33
        <Attribute>
 
34
          <AttributeName>System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Advanced)</AttributeName>
 
35
        </Attribute>
 
36
      </Attributes>
 
37
      <Parameters>
 
38
        <Parameter Name="coder" Type="MonoMac.Foundation.NSCoder" />
 
39
      </Parameters>
 
40
      <Docs>
 
41
        <param name="coder">The unarchiver object.</param>
 
42
        <summary>A constructor that initializes the object from the data stored in the unarchiver object.</summary>
 
43
        <remarks>This constructor is provided to allow the class to be initialized from an unarchiver (for example, during NIB deserialization).</remarks>
 
44
      </Docs>
 
45
    </Member>
 
46
    <Member MemberName=".ctor">
 
47
      <MemberSignature Language="C#" Value="public AVAssetReaderVideoCompositionOutput (MonoMac.Foundation.NSObjectFlag t);" />
 
48
      <MemberSignature Language="ILAsm" Value=".method public hidebysig specialname rtspecialname instance void .ctor(class MonoMac.Foundation.NSObjectFlag t) cil managed" />
 
49
      <MemberType>Constructor</MemberType>
 
50
      <AssemblyInfo>
 
51
        <AssemblyVersion>0.0.0.0</AssemblyVersion>
 
52
      </AssemblyInfo>
 
53
      <Attributes>
 
54
        <Attribute>
 
55
          <AttributeName>System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Advanced)</AttributeName>
 
56
        </Attribute>
 
57
      </Attributes>
 
58
      <Parameters>
 
59
        <Parameter Name="t" Type="MonoMac.Foundation.NSObjectFlag" />
 
60
      </Parameters>
 
61
      <Docs>
 
62
        <param name="t">Unused sentinel value, pass NSObjectFlag.Empty.</param>
 
63
        <summary>Constructor to call on derived classes when the derived class has an [Export] constructor.</summary>
 
64
        <remarks>
 
65
          <para>This constructor should be called by derived classes when they are initialized using an [Export] attribute. The argument value is ignore, typically the chaining would look like this:</para>
 
66
          <example>
 
67
            <code lang="C#">
 
68
public class MyClass : BaseClass {
 
69
    [Export ("initWithFoo:")]
 
70
    public MyClass (string foo) : base (NSObjectFlag.Empty)
 
71
    {
 
72
        ...
 
73
    }
 
74
</code>
 
75
          </example>
 
76
        </remarks>
 
77
      </Docs>
 
78
    </Member>
 
79
    <Member MemberName=".ctor">
 
80
      <MemberSignature Language="C#" Value="public AVAssetReaderVideoCompositionOutput (IntPtr handle);" />
 
81
      <MemberSignature Language="ILAsm" Value=".method public hidebysig specialname rtspecialname instance void .ctor(native int handle) cil managed" />
 
82
      <MemberType>Constructor</MemberType>
 
83
      <AssemblyInfo>
 
84
        <AssemblyVersion>0.0.0.0</AssemblyVersion>
 
85
      </AssemblyInfo>
 
86
      <Attributes>
 
87
        <Attribute>
 
88
          <AttributeName>System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Advanced)</AttributeName>
 
89
        </Attribute>
 
90
      </Attributes>
 
91
      <Parameters>
 
92
        <Parameter Name="handle" Type="System.IntPtr" />
 
93
      </Parameters>
 
94
      <Docs>
 
95
        <param name="handle">Pointer (handle) to the unmanaged object.</param>
 
96
        <summary>A constructor used when creating managed representations of unmanaged objects;  Called by the runtime.</summary>
 
97
        <remarks>
 
98
          <para>This constructor is invoked by the runtime infrastructure (<see cref="M:MonoMac.ObjCRuntime.GetNSObject (System.IntPtr)" />) to create a new managed representation for a pointer to an unmanaged Objective-C object.    You should not invoke this method directly, instead you should call the GetNSObject method as it will prevent two instances of a managed object to point to the same native object.</para>
 
99
        </remarks>
 
100
      </Docs>
 
101
    </Member>
 
102
    <Member MemberName=".ctor">
 
103
      <MemberSignature Language="C#" Value="public AVAssetReaderVideoCompositionOutput (MonoMac.AVFoundation.AVAssetTrack[] videoTracks, MonoMac.AVFoundation.AVVideoSettings videoSettings);" />
 
104
      <MemberSignature Language="ILAsm" Value=".method public hidebysig specialname rtspecialname instance void .ctor(class MonoMac.AVFoundation.AVAssetTrack[] videoTracks, class MonoMac.AVFoundation.AVVideoSettings videoSettings) cil managed" />
 
105
      <MemberType>Constructor</MemberType>
 
106
      <AssemblyInfo>
 
107
        <AssemblyVersion>0.0.0.0</AssemblyVersion>
 
108
      </AssemblyInfo>
 
109
      <Attributes>
 
110
        <Attribute>
 
111
          <AttributeName>System.Obsolete("Use overload with PixelBufferAttributes")</AttributeName>
 
112
        </Attribute>
 
113
      </Attributes>
 
114
      <Parameters>
 
115
        <Parameter Name="videoTracks" Type="MonoMac.AVFoundation.AVAssetTrack[]" />
 
116
        <Parameter Name="videoSettings" Type="MonoMac.AVFoundation.AVVideoSettings" />
 
117
      </Parameters>
 
118
      <Docs>
 
119
        <param name="videoTracks">Source video tracks that will be used to composite.</param>
 
120
        <param name="videoSettings">Video configuration settings, can be null for getting uncompressed frames.</param>
 
121
        <summary>Creates a new instance of AVAssetReaderVideoCompositionOutput for reading composited video</summary>
 
122
        <remarks>
 
123
        </remarks>
 
124
      </Docs>
 
125
    </Member>
 
126
    <Member MemberName=".ctor">
 
127
      <MemberSignature Language="C#" Value="public AVAssetReaderVideoCompositionOutput (MonoMac.AVFoundation.AVAssetTrack[] videoTracks, MonoMac.CoreVideo.CVPixelBufferAttributes settings);" />
 
128
      <MemberSignature Language="ILAsm" Value=".method public hidebysig specialname rtspecialname instance void .ctor(class MonoMac.AVFoundation.AVAssetTrack[] videoTracks, class MonoMac.CoreVideo.CVPixelBufferAttributes settings) cil managed" />
 
129
      <MemberType>Constructor</MemberType>
 
130
      <AssemblyInfo>
 
131
        <AssemblyVersion>0.0.0.0</AssemblyVersion>
 
132
      </AssemblyInfo>
 
133
      <Parameters>
 
134
        <Parameter Name="videoTracks" Type="MonoMac.AVFoundation.AVAssetTrack[]" />
 
135
        <Parameter Name="settings" Type="MonoMac.CoreVideo.CVPixelBufferAttributes" />
 
136
      </Parameters>
 
137
      <Docs>
 
138
        <param name="videoTracks">To be added.</param>
 
139
        <param name="settings">To be added.</param>
 
140
        <summary>To be added.</summary>
 
141
        <remarks>To be added.</remarks>
 
142
      </Docs>
 
143
    </Member>
 
144
    <Member MemberName=".ctor">
 
145
      <MemberSignature Language="C#" Value="public AVAssetReaderVideoCompositionOutput (MonoMac.AVFoundation.AVAssetTrack[] videoTracks, MonoMac.Foundation.NSDictionary videoSettings);" />
 
146
      <MemberSignature Language="ILAsm" Value=".method public hidebysig specialname rtspecialname instance void .ctor(class MonoMac.AVFoundation.AVAssetTrack[] videoTracks, class MonoMac.Foundation.NSDictionary videoSettings) cil managed" />
 
147
      <MemberType>Constructor</MemberType>
 
148
      <AssemblyInfo>
 
149
        <AssemblyVersion>0.0.0.0</AssemblyVersion>
 
150
      </AssemblyInfo>
 
151
      <Attributes>
 
152
        <Attribute>
 
153
          <AttributeName>MonoMac.Foundation.Export("initWithVideoTracks:videoSettings:")</AttributeName>
 
154
        </Attribute>
 
155
      </Attributes>
 
156
      <Parameters>
 
157
        <Parameter Name="videoTracks" Type="MonoMac.AVFoundation.AVAssetTrack[]" />
 
158
        <Parameter Name="videoSettings" Type="MonoMac.Foundation.NSDictionary" />
 
159
      </Parameters>
 
160
      <Docs>
 
161
        <param name="videoTracks">To be added.</param>
 
162
        <param name="videoSettings">To be added.</param>
 
163
        <summary>To be added.</summary>
 
164
        <remarks>To be added.</remarks>
 
165
      </Docs>
 
166
    </Member>
 
167
    <Member MemberName="ClassHandle">
 
168
      <MemberSignature Language="C#" Value="public override IntPtr ClassHandle { get; }" />
 
169
      <MemberSignature Language="ILAsm" Value=".property instance native int ClassHandle" />
 
170
      <MemberType>Property</MemberType>
 
171
      <AssemblyInfo>
 
172
        <AssemblyVersion>0.0.0.0</AssemblyVersion>
 
173
      </AssemblyInfo>
 
174
      <ReturnValue>
 
175
        <ReturnType>System.IntPtr</ReturnType>
 
176
      </ReturnValue>
 
177
      <Docs>
 
178
        <summary>The handle for this class.</summary>
 
179
        <value>The pointer to the Objective-C class.</value>
 
180
        <remarks>Each MonoMac class mirrors an unmanaged Objective-C class.   This value contains the pointer to the Objective-C class, it is similar to calling objc_getClass with the object name.</remarks>
 
181
      </Docs>
 
182
    </Member>
 
183
    <Member MemberName="Create">
 
184
      <MemberSignature Language="C#" Value="public MonoMac.AVFoundation.AVAssetReaderVideoCompositionOutput Create (MonoMac.AVFoundation.AVAssetTrack[] videoTracks, MonoMac.CoreVideo.CVPixelBufferAttributes settings);" />
 
185
      <MemberSignature Language="ILAsm" Value=".method public hidebysig instance class MonoMac.AVFoundation.AVAssetReaderVideoCompositionOutput Create(class MonoMac.AVFoundation.AVAssetTrack[] videoTracks, class MonoMac.CoreVideo.CVPixelBufferAttributes settings) cil managed" />
 
186
      <MemberType>Method</MemberType>
 
187
      <AssemblyInfo>
 
188
        <AssemblyVersion>0.0.0.0</AssemblyVersion>
 
189
      </AssemblyInfo>
 
190
      <ReturnValue>
 
191
        <ReturnType>MonoMac.AVFoundation.AVAssetReaderVideoCompositionOutput</ReturnType>
 
192
      </ReturnValue>
 
193
      <Parameters>
 
194
        <Parameter Name="videoTracks" Type="MonoMac.AVFoundation.AVAssetTrack[]" />
 
195
        <Parameter Name="settings" Type="MonoMac.CoreVideo.CVPixelBufferAttributes" />
 
196
      </Parameters>
 
197
      <Docs>
 
198
        <param name="videoTracks">To be added.</param>
 
199
        <param name="settings">To be added.</param>
 
200
        <summary>To be added.</summary>
 
201
        <returns>To be added.</returns>
 
202
        <remarks>To be added.</remarks>
 
203
      </Docs>
 
204
    </Member>
 
205
    <Member MemberName="Dispose">
 
206
      <MemberSignature Language="C#" Value="protected override void Dispose (bool disposing);" />
 
207
      <MemberSignature Language="ILAsm" Value=".method familyhidebysig virtual instance void Dispose(bool disposing) cil managed" />
 
208
      <MemberType>Method</MemberType>
 
209
      <AssemblyInfo>
 
210
        <AssemblyVersion>0.0.0.0</AssemblyVersion>
 
211
      </AssemblyInfo>
 
212
      <ReturnValue>
 
213
        <ReturnType>System.Void</ReturnType>
 
214
      </ReturnValue>
 
215
      <Parameters>
 
216
        <Parameter Name="disposing" Type="System.Boolean" />
 
217
      </Parameters>
 
218
      <Docs>
 
219
        <param name="disposing">
 
220
          <para>If set to <see langword="true" />, the method is invoked directly and will dispose manage and unmanaged resources;   If set to <see langword="false" /> the method is being called by the garbage collector finalizer and should only release unmanaged resources.</para>
 
221
        </param>
 
222
        <summary>Releases the resources used by the AVAssetReaderVideoCompositionOutput object.</summary>
 
223
        <remarks>
 
224
          <para>This Dispose method releases the resources used by the AVAssetReaderVideoCompositionOutput class.</para>
 
225
          <para>This method is called by both the Dispose() method and the object finalizer (Finalize).    When invoked by the Dispose method, the parameter disposting <paramref name="disposing" /> is set to <see langword="true" /> and any managed object references that this object holds are also disposed or released;  when invoked by the object finalizer, on the finalizer thread the value is set to <see langword="false" />. </para>
 
226
          <para>Calling the Dispose method when you are finished using the AVAssetReaderVideoCompositionOutput ensures that all external resources used by this managed object are released as soon as possible.  Once you have invoked the Dispose method, the object is no longer useful and you should no longer make any calls to it.</para>
 
227
          <para>  For more information on how to override this method and on the Dispose/IDisposable pattern, read the ``Implementing a Dispose Method'' document at http://msdn.microsoft.com/en-us/library/fs2xkftw.aspx</para>
 
228
        </remarks>
 
229
      </Docs>
 
230
    </Member>
 
231
    <Member MemberName="FromTracks">
 
232
      <MemberSignature Language="C#" Value="public MonoMac.AVFoundation.AVAssetReaderVideoCompositionOutput FromTracks (MonoMac.AVFoundation.AVAssetTrack[] videoTracks, MonoMac.AVFoundation.AVVideoSettings videoSettings);" />
 
233
      <MemberSignature Language="ILAsm" Value=".method public hidebysig instance class MonoMac.AVFoundation.AVAssetReaderVideoCompositionOutput FromTracks(class MonoMac.AVFoundation.AVAssetTrack[] videoTracks, class MonoMac.AVFoundation.AVVideoSettings videoSettings) cil managed" />
 
234
      <MemberType>Method</MemberType>
 
235
      <AssemblyInfo>
 
236
        <AssemblyVersion>0.0.0.0</AssemblyVersion>
 
237
      </AssemblyInfo>
 
238
      <Attributes>
 
239
        <Attribute>
 
240
          <AttributeName>System.Obsolete("Use Create method or constructor")</AttributeName>
 
241
        </Attribute>
 
242
      </Attributes>
 
243
      <ReturnValue>
 
244
        <ReturnType>MonoMac.AVFoundation.AVAssetReaderVideoCompositionOutput</ReturnType>
 
245
      </ReturnValue>
 
246
      <Parameters>
 
247
        <Parameter Name="videoTracks" Type="MonoMac.AVFoundation.AVAssetTrack[]" />
 
248
        <Parameter Name="videoSettings" Type="MonoMac.AVFoundation.AVVideoSettings" />
 
249
      </Parameters>
 
250
      <Docs>
 
251
        <param name="videoTracks">Source video tracks that will be used to composite.</param>
 
252
        <param name="videoSettings">Video configuration settings, can be null for getting uncompressed frames.</param>
 
253
        <summary>Creates a new instance of AVAssetReaderVideoCompositionOutput for reading composited video</summary>
 
254
        <returns>An instance of the class, or null on failure.</returns>
 
255
        <remarks>
 
256
        </remarks>
 
257
      </Docs>
 
258
    </Member>
 
259
    <Member MemberName="UncompressedVideoSettings">
 
260
      <MemberSignature Language="C#" Value="public MonoMac.CoreVideo.CVPixelBufferAttributes UncompressedVideoSettings { get; }" />
 
261
      <MemberSignature Language="ILAsm" Value=".property instance class MonoMac.CoreVideo.CVPixelBufferAttributes UncompressedVideoSettings" />
 
262
      <MemberType>Property</MemberType>
 
263
      <AssemblyInfo>
 
264
        <AssemblyVersion>0.0.0.0</AssemblyVersion>
 
265
      </AssemblyInfo>
 
266
      <ReturnValue>
 
267
        <ReturnType>MonoMac.CoreVideo.CVPixelBufferAttributes</ReturnType>
 
268
      </ReturnValue>
 
269
      <Docs>
 
270
        <summary>To be added.</summary>
 
271
        <value>To be added.</value>
 
272
        <remarks>To be added.</remarks>
 
273
      </Docs>
 
274
    </Member>
 
275
    <Member MemberName="VideoComposition">
 
276
      <MemberSignature Language="C#" Value="public virtual MonoMac.AVFoundation.AVVideoComposition VideoComposition { get; set; }" />
 
277
      <MemberSignature Language="ILAsm" Value=".property instance class MonoMac.AVFoundation.AVVideoComposition VideoComposition" />
 
278
      <MemberType>Property</MemberType>
 
279
      <AssemblyInfo>
 
280
        <AssemblyVersion>0.0.0.0</AssemblyVersion>
 
281
      </AssemblyInfo>
 
282
      <Attributes>
 
283
        <Attribute>
 
284
          <AttributeName>get: MonoMac.Foundation.Export("videoComposition", MonoMac.ObjCRuntime.ArgumentSemantic.Copy)</AttributeName>
 
285
        </Attribute>
 
286
        <Attribute>
 
287
          <AttributeName>set: MonoMac.Foundation.Export("setVideoComposition:", MonoMac.ObjCRuntime.ArgumentSemantic.Copy)</AttributeName>
 
288
        </Attribute>
 
289
      </Attributes>
 
290
      <ReturnValue>
 
291
        <ReturnType>MonoMac.AVFoundation.AVVideoComposition</ReturnType>
 
292
      </ReturnValue>
 
293
      <Docs>
 
294
        <summary>To be added.</summary>
 
295
        <value>To be added.</value>
 
296
        <remarks>To be added.</remarks>
 
297
      </Docs>
 
298
    </Member>
 
299
    <Member MemberName="VideoSettings">
 
300
      <MemberSignature Language="C#" Value="public MonoMac.AVFoundation.AVVideoSettings VideoSettings { get; }" />
 
301
      <MemberSignature Language="ILAsm" Value=".property instance class MonoMac.AVFoundation.AVVideoSettings VideoSettings" />
 
302
      <MemberType>Property</MemberType>
 
303
      <AssemblyInfo>
 
304
        <AssemblyVersion>0.0.0.0</AssemblyVersion>
 
305
      </AssemblyInfo>
 
306
      <Attributes>
 
307
        <Attribute>
 
308
          <AttributeName>System.Obsolete("Use UncompressedVideoSettings property")</AttributeName>
 
309
        </Attribute>
 
310
      </Attributes>
 
311
      <ReturnValue>
 
312
        <ReturnType>MonoMac.AVFoundation.AVVideoSettings</ReturnType>
 
313
      </ReturnValue>
 
314
      <Docs>
 
315
        <summary>The video settings used for the output</summary>
 
316
        <value>
 
317
        </value>
 
318
        <remarks>If the returned value has the nullable PixelFormat without a value, then the output will be uncompressed frames.</remarks>
 
319
      </Docs>
 
320
    </Member>
 
321
    <Member MemberName="VideoTracks">
 
322
      <MemberSignature Language="C#" Value="public virtual MonoMac.AVFoundation.AVAssetTrack[] VideoTracks { get; }" />
 
323
      <MemberSignature Language="ILAsm" Value=".property instance class MonoMac.AVFoundation.AVAssetTrack[] VideoTracks" />
 
324
      <MemberType>Property</MemberType>
 
325
      <AssemblyInfo>
 
326
        <AssemblyVersion>0.0.0.0</AssemblyVersion>
 
327
      </AssemblyInfo>
 
328
      <Attributes>
 
329
        <Attribute>
 
330
          <AttributeName>get: MonoMac.Foundation.Export("videoTracks")</AttributeName>
 
331
        </Attribute>
 
332
      </Attributes>
 
333
      <ReturnValue>
 
334
        <ReturnType>MonoMac.AVFoundation.AVAssetTrack[]</ReturnType>
 
335
      </ReturnValue>
 
336
      <Docs>
 
337
        <summary>To be added.</summary>
 
338
        <value>To be added.</value>
 
339
        <remarks>To be added.</remarks>
 
340
      </Docs>
 
341
    </Member>
 
342
    <Member MemberName="WeakFromTracks">
 
343
      <MemberSignature Language="C#" Value="public virtual MonoMac.AVFoundation.AVAssetReaderVideoCompositionOutput WeakFromTracks (MonoMac.AVFoundation.AVAssetTrack[] videoTracks, MonoMac.Foundation.NSDictionary videoSettings);" />
 
344
      <MemberSignature Language="ILAsm" Value=".method public hidebysig newslot virtual instance class MonoMac.AVFoundation.AVAssetReaderVideoCompositionOutput WeakFromTracks(class MonoMac.AVFoundation.AVAssetTrack[] videoTracks, class MonoMac.Foundation.NSDictionary videoSettings) cil managed" />
 
345
      <MemberType>Method</MemberType>
 
346
      <AssemblyInfo>
 
347
        <AssemblyVersion>0.0.0.0</AssemblyVersion>
 
348
      </AssemblyInfo>
 
349
      <Attributes>
 
350
        <Attribute>
 
351
          <AttributeName>MonoMac.Foundation.Export("assetReaderVideoCompositionOutputWithVideoTracks:videoSettings:")</AttributeName>
 
352
        </Attribute>
 
353
        <Attribute>
 
354
          <AttributeName>System.Obsolete("Use Create method", false)</AttributeName>
 
355
        </Attribute>
 
356
      </Attributes>
 
357
      <ReturnValue>
 
358
        <ReturnType>MonoMac.AVFoundation.AVAssetReaderVideoCompositionOutput</ReturnType>
 
359
      </ReturnValue>
 
360
      <Parameters>
 
361
        <Parameter Name="videoTracks" Type="MonoMac.AVFoundation.AVAssetTrack[]" />
 
362
        <Parameter Name="videoSettings" Type="MonoMac.Foundation.NSDictionary" />
 
363
      </Parameters>
 
364
      <Docs>
 
365
        <param name="videoTracks">To be added.</param>
 
366
        <param name="videoSettings">
 
367
          <para>The dictionary should contain configuration
 
368
          information using keys from the <see cref="MonoMac.CoreVideo&gt;CVPixelBuffer" /> class.</para>
 
369
          <para tool="nullallowed">This parameter can be <see langword="null" />.</para>
 
370
        </param>
 
371
        <summary>To be added.</summary>
 
372
        <returns>To be added.</returns>
 
373
        <remarks>To be added.</remarks>
 
374
      </Docs>
 
375
    </Member>
 
376
    <Member MemberName="WeakVideoSettings">
 
377
      <MemberSignature Language="C#" Value="public virtual MonoMac.Foundation.NSDictionary WeakVideoSettings { get; }" />
 
378
      <MemberSignature Language="ILAsm" Value=".property instance class MonoMac.Foundation.NSDictionary WeakVideoSettings" />
 
379
      <MemberType>Property</MemberType>
 
380
      <AssemblyInfo>
 
381
        <AssemblyVersion>0.0.0.0</AssemblyVersion>
 
382
      </AssemblyInfo>
 
383
      <Attributes>
 
384
        <Attribute>
 
385
          <AttributeName>get: MonoMac.Foundation.Export("videoSettings")</AttributeName>
 
386
        </Attribute>
 
387
      </Attributes>
 
388
      <ReturnValue>
 
389
        <ReturnType>MonoMac.Foundation.NSDictionary</ReturnType>
 
390
      </ReturnValue>
 
391
      <Docs>
 
392
        <summary>To be added.</summary>
 
393
        <value>To be added.</value>
 
394
        <remarks>To be added.</remarks>
 
395
      </Docs>
 
396
    </Member>
 
397
  </Members>
 
398
</Type>