blob: 9ebcada9e67fe4b82de8489f7b8cb0454ac72b31 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
// --------------------------------------------------------------------------------------------------------------------
// <copyright file="EncodeProgressEventArgs.cs" company="HandBrake Project (http://handbrake.fr)">
// This file is part of the HandBrake source code - It may be used under the terms of the GNU General Public License.
// </copyright>
// <summary>
// Defines the EncodeProgressEventArgs type.
// </summary>
// --------------------------------------------------------------------------------------------------------------------
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; }
}
}
|