diff options
author | Johns <johns98@gmx.net> | 2012-10-10 17:26:49 +0200 |
---|---|---|
committer | Johns <johns98@gmx.net> | 2012-10-10 17:26:49 +0200 |
commit | f640ebdeb5d0af907be4016658ea2229847e39ba (patch) | |
tree | ba693ee1060d54fe5f5f1742b204adbca29ee861 /softhddevice.cpp | |
parent | de7c4b2a96a00cb7726de738bf69266ee13ab4b5 (diff) | |
download | vdr-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.cpp | 4 |
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); } /** |