tdf#154285 Check upper bound of arguments in SbRtl_Minute function
[LibreOffice.git] / avmedia / source / macavf / manager.mm
blobd240bb27a8d11f818c297f46edd1f1f0c93eac01
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 "manager.hxx"
21 #include "player.hxx"
22 #include <tools/urlobj.hxx>
23 #include <osl/diagnose.h>
24 #include <rtl/ref.hxx>
26 using namespace ::com::sun::star;
28 namespace avmedia::macavf {
30 Manager::Manager()
35 Manager::~Manager()
39 uno::Reference< media::XPlayer > SAL_CALL Manager::createPlayer( const OUString& rURL )
41     rtl::Reference<Player>              xPlayer( new Player() );
42     INetURLObject                       aURL( rURL );
44     if( !xPlayer->create( aURL.GetMainURL( INetURLObject::DecodeMechanism::Unambiguous ) )  )
45         return {};
47     return uno::Reference<media::XPlayer>(xPlayer);
51 OUString SAL_CALL Manager::getImplementationName(  )
53     return "com.sun.star.comp.avmedia.Manager_MacAVF";
57 sal_Bool SAL_CALL Manager::supportsService( const OUString& ServiceName )
59     return ServiceName == "com.sun.star.media.Manager_MacAVF";
63 uno::Sequence< OUString > SAL_CALL Manager::getSupportedServiceNames(  )
65     return { "com.sun.star.media.Manager_MacAVF" };
68 } // namespace avmedia::macavf
70 extern "C" SAL_DLLPUBLIC_EXPORT css::uno::XInterface*
71 com_sun_star_comp_avmedia_Manager_MacAVF_get_implementation(
72     css::uno::XComponentContext* , css::uno::Sequence<css::uno::Any> const&)
74     return cppu::acquire(new ::avmedia::macavf::Manager());
77 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */