summaryrefslogtreecommitdiffstats
path: root/src/3rdparty/phonon/mmf/utils.h
Commit message (Collapse)AuthorAgeFilesLines
* Added a utility function which samples a number of pixels from the screen, ↵Gareth Stockwell2009-09-231-0/+6
| | | | and writes their colors to the debug log
* Added a utility function for reading color of individual pixels from the screenGareth Stockwell2009-09-231-0/+9
|
* Modified file-loading code to use QDir::toNativeSeparatorsGareth Stockwell2009-09-071-9/+0
|
* Reformatted code to comply with Qt styleGareth Stockwell2009-08-281-127/+123
|
* Wrapped code using QT_BEGIN/END_NAMESPACE macrosGareth Stockwell2009-08-281-0/+4
|
* Implemented Backend::availableMimeTypesGareth Stockwell2009-08-251-3/+11
|
* Added spaces to trace output for better alignmentGareth Stockwell2009-08-241-2/+2
|
* Tidied up trace statementsGareth Stockwell2009-08-211-4/+10
|
* Started work on VideoPlayer implementationGareth Stockwell2009-08-181-1/+11
|
* Refactored AudioPlayer and VideoPlayer to separate out common code into ↵Gareth Stockwell2009-08-181-0/+1
| | | | AbstractMediaPlayer
* Merged recognizer changes with abstraction for audio / video playback.Gareth Stockwell2009-08-181-0/+2
| | | | | | | | | | | | | | Audio playback now working to the same extent as prior to the abstraction, with one regression: the initial volume level in the UI is set to zero, although playback is audible. Some cleanup is required: - Functionality common to AudioPlayer and VideoPlayer (e.g. tick timer, changeState function) should be moved into AbstractPlayer. - Files may be opened by multiple instances of MediaObject at at time. For example, the musicplayer example app uses one instance to read file metadata, and one for the actual playback. In order to avoid KErrInUse errors from the file server, files must be opened with an EShare* flag and passed around by handle. At present this is done in a slightly hacky way (i.e. AbstractPlayer::setSource is renamed to setFileSource). - The pointer held by MediaObject::m_player must be checked for nullness in many of the public API calls. This could be made cleaner by implementing a stub derivation of AbstractPlayer, which returns sensible default values. Note that, if functionality such as tick timer handling is going to be pushed upwards from AudioPlayer / VideoPlayer, we should add an intermediate class to the hierarchy so that the overhead of constructing DummyPlayer objects is minimised. At present, media type (audio / video) is only recognised from file streams - this needs to be extended to include HTTP streaming aswell.
* Commit patch by Gareth.Frans Englich2009-08-121-0/+134
The patch originally contained all changed done to MMF Phonon, but this commit contains the changes only Gareth did.