summaryrefslogtreecommitdiffstats
path: root/win/CS/HandBrakeWPF
diff options
context:
space:
mode:
authorsr55 <[email protected]>2014-12-26 22:00:54 +0000
committersr55 <[email protected]>2014-12-26 22:00:54 +0000
commitc98c0a9cca5953e12d17d17f8c1ea6afc55b4386 (patch)
tree9c4c8b0b0e18ecd07e1b4333d4db01ef352fbc96 /win/CS/HandBrakeWPF
parent4bde18f29b47ca39da7fba416c3c912d7c46ad2c (diff)
[Merge] Picture Size and PList Import bug fixes
git-svn-id: svn://svn.handbrake.fr/HandBrake/branches/0.10.x@6653 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'win/CS/HandBrakeWPF')
-rw-r--r--win/CS/HandBrakeWPF/Helpers/PictureSize.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/win/CS/HandBrakeWPF/Helpers/PictureSize.cs b/win/CS/HandBrakeWPF/Helpers/PictureSize.cs
index f790c5a15..9e268b76c 100644
--- a/win/CS/HandBrakeWPF/Helpers/PictureSize.cs
+++ b/win/CS/HandBrakeWPF/Helpers/PictureSize.cs
@@ -212,8 +212,8 @@ namespace HandBrakeWPF.Helpers
outputWidth = result.width;
outputHeight = result.height;
- outputParWidth = result.par.den;
- outputParHeight = result.par.num;
+ outputParWidth = result.par.num;
+ outputParHeight = result.par.den;
Debug.WriteLine("hb_set_anamorphic_size2: {0}x{1}", outputWidth, outputHeight);
return new AnamorphicResult { OutputWidth = outputWidth, OutputHeight = outputHeight, OutputParWidth = outputParWidth, OutputParHeight = outputParHeight };
}