diff options
author | Zolnai Tamás <tamas.zolnai@collabora.com> | 2014-04-20 18:00:33 +0200 |
---|---|---|
committer | Zolnai Tamás <tamas.zolnai@collabora.com> | 2014-04-20 18:00:48 +0200 |
commit | d8920e6d1de0698f7c132d74cc34e2f1021c6fb3 (patch) | |
tree | 83a8b9101fa46c9e3a7bd3ba32b6cab5b91b4a2e /slideshow | |
parent | 78609b36e0d61bd5535cfdc1ab2f1e0e59505042 (diff) |
Make OGLFrameGrabber work
Steps of grabFrame
- Init opengl context
- Call libgltf to render
- Get a RGB buffer from libgltf
- Create a Bitmap from this RGB buffer
Additionally:
- Using mimetype is neccessary to decide which player to create.
- bAllowToCreateReplacementGraphic is unneeded.
Change-Id: I7fef043a3341771389144a4f4cac71b0862ef8a7
Diffstat (limited to 'slideshow')
-rw-r--r-- | slideshow/source/engine/shapes/viewmediashape.cxx | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/slideshow/source/engine/shapes/viewmediashape.cxx b/slideshow/source/engine/shapes/viewmediashape.cxx index 135a372959b3..22fa24e4523b 100644 --- a/slideshow/source/engine/shapes/viewmediashape.cxx +++ b/slideshow/source/engine/shapes/viewmediashape.cxx @@ -191,11 +191,15 @@ namespace slideshow if( !mpMediaWindow.get() && !mxPlayerWindow.is() ) { OUString sURL; + OUString sMimeType; uno::Reference< beans::XPropertySet > xPropSet( mxShape, uno::UNO_QUERY ); if (xPropSet.is()) + { xPropSet->getPropertyValue("PrivateTempFileURL") >>= sURL; + xPropSet->getPropertyValue("MediaMimeType") >>= sMimeType; + } - const Graphic aGraphic(avmedia::MediaWindow::grabFrame(sURL,"", true)); + const Graphic aGraphic(avmedia::MediaWindow::grabFrame(sURL,"",sMimeType)); const BitmapEx aBmp = aGraphic.GetBitmapEx(); uno::Reference< rendering::XBitmap > xBitmap(vcl::unotools::xBitmapFromBitmapEx( |