diff options
author | sr55 <[email protected]> | 2014-02-21 22:06:24 +0000 |
---|---|---|
committer | sr55 <[email protected]> | 2014-02-21 22:06:24 +0000 |
commit | f2ca02b9220a88a018759932dd9608b2de8a91cf (patch) | |
tree | 0f3c3cd02a9f137f61f0359f6d96295c7109f728 /win/CS/HandBrake.ApplicationServices | |
parent | 24dafeb39495eaf0081160bd642d8da10d0b9995 (diff) |
WinGui: Some tidy up and refactoring in the interop library. Few small internal namespace changes.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@6053 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'win/CS/HandBrake.ApplicationServices')
-rw-r--r-- | win/CS/HandBrake.ApplicationServices/Utilities/InteropModelCreator.cs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/win/CS/HandBrake.ApplicationServices/Utilities/InteropModelCreator.cs b/win/CS/HandBrake.ApplicationServices/Utilities/InteropModelCreator.cs index c8095f9c1..67f243432 100644 --- a/win/CS/HandBrake.ApplicationServices/Utilities/InteropModelCreator.cs +++ b/win/CS/HandBrake.ApplicationServices/Utilities/InteropModelCreator.cs @@ -130,10 +130,10 @@ namespace HandBrake.ApplicationServices.Utilities {
case OutputFormat.Mp4:
case OutputFormat.M4V:
- profile.OutputFormat = Container.Mp4;
+ profile.ContainerName = "av_mp4"; // TODO make part of enum.
break;
case OutputFormat.Mkv:
- profile.OutputFormat = Container.Mkv;
+ profile.ContainerName = "av_mkv"; // TODO make part of enum.
break;
}
|