1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
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 .
22 #include <osl/conditn.h>
23 #include "macavfcommon.hxx"
24 #include <cppuhelper/implbase.hxx>
26 #include <com/sun/star/media/XPlayer.hpp>
28 namespace avmedia::macavf
{
31 : public MacAVObserverHandler
32 , public ::cppu::WeakImplHelper
< css::media::XPlayer
,
33 css::lang::XServiceInfo
>
37 virtual ~Player() override
;
39 bool create( const OUString
& rURL
);
40 bool create( AVAsset
* );
43 virtual void SAL_CALL
start() override
;
44 virtual void SAL_CALL
stop() override
;
45 virtual sal_Bool SAL_CALL
isPlaying() override
;
46 virtual double SAL_CALL
getDuration() override
;
47 virtual void SAL_CALL
setMediaTime( double fTime
) override
;
48 virtual double SAL_CALL
getMediaTime() override
;
49 /// @throws css::uno::RuntimeException
50 virtual void setStopTime( double fTime
);
51 /// @throws css::uno::RuntimeException
52 virtual double getStopTime();
53 virtual void SAL_CALL
setPlaybackLoop( sal_Bool bSet
) override
;
54 virtual sal_Bool SAL_CALL
isPlaybackLoop() override
;
55 virtual void SAL_CALL
setMute( sal_Bool bSet
) override
;
56 virtual sal_Bool SAL_CALL
isMute() override
;
57 virtual void SAL_CALL
setVolumeDB( sal_Int16 nVolumeDB
) override
;
58 virtual sal_Int16 SAL_CALL
getVolumeDB() override
;
59 virtual css::awt::Size SAL_CALL
getPreferredPlayerWindowSize( ) override
;
60 virtual css::uno::Reference
< css::media::XPlayerWindow
> SAL_CALL
createPlayerWindow( const css::uno::Sequence
< css::uno::Any
>& aArguments
) override
;
61 virtual css::uno::Reference
< css::media::XFrameGrabber
> SAL_CALL
createFrameGrabber( ) override
;
63 virtual OUString SAL_CALL
getImplementationName() override
;
64 virtual sal_Bool SAL_CALL
supportsService( const OUString
& ServiceName
) override
;
65 virtual css::uno::Sequence
< OUString
> SAL_CALL
getSupportedServiceNames( ) override
;
67 AVPlayer
* getAVPlayer() const { return mpPlayer
; }
68 virtual bool handleObservation( NSString
* pKeyPath
) override
;
74 float mfUnmutedVolume
;
81 } // namespace avmedia::macavf
83 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */