diff options
author | scop <scop> | 2005-03-14 19:56:19 +0000 |
---|---|---|
committer | scop <scop> | 2005-03-14 19:56:19 +0000 |
commit | ad728c25a50a5a4e39155f53ac165038303281f7 (patch) | |
tree | 69dd02017250901c372128da9de843b7c879a842 /dxr3interface.h | |
parent | c925d69e19fd1f4218a235276378dc405605b24f (diff) | |
download | vdr-plugin-dxr3-ad728c25a50a5a4e39155f53ac165038303281f7.tar.gz vdr-plugin-dxr3-ad728c25a50a5a4e39155f53ac165038303281f7.tar.bz2 |
Apply get/setVerticalSize part of Luca Olivetti's Xine scaler patch.
Diffstat (limited to 'dxr3interface.h')
-rw-r--r-- | dxr3interface.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/dxr3interface.h b/dxr3interface.h index 1714715..4185a6c 100644 --- a/dxr3interface.h +++ b/dxr3interface.h @@ -86,6 +86,8 @@ public: void SetAspectRatio(uint32_t ratio); uint32_t GetHorizontalSize() const { return m_horizontal; } void SetHorizontalSize(uint32_t horizontal) { m_horizontal = horizontal;}; + uint32_t GetVerticalSize() const { return m_vertical; } + void SetVerticalSize(uint32_t vertical) { m_vertical = vertical;}; // play functions void SetPlayMode(); @@ -143,6 +145,7 @@ private: int m_aspectDelayCounter; uint32_t m_aspectRatio; ///< current used aspect ratio uint32_t m_horizontal; ///< horizontal size of current videostream + uint32_t m_vertical; ///< vertical size of current videostream uint32_t m_audioSampleSize; ///< how big is the sample size for the current audiostream uint32_t m_audioMode; uint32_t m_spuMode; |