blob: 9500bdaafb3e61ad980825f032133d81e93b4fc5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
namespace HandBrake.Interop
{
using System;
public class EncodeProgressEventArgs : EventArgs
{
public float FractionComplete { get; set; }
public float CurrentFrameRate { get; set; }
public float AverageFrameRate { get; set; }
public TimeSpan EstimatedTimeLeft { get; set; }
public int Pass { get; set; }
}
}
|