summaryrefslogtreecommitdiff
path: root/avmedia
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2017-12-06 09:41:40 +0100
committerStephan Bergmann <sbergman@redhat.com>2017-12-06 09:41:40 +0100
commit696fc45b4be3067176227637f448bee03fb2f7a6 (patch)
tree5b6e0884f8c90c0ee838e219d83849907957be69 /avmedia
parentc0ac78c97174fcde68daf174f6e8ade502c507d3 (diff)
loplugin:salcall
Change-Id: Icf9309addd971c5d98d4057dba6619c4eef9ea6d
Diffstat (limited to 'avmedia')
-rw-r--r--avmedia/source/vlc/vlcplayer.cxx4
-rw-r--r--avmedia/source/vlc/vlcplayer.hxx4
2 files changed, 4 insertions, 4 deletions
diff --git a/avmedia/source/vlc/vlcplayer.cxx b/avmedia/source/vlc/vlcplayer.cxx
index 2b1c75967291..a1e07da62b33 100644
--- a/avmedia/source/vlc/vlcplayer.cxx
+++ b/avmedia/source/vlc/vlcplayer.cxx
@@ -92,7 +92,7 @@ double SAL_CALL VLCPlayer::getDuration()
return static_cast<double>( mMedia.getDuration() ) / MS_IN_SEC;
}
-void SAL_CALL VLCPlayer::setScale( float factor )
+void VLCPlayer::setScale( float factor )
{
::osl::MutexGuard aGuard(m_aMutex);
mPlayer.setScale( factor );
@@ -201,7 +201,7 @@ namespace
}
}
-void SAL_CALL VLCPlayer::setWindowID( const intptr_t windowID )
+void VLCPlayer::setWindowID( const intptr_t windowID )
{
::osl::MutexGuard aGuard( m_aMutex );
mPlayer.stop();
diff --git a/avmedia/source/vlc/vlcplayer.hxx b/avmedia/source/vlc/vlcplayer.hxx
index 97b7ffa26425..78fa06f4a251 100644
--- a/avmedia/source/vlc/vlcplayer.hxx
+++ b/avmedia/source/vlc/vlcplayer.hxx
@@ -58,8 +58,8 @@ public:
unsigned getWidth() const;
unsigned getHeight() const;
- void SAL_CALL setScale( float factor );
- void SAL_CALL setWindowID( const intptr_t windowID );
+ void setScale( float factor );
+ void setWindowID( const intptr_t windowID );
void SAL_CALL start() override;
void SAL_CALL stop() override;