fix baseline build (old cairo) - 'cairo_rectangle_int_t' does not name a type
[LibreOffice.git] / avmedia / source / vlc / vlcuno.cxx
blob67b0c0c92307b0df6cd6ba3fe523e9a54b984182
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /*
3 * This file is part of the LibreOffice project.
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/.
9 * This file incorporates work covered by the following license notice:
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 .
20 #include <comphelper/processfactory.hxx>
21 #include <comphelper/configuration.hxx>
22 #include <officecfg/Office/Common.hxx>
24 #include "vlccommon.hxx"
25 #include "vlcmanager.hxx"
27 using namespace ::com::sun::star;
29 #define IMPL_NAME "com.sun.star.comp.media.Manager_VLC"
30 #define SERVICE_NAME "com.sun.star.comp.avmedia.Manager_VLC"
32 static uno::Reference< uno::XInterface > SAL_CALL create_MediaPlayer( const uno::Reference< lang::XMultiServiceFactory >& rxFact )
34 SAL_INFO("avmedia", "create VLC Media player !\n");
36 // Experimental for now - code is neither elegant nor well tested.
37 uno::Reference< uno::XComponentContext > xContext = comphelper::getProcessComponentContext();
38 if (!xContext.is() || !officecfg::Office::Common::Misc::ExperimentalMode::get(xContext))
39 return NULL;
41 static uno::Reference< uno::XInterface > manager( *new ::avmedia::vlc::Manager( rxFact ) );
42 return manager;
45 extern "C" SAL_DLLPUBLIC_EXPORT void* SAL_CALL avmediavlc_component_getFactory( const sal_Char* pImplName, void* pServiceManager, void* /*pRegistryKey*/ )
47 uno::Reference< lang::XSingleServiceFactory > xFactory;
48 void* pRet = 0;
50 // Experimental for now - code is neither elegant nor well tested.
51 uno::Reference< uno::XComponentContext > xContext = comphelper::getProcessComponentContext();
52 if (!xContext.is() || !officecfg::Office::Common::Misc::ExperimentalMode::get(xContext))
53 return NULL;
55 SAL_INFO("avmedia", "Create VLC Media component: '" << pImplName << "'\n");
56 if( rtl_str_compare( pImplName, IMPL_NAME ) == 0 )
58 const OUString aServiceName( SERVICE_NAME );
59 xFactory = uno::Reference< lang::XSingleServiceFactory >( ::cppu::createSingleFactory(
60 static_cast< lang::XMultiServiceFactory* >( pServiceManager ),
61 IMPL_NAME, create_MediaPlayer, uno::Sequence< OUString >( &aServiceName, 1 ) ) );
64 if( xFactory.is() )
66 xFactory->acquire();
67 pRet = xFactory.get();
70 return pRet;
73 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */