summaryrefslogtreecommitdiffstats
path: root/src/3rdparty/phonon/ds9/videorenderer_vmr9.cpp
diff options
context:
space:
mode:
authorThierry Bastian <thierry.bastian@nokia.com>2009-06-02 13:20:04 (GMT)
committerThierry Bastian <thierry.bastian@nokia.com>2009-06-02 13:23:02 (GMT)
commit7a095c52057633e9050e74622f8a990738c2741b (patch)
treed019701bb3224027af86922310915b2202a844ba /src/3rdparty/phonon/ds9/videorenderer_vmr9.cpp
parent5be3335436501c5e0d3f5cb047edba1371aeb187 (diff)
downloadQt-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/3rdparty/phonon/ds9/videorenderer_vmr9.cpp')
-rw-r--r--src/3rdparty/phonon/ds9/videorenderer_vmr9.cpp1
1 files changed, 1 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