summaryrefslogtreecommitdiff
path: root/softhddevice.cpp
diff options
context:
space:
mode:
authorJohns <johns98@gmx.net>2012-10-10 17:26:49 +0200
committerJohns <johns98@gmx.net>2012-10-10 17:26:49 +0200
commitf640ebdeb5d0af907be4016658ea2229847e39ba (patch)
treeba693ee1060d54fe5f5f1742b204adbca29ee861 /softhddevice.cpp
parentde7c4b2a96a00cb7726de738bf69266ee13ab4b5 (diff)
downloadvdr-plugin-softhddevice-f640ebdeb5d0af907be4016658ea2229847e39ba.tar.gz
vdr-plugin-softhddevice-f640ebdeb5d0af907be4016658ea2229847e39ba.tar.bz2
Report correct size in cSoftHdDevice::GetVideoSize.
Diffstat (limited to 'softhddevice.cpp')
-rw-r--r--softhddevice.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/softhddevice.cpp b/softhddevice.cpp
index ac717e2..100af10 100644
--- a/softhddevice.cpp
+++ b/softhddevice.cpp
@@ -1741,11 +1741,11 @@ void cSoftHdDevice::SetVideoFormat(bool video_format16_9)
** Returns the width, height and video_aspect ratio of the currently
** displayed video material.
**
-** @note the size is used to scale the subtitle.
+** @note the video_aspect is used to scale the subtitle.
*/
void cSoftHdDevice::GetVideoSize(int &width, int &height, double &video_aspect)
{
- ::GetOsdSize(&width, &height, &video_aspect);
+ ::GetVideoSize(&width, &height, &video_aspect);
}
/**