blob: 7f08595a73cf1a8c789d08d887d24c83a4692a8e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace HandBrake.Interop
{
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; }
}
}
|