diff options
author | scop <scop> | 2005-04-06 21:07:16 +0000 |
---|---|---|
committer | scop <scop> | 2005-04-06 21:07:16 +0000 |
commit | 258c2f115e84950a2fd6ea17b56ccf67b64d0c60 (patch) | |
tree | 16af388a849173546a1ba771e1b12325bbfa3764 | |
parent | f7381ac847ee970420e9c740c71c7709c849dc68 (diff) | |
download | vdr-plugin-dxr3-258c2f115e84950a2fd6ea17b56ccf67b64d0c60.tar.gz vdr-plugin-dxr3-258c2f115e84950a2fd6ea17b56ccf67b64d0c60.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
@@ -283,3 +283,4 @@ NOTE: I havent found time to include all of the languages, will be done in pre2 (Ville Skyttä, Martin Cap, Luca Olivetti) - remove unused dxr3unixserversocket.* from 0.2.x (Ville Skyttä) - fix sound with the MP3 plugin and VDR >= 1.3.18 (Antti Järvinen) +- fix aspect ratio after returning from the MPlayer plugin (Luca Olivetti) diff --git a/dxr3interface.c b/dxr3interface.c index e5f34ca..6766a78 100644 --- a/dxr3interface.c +++ b/dxr3interface.c @@ -750,6 +750,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; |