diff options
author | Thierry Bastian <thierry.bastian@nokia.com> | 2009-06-02 13:20:04 (GMT) |
---|---|---|
committer | Thierry Bastian <thierry.bastian@nokia.com> | 2009-06-02 13:23:02 (GMT) |
commit | 7a095c52057633e9050e74622f8a990738c2741b (patch) | |
tree | d019701bb3224027af86922310915b2202a844ba /src | |
parent | 5be3335436501c5e0d3f5cb047edba1371aeb187 (diff) | |
download | Qt-7a095c52057633e9050e74622f8a990738c2741b.zip Qt-7a095c52057633e9050e74622f8a990738c2741b.tar.gz Qt-7a095c52057633e9050e74622f8a990738c2741b.tar.bz2 |
Fixed aspect ratio on Windows
- When changing the aspect ratio, the video wouldn't update.
- The VMR9 can in some cases try to manage the aspect ratio itself
and then fights our system. This is now disabled.
Diffstat (limited to 'src')
-rw-r--r-- | src/3rdparty/phonon/ds9/videorenderer_vmr9.cpp | 1 | ||||
-rw-r--r-- | src/3rdparty/phonon/ds9/videowidget.cpp | 2 |
2 files changed, 3 insertions, 0 deletions
diff --git a/src/3rdparty/phonon/ds9/videorenderer_vmr9.cpp b/src/3rdparty/phonon/ds9/videorenderer_vmr9.cpp index 298e9fa..81ebb8b 100644 --- a/src/3rdparty/phonon/ds9/videorenderer_vmr9.cpp +++ b/src/3rdparty/phonon/ds9/videorenderer_vmr9.cpp @@ -169,6 +169,7 @@ namespace Phonon Q_ASSERT(SUCCEEDED(hr)); ComPointer<IVMRWindowlessControl9> windowlessControl(m_filter, IID_IVMRWindowlessControl9); windowlessControl->SetVideoClippingWindow(reinterpret_cast<HWND>(target->winId())); + windowlessControl->SetAspectRatioMode(VMR9ARMode_None); //we're in control of the size } QImage VideoRendererVMR9::snapshot() const diff --git a/src/3rdparty/phonon/ds9/videowidget.cpp b/src/3rdparty/phonon/ds9/videowidget.cpp index de7ce5f..0ef653f 100644 --- a/src/3rdparty/phonon/ds9/videowidget.cpp +++ b/src/3rdparty/phonon/ds9/videowidget.cpp @@ -261,6 +261,7 @@ namespace Phonon { m_aspectRatio = aspectRatio; updateVideoSize(); + m_widget->update(); } Phonon::VideoWidget::ScaleMode VideoWidget::scaleMode() const @@ -279,6 +280,7 @@ namespace Phonon { m_scaleMode = scaleMode; updateVideoSize(); + m_widget->update(); } void VideoWidget::setBrightness(qreal b) |