fdo#74697 Add Bluez 5 support for impress remote.
[LibreOffice.git] / avmedia / source / quicktime / framegrabber.mm
blob3e262f1e24e439c616ebe25a97ca5b9832456951
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /*
3  * This file is part of the LibreOffice project.
4  *
5  * This Source Code Form is subject to the terms of the Mozilla Public
6  * License, v. 2.0. If a copy of the MPL was not distributed with this
7  * file, You can obtain one at http://mozilla.org/MPL/2.0/.
8  *
9  * This file incorporates work covered by the following license notice:
10  *
11  *   Licensed to the Apache Software Foundation (ASF) under one or more
12  *   contributor license agreements. See the NOTICE file distributed
13  *   with this work for additional information regarding copyright
14  *   ownership. The ASF licenses this file to you under the Apache
15  *   License, Version 2.0 (the "License"); you may not use this file
16  *   except in compliance with the License. You may obtain a copy of
17  *   the License at http://www.apache.org/licenses/LICENSE-2.0 .
18  */
20 #include "framegrabber.hxx"
21 #include "player.hxx"
23 #include <tools/stream.hxx>
24 #include <vcl/graph.hxx>
25 #include <vcl/cvtgrf.hxx>
26 #include <unotools/localfilehelper.hxx>
28 #define AVMEDIA_QUICKTIME_FRAMEGRABBER_IMPLEMENTATIONNAME "com.sun.star.comp.avmedia.FrameGrabber_Quicktime"
29 #define AVMEDIA_QUICKTIME_FRAMEGRABBER_SERVICENAME "com.sun.star.media.FrameGrabber_Quicktime"
31 using namespace ::com::sun::star;
33 namespace avmedia { namespace quicktime {
35 // ----------------
36 // - FrameGrabber -
37 // ----------------
39 FrameGrabber::FrameGrabber( const uno::Reference< lang::XMultiServiceFactory >& rxMgr ) :
40     mxMgr( rxMgr )
42     OSErr result;
44     NSAutoreleasePool* pool = [[NSAutoreleasePool alloc] init];
45     // check the version of QuickTime installed
46     result = Gestalt(gestaltQuickTime,&mnVersion);
47      if ((result == noErr) && (mnVersion >= QT701))
48     {
49       // we have version 7.01 or later, initialize
50       mpMovie = [QTMovie movie];
51       [mpMovie retain];
52       mbInitialized = true;
53     }
54     [pool release];
57 // ------------------------------------------------------------------------------
59 FrameGrabber::~FrameGrabber()
61     if( mbInitialized )
62     {
63         if( mpMovie )
64         {
65             [mpMovie release];
66             mpMovie = nil;
67         }
68     }
71 // ------------------------------------------------------------------------------
73 bool FrameGrabber::create( const ::rtl::OUString& rURL )
75     bool bRet = false;
76     maURL = rURL;
77     NSAutoreleasePool* pool = [[NSAutoreleasePool alloc] init];
78     NSString* aNSStr = [[[NSString alloc] initWithCharacters: rURL.getStr() length: rURL.getLength()]stringByAddingPercentEscapesUsingEncoding:NSUTF8StringEncoding] ;
79     NSURL* aURL = [NSURL URLWithString:aNSStr ];
81     // create the Movie
83         mpMovie = [mpMovie initWithURL:aURL error:nil];
84         if(mpMovie)
85         {
86             [mpMovie retain];
87             bRet = true;
88         }
90     [pool release];
92     return( bRet );
95 // ------------------------------------------------------------------------------
97 uno::Reference< graphic::XGraphic > SAL_CALL FrameGrabber::grabFrame( double fMediaTime )
98     throw (uno::RuntimeException)
100     uno::Reference< graphic::XGraphic > xRet;
102     NSImage* pImage = [mpMovie frameImageAtTime: QTMakeTimeWithTimeInterval(fMediaTime)];
103     NSData *pBitmap = [pImage TIFFRepresentation];
104     long nSize = [pBitmap length];
105     const void* pBitmapData = [pBitmap bytes];
106     SvMemoryStream  aMemStm( (char *)pBitmapData, nSize, STREAM_READ | STREAM_WRITE );
107     Graphic aGraphic;
108     if ( GraphicConverter::Import( aMemStm, aGraphic, CVT_TIF ) == ERRCODE_NONE )
109     {
110         xRet = aGraphic.GetXGraphic();
111     }
113     return xRet;
116 // ------------------------------------------------------------------------------
118 ::rtl::OUString SAL_CALL FrameGrabber::getImplementationName(  )
119     throw (uno::RuntimeException)
121     return ::rtl::OUString( AVMEDIA_QUICKTIME_FRAMEGRABBER_IMPLEMENTATIONNAME );
124 // ------------------------------------------------------------------------------
126 sal_Bool SAL_CALL FrameGrabber::supportsService( const ::rtl::OUString& ServiceName )
127     throw (uno::RuntimeException)
129     return ( ServiceName == AVMEDIA_QUICKTIME_FRAMEGRABBER_SERVICENAME );
132 // ------------------------------------------------------------------------------
134 uno::Sequence< ::rtl::OUString > SAL_CALL FrameGrabber::getSupportedServiceNames(  )
135     throw (uno::RuntimeException)
137     uno::Sequence< ::rtl::OUString > aRet(1);
138     aRet[0] = ::rtl::OUString( AVMEDIA_QUICKTIME_FRAMEGRABBER_SERVICENAME );
140     return aRet;
143 } // namespace quicktime
144 } // namespace avmedia
146 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */