summaryrefslogtreecommitdiff
path: root/avmedia/source/macavf/player.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'avmedia/source/macavf/player.hxx')
-rw-r--r--avmedia/source/macavf/player.hxx38
1 files changed, 19 insertions, 19 deletions
diff --git a/avmedia/source/macavf/player.hxx b/avmedia/source/macavf/player.hxx
index 8d6d33c4e1e6..9f26b47b1455 100644
--- a/avmedia/source/macavf/player.hxx
+++ b/avmedia/source/macavf/player.hxx
@@ -47,30 +47,30 @@ public:
bool create( AVAsset* );
// XPlayer
- virtual void SAL_CALL start() throw (css::uno::RuntimeException) SAL_OVERRIDE;
- virtual void SAL_CALL stop() throw (css::uno::RuntimeException) SAL_OVERRIDE;
- virtual sal_Bool SAL_CALL isPlaying() throw (css::uno::RuntimeException) SAL_OVERRIDE;
- virtual double SAL_CALL getDuration() throw (css::uno::RuntimeException) SAL_OVERRIDE;
- virtual void SAL_CALL setMediaTime( double fTime ) throw (css::uno::RuntimeException) SAL_OVERRIDE;
- virtual double SAL_CALL getMediaTime() throw (css::uno::RuntimeException) SAL_OVERRIDE;
+ virtual void SAL_CALL start() throw (css::uno::RuntimeException) override;
+ virtual void SAL_CALL stop() throw (css::uno::RuntimeException) override;
+ virtual sal_Bool SAL_CALL isPlaying() throw (css::uno::RuntimeException) override;
+ virtual double SAL_CALL getDuration() throw (css::uno::RuntimeException) override;
+ virtual void SAL_CALL setMediaTime( double fTime ) throw (css::uno::RuntimeException) override;
+ virtual double SAL_CALL getMediaTime() throw (css::uno::RuntimeException) override;
virtual void SAL_CALL setStopTime( double fTime ) throw (css::uno::RuntimeException);
virtual double SAL_CALL getStopTime() throw (css::uno::RuntimeException);
- virtual void SAL_CALL setPlaybackLoop( sal_Bool bSet ) throw (css::uno::RuntimeException) SAL_OVERRIDE;
- virtual sal_Bool SAL_CALL isPlaybackLoop() throw (css::uno::RuntimeException) SAL_OVERRIDE;
- virtual void SAL_CALL setMute( sal_Bool bSet ) throw (css::uno::RuntimeException) SAL_OVERRIDE;
- virtual sal_Bool SAL_CALL isMute() throw (css::uno::RuntimeException) SAL_OVERRIDE;
- virtual void SAL_CALL setVolumeDB( sal_Int16 nVolumeDB ) throw (css::uno::RuntimeException) SAL_OVERRIDE;
- virtual sal_Int16 SAL_CALL getVolumeDB() throw (css::uno::RuntimeException) SAL_OVERRIDE;
- virtual css::awt::Size SAL_CALL getPreferredPlayerWindowSize( ) throw (css::uno::RuntimeException) SAL_OVERRIDE;
- virtual css::uno::Reference< css::media::XPlayerWindow > SAL_CALL createPlayerWindow( const css::uno::Sequence< css::uno::Any >& aArguments ) throw (css::uno::RuntimeException) SAL_OVERRIDE;
- virtual css::uno::Reference< css::media::XFrameGrabber > SAL_CALL createFrameGrabber( ) throw (css::uno::RuntimeException) SAL_OVERRIDE;
+ virtual void SAL_CALL setPlaybackLoop( sal_Bool bSet ) throw (css::uno::RuntimeException) override;
+ virtual sal_Bool SAL_CALL isPlaybackLoop() throw (css::uno::RuntimeException) override;
+ virtual void SAL_CALL setMute( sal_Bool bSet ) throw (css::uno::RuntimeException) override;
+ virtual sal_Bool SAL_CALL isMute() throw (css::uno::RuntimeException) override;
+ virtual void SAL_CALL setVolumeDB( sal_Int16 nVolumeDB ) throw (css::uno::RuntimeException) override;
+ virtual sal_Int16 SAL_CALL getVolumeDB() throw (css::uno::RuntimeException) override;
+ virtual css::awt::Size SAL_CALL getPreferredPlayerWindowSize( ) throw (css::uno::RuntimeException) override;
+ virtual css::uno::Reference< css::media::XPlayerWindow > SAL_CALL createPlayerWindow( const css::uno::Sequence< css::uno::Any >& aArguments ) throw (css::uno::RuntimeException) override;
+ virtual css::uno::Reference< css::media::XFrameGrabber > SAL_CALL createFrameGrabber( ) throw (css::uno::RuntimeException) override;
// XServiceInfo
- virtual ::rtl::OUString SAL_CALL getImplementationName() throw (css::uno::RuntimeException) SAL_OVERRIDE;
- virtual sal_Bool SAL_CALL supportsService( const ::rtl::OUString& ServiceName ) throw (css::uno::RuntimeException) SAL_OVERRIDE;
- virtual css::uno::Sequence< ::rtl::OUString > SAL_CALL getSupportedServiceNames( ) throw (css::uno::RuntimeException) SAL_OVERRIDE;
+ virtual ::rtl::OUString SAL_CALL getImplementationName() throw (css::uno::RuntimeException) override;
+ virtual sal_Bool SAL_CALL supportsService( const ::rtl::OUString& ServiceName ) throw (css::uno::RuntimeException) override;
+ virtual css::uno::Sequence< ::rtl::OUString > SAL_CALL getSupportedServiceNames( ) throw (css::uno::RuntimeException) override;
AVPlayer* getAVPlayer() const { return mpPlayer; }
- virtual bool handleObservation( NSString* pKeyPath ) SAL_OVERRIDE;
+ virtual bool handleObservation( NSString* pKeyPath ) override;
private:
css::uno::Reference< css::lang::XMultiServiceFactory > mxMgr;