blob: 9f8da0d9eeea05099a0d24b6b47e43aceeb6538e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
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; }
/// <summary>
/// Gets or sets the current encoding pass. (-1: subtitle scan, 1: first pass, 2: second pass)
/// </summary>
public int Pass { get; set; }
}
}
|