diff options
author | Frans Englich <frans.englich@nokia.com> | 2009-07-13 09:44:55 (GMT) |
---|---|---|
committer | Frans Englich <frans.englich@nokia.com> | 2009-07-13 09:44:55 (GMT) |
commit | 975af6c3c81788e39422c55f67ffabfebd31d9be (patch) | |
tree | 20c505f9cb0a4b6538a89d3cadc939a2ea3975e6 /src/3rdparty/phonon/mmf/mediaobject.h | |
parent | 7ead0ff857d8f164e9cfa3f756a1b234a76eedc6 (diff) | |
download | Qt-975af6c3c81788e39422c55f67ffabfebd31d9be.zip Qt-975af6c3c81788e39422c55f67ffabfebd31d9be.tar.gz Qt-975af6c3c81788e39422c55f67ffabfebd31d9be.tar.bz2 |
Build fixes, debug code.
Diffstat (limited to 'src/3rdparty/phonon/mmf/mediaobject.h')
-rw-r--r-- | src/3rdparty/phonon/mmf/mediaobject.h | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/src/3rdparty/phonon/mmf/mediaobject.h b/src/3rdparty/phonon/mmf/mediaobject.h index 1512919..3afa3b4 100644 --- a/src/3rdparty/phonon/mmf/mediaobject.h +++ b/src/3rdparty/phonon/mmf/mediaobject.h @@ -20,6 +20,7 @@ along with this library. If not, see <http://www.gnu.org/licenses/>. #define PHONON_MMF_MEDIAOBJECT_H #include <DrmAudioSamplePlayer.h> +#include <VideoPlayer.h> #include <Phonon/MediaSource> #include <Phonon/mediaobjectinterface.h> @@ -33,16 +34,25 @@ namespace Phonon { class AudioOutput; + /** + * + * See + * <a href="http://wiki.forum.nokia.com/index.php/How_to_play_a_video_file_using_CVideoPlayerUtility">How to + * play a video file using CVideoPlayerUtility</a> + */ class MediaObject : public QObject , public MediaObjectInterface , public MDrmAudioPlayerCallback , public MAudioLoadingObserver + //, public MVideoPlayerUtilityObserver { Q_OBJECT Q_INTERFACES(Phonon::MediaObjectInterface) public: MediaObject(QObject *parent); virtual ~MediaObject(); + + // MediaObjectInterface virtual void play(); virtual void pause(); virtual void stop(); |