diff options
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;
}
|