summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--HISTORY1
-rw-r--r--dxr3interface.c1
2 files changed, 2 insertions, 0 deletions
diff --git a/HISTORY b/HISTORY
index b6ec0c1..5e338d7 100644
--- a/HISTORY
+++ b/HISTORY
@@ -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;