summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog8
-rw-r--r--src/lib/format.cc1
2 files changed, 9 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index a04712080..bfe0d725d 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,11 @@
+2013-01-06 Carl Hetherington <cth@carlh.net>
+
+ * Put mono soundtracks on the centre speaker, rather
+ than on left (reported by Mike Blakesley).
+
+ * Add format for 16:9 without letterboxing (requested by Lilian
+ Lefranc).
+
2012-12-23 Carl Hetherington <cth@carlh.net>
* Version 0.69 released.
diff --git a/src/lib/format.cc b/src/lib/format.cc
index eb42593fe..975862411 100644
--- a/src/lib/format.cc
+++ b/src/lib/format.cc
@@ -75,6 +75,7 @@ Format::setup_formats ()
_formats.push_back (new FixedFormat (166, Size (1793, 1080), "166", "1.66", "F"));
_formats.push_back (new FixedFormat (166, Size (1998, 1080), "166-in-flat", "1.66 within Flat", "F"));
_formats.push_back (new FixedFormat (178, Size (1998, 1080), "178-in-flat", "16:9 within Flat", "F"));
+ _formats.push_back (new FixedFormat (178, Size (1920, 1080), "178", "16:9", "F"));
_formats.push_back (new FixedFormat (185, Size (1998, 1080), "185", "Flat", "F"));
_formats.push_back (new FixedFormat (239, Size (2048, 858), "239", "Scope", "S"));
_formats.push_back (new VariableFormat (Size (1998, 1080), "var-185", "Flat", "F"));