diff options
author | Oliver Bolte <obo@openoffice.org> | 2006-07-13 11:00:45 +0000 |
---|---|---|
committer | Oliver Bolte <obo@openoffice.org> | 2006-07-13 11:00:45 +0000 |
commit | 21836afbd976bc178aa176d76626d574aadbfc15 (patch) | |
tree | ebe2c51f33a73a650f70bf2beec5cc75a2a3690a /offapi/com/sun/star/media | |
parent | 2197f34ce285c304cbce048c7701c755d4801539 (diff) |
INTEGRATION: CWS jsc8 (1.3.126); FILE MERGED
2006/06/09 07:00:25 jsc 1.3.126.1: #i65749# insert comments
Diffstat (limited to 'offapi/com/sun/star/media')
-rw-r--r-- | offapi/com/sun/star/media/XFrameGrabber.idl | 15 | ||||
-rw-r--r-- | offapi/com/sun/star/media/XManager.idl | 16 |
2 files changed, 22 insertions, 9 deletions
diff --git a/offapi/com/sun/star/media/XFrameGrabber.idl b/offapi/com/sun/star/media/XFrameGrabber.idl index e5e5d6f4eee5..1e181d37d59f 100644 --- a/offapi/com/sun/star/media/XFrameGrabber.idl +++ b/offapi/com/sun/star/media/XFrameGrabber.idl @@ -4,9 +4,9 @@ * * $RCSfile: XFrameGrabber.idl,v $ * - * $Revision: 1.3 $ + * $Revision: 1.4 $ * - * last change: $Author: rt $ $Date: 2005-09-08 02:20:06 $ + * last change: $Author: obo $ $Date: 2006-07-13 12:00:33 $ * * The Contents of this file are made available subject to * the terms of GNU Lesser General Public License Version 2.1. @@ -41,10 +41,17 @@ module com { module sun { module star { module media { -/** This interface ... +/** This interface provides an easy access to a stream images using + their position in the time. */ -interface XFrameGrabber : ::com::sun::star::uno::XInterface +interface XFrameGrabber { + /** returns the image of the underlying stream at a given position + + @param fMediaTime + the time in seconds of the image to get. This time has to + be a positive value inferior to the stream duration. + */ ::com::sun::star::graphic::XGraphic grabFrame( [in] double fMediaTime ); }; }; }; }; }; diff --git a/offapi/com/sun/star/media/XManager.idl b/offapi/com/sun/star/media/XManager.idl index 318a0b088e2c..b3439c654271 100644 --- a/offapi/com/sun/star/media/XManager.idl +++ b/offapi/com/sun/star/media/XManager.idl @@ -4,9 +4,9 @@ * * $RCSfile: XManager.idl,v $ * - * $Revision: 1.3 $ + * $Revision: 1.4 $ * - * last change: $Author: rt $ $Date: 2005-09-08 02:20:19 $ + * last change: $Author: obo $ $Date: 2006-07-13 12:00:45 $ * * The Contents of this file are made available subject to * the terms of GNU Lesser General Public License Version 2.1. @@ -44,11 +44,17 @@ module com { module sun { module star { module media { -/** This interface ... +/** the <type scope="com::sun::star::media">XPlayer</type> + factory interface */ -interface XManager : ::com::sun::star::uno::XInterface +interface XManager { - ::com::sun::star::media::XPlayer createPlayer( [in] string aURL ); + /** creates a new media player + + @param aURL + the URL of the media to play + */ + XPlayer createPlayer( [in] string aURL ); }; }; }; }; }; |