diff options
-rw-r--r-- | HISTORY | 6 | ||||
-rw-r--r-- | dxr3interface.c | 1 |
2 files changed, 7 insertions, 0 deletions
@@ -228,3 +228,9 @@ NOTE: I havent found time to include all of the languages, will be done in pre2 - added Tools::WriteInfoToOsd(...) - now some infos like "Releasing devices" are show now on the osd again - fixed dxr3osd_subpicutre.c - thanks to Paavo Hartikainen <pahartik@sci.fi> + + +2004-0?-??: Version 0.2.3-pre3 + +- fixed output of anamorphic video, if tv aspect is configured to 16:9 in DVB setup menu + thanks Seppo Ingalsuo <seppo.ingalsuo@iki.fi> diff --git a/dxr3interface.c b/dxr3interface.c index 50302d6..efe1d46 100644 --- a/dxr3interface.c +++ b/dxr3interface.c @@ -446,6 +446,7 @@ void cDxr3Interface::SetAspectRatio(uint32_t ratio) Lock(); if (cDxr3ConfigData::Instance().GetForceLetterBox()) ratio = EM8300_ASPECTRATIO_16_9; + if (Setup.VideoFormat) ratio = EM8300_ASPECTRATIO_4_3; if (!m_ExternalReleased && ratio != UNKNOWN_ASPECT_RATIO) { |