summaryrefslogtreecommitdiff
path: root/avmedia/source/vlc/vlcplayer.hxx
diff options
context:
space:
mode:
authorMinh Ngo <nlminhtl@gmail.com>2013-09-14 19:56:24 +0300
committerMinh Ngo <nlminhtl@gmail.com>2013-09-14 19:57:15 +0300
commit6a9d3e7f57278bb0ab2f72d71000c76506f29394 (patch)
tree91b8555d2818ffad0e4b2368adddd7862af726e5 /avmedia/source/vlc/vlcplayer.hxx
parentb3e0c8081dc89228653d70e12ecfe1397c70fde5 (diff)
Avmedia/VLC component code refactoring.
Change-Id: Ibba5874e63356069d1af725d98980910dbaf8eb1
Diffstat (limited to 'avmedia/source/vlc/vlcplayer.hxx')
-rw-r--r--avmedia/source/vlc/vlcplayer.hxx14
1 files changed, 7 insertions, 7 deletions
diff --git a/avmedia/source/vlc/vlcplayer.hxx b/avmedia/source/vlc/vlcplayer.hxx
index 3da58c6e8b98..be50c4c8dc1f 100644
--- a/avmedia/source/vlc/vlcplayer.hxx
+++ b/avmedia/source/vlc/vlcplayer.hxx
@@ -42,19 +42,19 @@ typedef ::cppu::WeakComponentImplHelper2< ::com::sun::star::media::XPlayer,
class VLCPlayer : public ::cppu::BaseMutex,
public VLC_Base
{
- VLC::Instance& mInstance;
- VLC::EventHandler& mEventHandler;
+ wrapper::Instance& mInstance;
+ wrapper::EventHandler& mEventHandler;
- VLC::Media mMedia;
- VLC::Player mPlayer;
- VLC::EventManager mEventManager;
+ wrapper::Media mMedia;
+ wrapper::Player mPlayer;
+ wrapper::EventManager mEventManager;
const rtl::OUString mUrl;
bool mPlaybackLoop;
::com::sun::star::uno::Reference< css::media::XFrameGrabber > mrFrameGrabber;
public:
VLCPlayer( const rtl::OUString& url,
- VLC::Instance& instance,
- VLC::EventHandler& eh );
+ wrapper::Instance& instance,
+ wrapper::EventHandler& eh );
void SAL_CALL start() throw ( ::com::sun::star::uno::RuntimeException );
void SAL_CALL stop() throw ( ::com::sun::star::uno::RuntimeException );