summaryrefslogtreecommitdiffstats
path: root/win/CS/HandBrake.ApplicationServices/Services
diff options
context:
space:
mode:
authorsr55 <[email protected]>2014-12-26 22:26:22 +0000
committersr55 <[email protected]>2014-12-26 22:26:22 +0000
commit8df584534c0c39f5c2f298d8ba480cc906743bbf (patch)
tree15166de042ee466516163fdc7302ea900eeb5eb8 /win/CS/HandBrake.ApplicationServices/Services
parented414885c5411dc7f298700d0c5061385024c503 (diff)
WinGui: Initial implementation of the new JSON API for encoding. Not exposed to end users yet.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@6654 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'win/CS/HandBrake.ApplicationServices/Services')
-rw-r--r--win/CS/HandBrake.ApplicationServices/Services/Encode/EventArgs/EncodeProgressEventArgs.cs6
1 files changed, 3 insertions, 3 deletions
diff --git a/win/CS/HandBrake.ApplicationServices/Services/Encode/EventArgs/EncodeProgressEventArgs.cs b/win/CS/HandBrake.ApplicationServices/Services/Encode/EventArgs/EncodeProgressEventArgs.cs
index 1b93434da..87d777525 100644
--- a/win/CS/HandBrake.ApplicationServices/Services/Encode/EventArgs/EncodeProgressEventArgs.cs
+++ b/win/CS/HandBrake.ApplicationServices/Services/Encode/EventArgs/EncodeProgressEventArgs.cs
@@ -22,19 +22,19 @@ namespace HandBrake.ApplicationServices.Services.Encode.EventArgs
/// Gets or sets PercentComplete.
/// </summary>
[DataMember]
- public float PercentComplete { get; set; }
+ public double PercentComplete { get; set; }
/// <summary>
/// Gets or sets CurrentFrameRate.
/// </summary>
[DataMember]
- public float CurrentFrameRate { get; set; }
+ public double CurrentFrameRate { get; set; }
/// <summary>
/// Gets or sets AverageFrameRate.
/// </summary>
[DataMember]
- public float AverageFrameRate { get; set; }
+ public double AverageFrameRate { get; set; }
/// <summary>
/// Gets or sets EstimatedTimeLeft.