diff options
author | austriancoder <austriancoder> | 2004-08-08 01:37:39 +0000 |
---|---|---|
committer | austriancoder <austriancoder> | 2004-08-08 01:37:39 +0000 |
commit | 20b4bac29931ed44b8e379f98397c20330d0d8c1 (patch) | |
tree | 91e35fd5d3b42ea4ebf22f1b874f7c557bb15a5a /dxr3interface.c | |
parent | c47666d42f7972e1b51f9de61ce0fa27c72f3127 (diff) | |
download | vdr-plugin-dxr3-20b4bac29931ed44b8e379f98397c20330d0d8c1.tar.gz vdr-plugin-dxr3-20b4bac29931ed44b8e379f98397c20330d0d8c1.tar.bz2 |
fixed output of anamorphic video, if tv aspect is configured to 16:9 in DVB setup menu.
Diffstat (limited to 'dxr3interface.c')
-rw-r--r-- | dxr3interface.c | 1 |
1 files changed, 1 insertions, 0 deletions
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) { |