Ejemplo n.º 1
0
 /// <summary>
 /// Initializes a new instance of the <see cref="AVPacket"/> class.
 /// </summary>
 /// <param name="client">
 /// An implementation of the <see cref="FFmpegClient"/> interface which provides access to the native FFmpeg functions.
 /// </param>
 public AVPacket(FFmpegClient client)
 {
     this.client = client;
     this.handle = client.AllocPacket();
     client.InitPacket(this.handle);
 }