diff options
author | scop <scop> | 2005-04-06 21:08:50 +0000 |
---|---|---|
committer | scop <scop> | 2005-04-06 21:08:50 +0000 |
commit | 3def0b5096a7c80e527b105741d26f9fbe7529e6 (patch) | |
tree | 033ed9273b42aafb72d779a2e2b31b73ea9aa278 | |
parent | eabf3e20b8c494b34b935cba80fe514521e093fc (diff) | |
download | vdr-plugin-dxr3-3def0b5096a7c80e527b105741d26f9fbe7529e6.tar.gz vdr-plugin-dxr3-3def0b5096a7c80e527b105741d26f9fbe7529e6.tar.bz2 |
Fix aspect ratio after returning from the MPlayer plugin (Luca Olivetti).
-rw-r--r-- | HISTORY | 1 | ||||
-rw-r--r-- | dxr3interface.c | 1 |
2 files changed, 2 insertions, 0 deletions
@@ -287,3 +287,4 @@ NOTE: I havent found time to include all of the languages, will be done in pre2 - improved GetSTC(): fixes DVB subtitles sync problems (Mikko Tuumanen) - fix compilation with -fPIC, kudos to ffmpeg (Ville Skyttä) - eliminate some compiler warnings (Ville Skyttä) +- fix aspect ratio after returning from the MPlayer plugin (Luca Olivetti) diff --git a/dxr3interface.c b/dxr3interface.c index 8962f5e..ff2101c 100644 --- a/dxr3interface.c +++ b/dxr3interface.c @@ -811,6 +811,7 @@ void cDxr3Interface::ExternalReleaseDevices() if (m_fdSpu > -1) close(m_fdSpu); if (m_fdAudio > -1) close(m_fdAudio); m_fdControl = m_fdVideo = m_fdSpu = m_fdAudio = -1; + m_aspectRatio = UNKNOWN_ASPECT_RATIO; m_ExternalReleased = true; |