diff options
author | Gareth Stockwell <gareth.stockwell@sosco.com> | 2009-08-21 11:58:45 (GMT) |
---|---|---|
committer | Gareth Stockwell <gareth.stockwell@sosco.com> | 2009-08-21 11:58:45 (GMT) |
commit | 0761ebabf9f3cf6c968f4ce86e31c323dc8fe9c8 (patch) | |
tree | 2ad21f1f9e0578fe3db689f0190074402278ca41 /src/3rdparty/phonon/mmf/videooutput.cpp | |
parent | 3f39d630d3dcc161c4a85127129274ca7ea857a2 (diff) | |
download | Qt-0761ebabf9f3cf6c968f4ce86e31c323dc8fe9c8.zip Qt-0761ebabf9f3cf6c968f4ce86e31c323dc8fe9c8.tar.gz Qt-0761ebabf9f3cf6c968f4ce86e31c323dc8fe9c8.tar.bz2 |
Implemented connection between MediaOutput and VideoWidget
Video is still not visible; need to debug the initialization of the
VideoOutput object to determine whether DSA is being aborted.
Diffstat (limited to 'src/3rdparty/phonon/mmf/videooutput.cpp')
-rw-r--r-- | src/3rdparty/phonon/mmf/videooutput.cpp | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/src/3rdparty/phonon/mmf/videooutput.cpp b/src/3rdparty/phonon/mmf/videooutput.cpp index 5e32b28..3079668 100644 --- a/src/3rdparty/phonon/mmf/videooutput.cpp +++ b/src/3rdparty/phonon/mmf/videooutput.cpp @@ -30,12 +30,18 @@ using namespace Phonon::MMF; MMF::VideoOutput::VideoOutput(QWidget* parent) : QWidget(parent) { - + TRACE_CONTEXT(VideoOutput::VideoOutput, EVideoInternal); + TRACE_ENTRY("parent 0x%08x", parent); + + TRACE_EXIT_0(); } MMF::VideoOutput::~VideoOutput() { - + TRACE_CONTEXT(VideoOutput::~VideoOutput, EVideoInternal); + TRACE_ENTRY_0(); + + TRACE_EXIT_0(); } |