Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Modified transparentFill to allow RGBA color to be specified more easily, ↵ | Gareth Stockwell | 2009-09-23 | 1 | -2/+4 |
| | | | | for testing | ||||
* | Added function for writing transparent pixels directly to the backing store | Gareth Stockwell | 2009-09-23 | 3 | -0/+54 |
| | | | | | | See VideoOutput::transparentFill. This should be called from the paintEvent, having removed the TranslucentWindowBackground hack from the mediaplayer demo. As yet this has not been tested. | ||||
* | Added system includes to QtCore project file | Gareth Stockwell | 2009-09-23 | 1 | -0/+2 |
| | | | | This is necessary to allow compilation in certain S60 5th edition environments | ||||
* | Replaced explicit epoc32/include path with (more portable) ↵ | Gareth Stockwell | 2009-09-23 | 1 | -1/+1 |
| | | | | MW_LAYER_SYSTEMINCLUDE macro | ||||
* | Fixed typo (additional brace) in fluidlauncher.pro | Gareth Stockwell | 2009-09-23 | 1 | -0/+6 |
| | |||||
* | Modified video output widget to make video visible on target device | Gareth Stockwell | 2009-09-23 | 2 | -13/+15 |
| | |||||
* | Added extra logging to QSymbianControl::Draw | Gareth Stockwell | 2009-09-23 | 1 | -1/+15 |
| | | | | This function now dumps the colors of a sample of pixels in the bitmap about to be blitted. This is useful in debugging problems to do with visibility of video when running on target. | ||||
* | Modified object annotator to dump display mode of Symbian windows | Gareth Stockwell | 2009-09-23 | 1 | -1/+4 |
| | |||||
* | Temporary fix: mediaplayer top-level widget sets ↵ | Gareth Stockwell | 2009-09-23 | 1 | -0/+4 |
| | | | | Qt::WA_TranslucentBackground to allow video to be visible on target | ||||
* | Added a utility function which samples a number of pixels from the screen, ↵ | Gareth Stockwell | 2009-09-23 | 2 | -0/+19 |
| | | | | and writes their colors to the debug log | ||||
* | Added a utility function for reading color of individual pixels from the screen | Gareth Stockwell | 2009-09-23 | 3 | -0/+85 |
| | |||||
* | Make mmfphonondebug static, and do some build fixes. | Frans Englich | 2009-09-16 | 4 | -5/+7 |
| | |||||
* | Fixes to include paths, required due to objectdump renaming | Gareth Stockwell | 2009-09-15 | 3 | -4/+4 |
| | |||||
* | Rename objectdump to mmfphonondebug in order to avoid conflicts. | Frans Englich | 2009-09-14 | 12 | -5/+6 |
| | |||||
* | Fix bug, it's phonon-backend, not phonon_backend. | Frans Englich | 2009-09-14 | 1 | -2/+2 |
| | |||||
* | Reserve & use UIDs. | Frans Englich | 2009-09-14 | 2 | -4/+5 |
| | |||||
* | Remove an unimplementable TODO. | Frans Englich | 2009-09-10 | 1 | -1/+0 |
| | | | | MvpuoPrepareComplete()'s TInt aError doesn't map to Phonon::ErrorType. | ||||
* | Invoke on appropriate states in seek(). | Frans Englich | 2009-09-10 | 1 | -7/+21 |
| | |||||
* | Fix whitespace. | Frans Englich | 2009-09-10 | 1 | -3/+3 |
| | |||||
* | Remove an unimplementable TODO. | Frans Englich | 2009-09-10 | 1 | -4/+2 |
| | | | | MvpuoOpenComplete's TInt aError doesn't map to Phonon::ErrorType. | ||||
* | QScopedPointer makes code simpler. | Frans Englich | 2009-09-10 | 2 | -5/+3 |
| | |||||
* | Merge branch 'mmfphonon' of git@scm.dev.nokia.troll.no:qt/qt-s60-public into ↵ | Gareth Stockwell | 2009-09-10 | 1 | -5/+3 |
|\ | | | | | | | mmfphonon | ||||
| * | Simplify inclusion of osextensions. | Frans Englich | 2009-09-09 | 1 | -5/+3 |
| | | |||||
* | | Fixed problems with compiling for ARMV5 | Gareth Stockwell | 2009-09-10 | 10 | -17/+10 |
|/ | | | | | | - Forward declaration of QScopedPointer containee type was causing an error - Audio effect libraries were declared in the .pro file as e.g. -lBassBoostEffect.lib, causing toolchain to try to link statically - Added several missing MMF:: namespace qualifiers | ||||
* | Added epoc32/include/osextensions include path, necessary to compile in S60 ↵ | Gareth Stockwell | 2009-09-09 | 1 | -0/+2 |
| | | | | 5.0 environment | ||||
* | Improve signal connections between MediaObject and AbstractPlayer. | Frans Englich | 2009-09-09 | 5 | -14/+10 |
| | | | | | MediaObject deals with an AbstractPlayer, so make sure we have the signals declared in that base class, instead of individually in each sub-class. | ||||
* | Make the MediaObject propagation generic for all kinds of nodes. | Frans Englich | 2009-09-09 | 16 | -100/+133 |
| | | | | | Previously the MediaObject propagation was only done for effects, but now it's for all kinds of nodes. This is needed for AudioOutput. | ||||
* | Work on extending the framework for accomodating effects. | Frans Englich | 2009-09-09 | 24 | -67/+993 |
| | | | | | | | | | This extends the framework for being able to handle audio effects, largely affecting how the audio chain is set up, connected and disconnected, and therefore the Backend has been refactored slightly, and the class MediaNode introduced, see its documentation. In addition two effects has been written: BassBoost and AudioEqualizer. | ||||
* | Modified file-loading code to use QDir::toNativeSeparators | Gareth Stockwell | 2009-09-07 | 3 | -25/+4 |
| | |||||
* | Refactored object tree dumping framework into a separate DLL | Gareth Stockwell | 2009-09-07 | 13 | -102/+197 |
| | |||||
* | Oops: removed .lib from libraries in mmf.pro so they are now dynamically linked | Gareth Stockwell | 2009-09-07 | 1 | -6/+6 |
| | |||||
* | Modified MediaPlayer to set names on its child QObject instances | Gareth Stockwell | 2009-09-07 | 1 | -0/+14 |
| | | | | This is useful for debugging, as it helps to associate nodes in the object tree with the corresponding source code. | ||||
* | Added a macro for setting video output region to null | Gareth Stockwell | 2009-09-07 | 2 | -37/+10 |
| | | | | This is useful when debugging problems with the interaction between video rendering, Qt widget rendering and the underlying native control / window system. | ||||
* | Added macros to QtGui for controlling whether widgets are window-owning | Gareth Stockwell | 2009-09-07 | 4 | -6/+96 |
| | | | | | | | | | There are two macros defined in src/gui/kernel/window_owning_control.h: If this is defined, then calling QWidget::winId causes a native window to be created for the associated control If QWIDGET_OWNS_WINDOW is defined, defining this macro means that the parent window for the newly created window is the parent widget's winId. This in turn means that calling QWidget::winId causes native windows to be created for all ancestors of the target widget. If this macro is undefined, the parent window is the parent widget's effectiveWinId. | ||||
* | Added logging to QWidgetPrivate and QSymbianControl | Gareth Stockwell | 2009-09-07 | 2 | -15/+240 |
| | |||||
* | Added visitor-based object tree dumping framework, which dumps details of ↵ | Gareth Stockwell | 2009-09-07 | 11 | -61/+1154 |
| | | | | Symbian control / window associated with each widget | ||||
* | Merge branch 'mmfphonon' of git@scm.dev.nokia.troll.no:qt/qt-s60-public into ↵ | Gareth Stockwell | 2009-09-01 | 4 | -151/+11 |
|\ | | | | | | | mmfphonon | ||||
| * | Merge branch 'mmfphonon' of git@scm.dev.nokia.troll.no:qt/qt-s60-public into ↵ | Gareth Stockwell | 2009-08-27 | 0 | -0/+0 |
| |\ | | | | | | | | | | mmfphonon | ||||
| | * | Reformatted code to comply with Qt style | Gareth Stockwell | 2009-08-27 | 25 | -1681/+1591 |
| | | | |||||
| * | | Reformatted code to comply with Qt style | Gareth Stockwell | 2009-08-27 | 26 | -1686/+1591 |
| |/ | |||||
| * | Wrapped code using QT_BEGIN/END_NAMESPACE macros | Gareth Stockwell | 2009-08-27 | 26 | -33/+112 |
| | | |||||
| * | Added more tracing to VideoPlayer | Gareth Stockwell | 2009-08-27 | 1 | -14/+15 |
| | | |||||
* | | Modified hide_sys to correctly mirror action of show_sys | Gareth Stockwell | 2009-09-01 | 1 | -1/+1 |
| | | |||||
* | | Video playback now visible; flickering problems now observed | Gareth Stockwell | 2009-08-28 | 3 | -28/+45 |
| | | |||||
* | | Modified show_sys to call ActivateL on all window-owning controls | Gareth Stockwell | 2009-08-28 | 2 | -3/+10 |
| | | |||||
* | | Deferred call to CVideoPlayerUtility::SetDisplayWindowL until MMF controller ↵ | Gareth Stockwell | 2009-08-28 | 2 | -5/+39 |
| | | | | | | | | has been loaded | ||||
* | | Further modifications to native window resizing code | Gareth Stockwell | 2009-08-28 | 2 | -26/+21 |
| | | |||||
* | | Added code to VideoOutput for painting the video region (currently commented ↵ | Gareth Stockwell | 2009-08-28 | 1 | -4/+5 |
| | | | | | | | | out) | ||||
* | | Experimenting to try and get video to be visible | Gareth Stockwell | 2009-08-28 | 1 | -4/+13 |
| | | |||||
* | | First draft of QWidgetPrivate::setWSGeometry for S60 | Gareth Stockwell | 2009-08-28 | 2 | -4/+151 |
| | |