summaryrefslogtreecommitdiff
path: root/avmedia
diff options
context:
space:
mode:
authorVladimir Glazounov <vg@openoffice.org>2005-03-23 11:31:28 +0000
committerVladimir Glazounov <vg@openoffice.org>2005-03-23 11:31:28 +0000
commit63d0263506af3d3da3cefbea8339481664b82187 (patch)
treec668c23429849c21a4442a14b48fb7f72cac4fcf /avmedia
parent1c5cf5694233a2d47afafbb6562a40f9055ddfd3 (diff)
INTEGRATION: CWS jmf5 (1.1.1.1.20); FILE MERGED
2005/01/20 15:20:07 ka 1.1.1.1.20.2: #i37255#: added FrameGrabber implementation 2005/01/19 14:36:16 ka 1.1.1.1.20.1: #i37255#: added FrameGrabber
Diffstat (limited to 'avmedia')
-rw-r--r--avmedia/source/win/player.hxx10
1 files changed, 7 insertions, 3 deletions
diff --git a/avmedia/source/win/player.hxx b/avmedia/source/win/player.hxx
index e7b41ddde3c6..b9ec8e4edeca 100644
--- a/avmedia/source/win/player.hxx
+++ b/avmedia/source/win/player.hxx
@@ -2,9 +2,9 @@
*
* $RCSfile: player.hxx,v $
*
- * $Revision: 1.1.1.1 $
+ * $Revision: 1.2 $
*
- * last change: $Author: ka $ $Date: 2004-08-23 09:04:41 $
+ * last change: $Author: vg $ $Date: 2005-03-23 12:31:28 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -92,7 +92,7 @@ class Player : public ::cppu::WeakImplHelper2< ::com::sun::star::media::XPlayer,
{
public:
- Player();
+ Player( const ::com::sun::star::uno::Reference< ::com::sun::star::lang::XMultiServiceFactory >& rxMgr );
~Player();
bool create( const ::rtl::OUString& rURL );
@@ -122,6 +122,7 @@ public:
virtual sal_Int16 SAL_CALL getVolumeDB( ) throw (::com::sun::star::uno::RuntimeException);
virtual ::com::sun::star::awt::Size SAL_CALL getPreferredPlayerWindowSize( ) throw (::com::sun::star::uno::RuntimeException);
virtual ::com::sun::star::uno::Reference< ::com::sun::star::media::XPlayerWindow > SAL_CALL createPlayerWindow( const ::com::sun::star::uno::Sequence< ::com::sun::star::uno::Any >& aArguments ) throw (::com::sun::star::uno::RuntimeException);
+ virtual ::com::sun::star::uno::Reference< ::com::sun::star::media::XFrameGrabber > SAL_CALL createFrameGrabber( ) throw (::com::sun::star::uno::RuntimeException);
// XServiceInfo
virtual ::rtl::OUString SAL_CALL getImplementationName( ) throw (::com::sun::star::uno::RuntimeException);
@@ -130,6 +131,9 @@ public:
private:
+ ::com::sun::star::uno::Reference< ::com::sun::star::lang::XMultiServiceFactory > mxMgr;
+
+ ::rtl::OUString maURL;
IGraphBuilder* mpGB;
IBaseFilter* mpOMF;
IMediaControl* mpMC;