diff options
-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; |