diff options
| author | Carl Hetherington <cth@carlh.net> | 2013-01-06 14:35:30 +0000 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2013-01-06 14:35:30 +0000 |
| commit | d6f44e797d8e84863900a2f2b828019a67ad19e4 (patch) | |
| tree | 8d72b92cb15713b51a0a80c79c1504c19dd277d5 | |
| parent | 7e25d487cba3c23d847aedee84a8e5143f4a209c (diff) | |
Add format for 16:9 without padding; update changelog.
| -rw-r--r-- | ChangeLog | 8 | ||||
| -rw-r--r-- | src/lib/format.cc | 1 |
2 files changed, 9 insertions, 0 deletions
@@ -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")); |
