Ejemplo n.º 1
0
 /// <summary>
 /// Initializes a new instance of the <see cref="AVFrameHandle"/> class.
 /// </summary>
 /// <param name="ffmpeg">
 /// An implementation of the <see cref="FFmpegClient"/> interface, which allows releasing
 /// the handle.
 /// </param>
 public AVFrameHandle(FFmpegClient ffmpeg)
     : base((IntPtr)ffmpeg.AllocFrame(), true)
 {
     this.ffmpeg = ffmpeg;
 }