Ejemplo n.º 1
0
 /// <summary>
 /// Initializes a new instance of the <see cref="AVInputFormat"/> class.
 /// </summary>
 /// <param name="client">
 /// The ffmpeg client used to get access to the FFmpeg API.
 /// </param>
 /// <param name="shortName">
 /// A pointer to the unmanaged structure which backs this <see cref="AVInputFormat"/> class.
 /// </param>
 public AVInputFormat(FFmpegClient client, string shortName)
     : this((NativeAVInputFormat *)client.FindInputFormat(shortName).ToPointer())
 {
 }