author | simon <simon> | 2002-12-13 23:07:43 (UTC) |
---|---|---|
committer | simon <simon> | 2002-12-13 23:07:43 (UTC) |
commit | 2e922ec81282a735a04ca1e822329c615b979ebf (patch) (unidiff) | |
tree | 742b662eb9d441aec1a12f2d3b531245b934cdb1 | |
parent | 2e91febca20a3b550d06ba33a4d41b40555a8bbf (diff) | |
download | opie-2e922ec81282a735a04ca1e822329c615b979ebf.zip opie-2e922ec81282a735a04ca1e822329c615b979ebf.tar.gz opie-2e922ec81282a735a04ca1e822329c615b979ebf.tar.bz2 |
- fill in some code on the threading side. not activated, yet
-rw-r--r-- | noncore/multimedia/opieplayer2/lib.cpp | 13 | ||||
-rw-r--r-- | noncore/multimedia/opieplayer2/lib.h | 2 | ||||
-rw-r--r-- | noncore/multimedia/opieplayer2/xinecontrol.cpp | 3 |
3 files changed, 16 insertions, 2 deletions
diff --git a/noncore/multimedia/opieplayer2/lib.cpp b/noncore/multimedia/opieplayer2/lib.cpp index cef46a1..84194b7 100644 --- a/noncore/multimedia/opieplayer2/lib.cpp +++ b/noncore/multimedia/opieplayer2/lib.cpp | |||
@@ -86,33 +86,34 @@ Lib::Lib( InitializationMode initMode, XineVideoWidget* widget ) | |||
86 | f.open(IO_WriteOnly); | 86 | f.open(IO_WriteOnly); |
87 | QTextStream ts( &f ); | 87 | QTextStream ts( &f ); |
88 | ts << "misc.memcpy_method:glibc\n"; | 88 | ts << "misc.memcpy_method:glibc\n"; |
89 | f.close(); | 89 | f.close(); |
90 | } | 90 | } |
91 | 91 | ||
92 | if ( initMode == InitializeImmediately ) { | 92 | if ( initMode == InitializeImmediately ) { |
93 | initialize(); | 93 | initialize(); |
94 | m_initialized = true; | 94 | m_initialized = true; |
95 | } | 95 | } |
96 | else | 96 | else |
97 | assert( false ); | 97 | assert( false ); |
98 | } | 98 | } |
99 | 99 | ||
100 | void Lib::run() | 100 | void Lib::run() |
101 | { | 101 | { |
102 | assert( false ); | 102 | initialize(); |
103 | m_initialized = true; | ||
103 | } | 104 | } |
104 | 105 | ||
105 | void Lib::initialize() | 106 | void Lib::initialize() |
106 | { | 107 | { |
107 | m_duringInitialization = true; | 108 | m_duringInitialization = true; |
108 | m_xine = xine_new( ); | 109 | m_xine = xine_new( ); |
109 | 110 | ||
110 | QString configPath = QDir::homeDirPath() + "/Settings/opiexine.cf"; | 111 | QString configPath = QDir::homeDirPath() + "/Settings/opiexine.cf"; |
111 | xine_config_load( m_xine, QFile::encodeName( configPath ) ); | 112 | xine_config_load( m_xine, QFile::encodeName( configPath ) ); |
112 | 113 | ||
113 | xine_init( m_xine ); | 114 | xine_init( m_xine ); |
114 | 115 | ||
115 | // allocate oss for sound | 116 | // allocate oss for sound |
116 | // and fb for framebuffer | 117 | // and fb for framebuffer |
117 | m_audioOutput = xine_open_audio_driver( m_xine, "oss", NULL ); | 118 | m_audioOutput = xine_open_audio_driver( m_xine, "oss", NULL ); |
118 | m_videoOutput = ::init_video_out_plugin( m_xine, NULL, xine_display_frame, this ); | 119 | m_videoOutput = ::init_video_out_plugin( m_xine, NULL, xine_display_frame, this ); |
@@ -270,32 +271,42 @@ Frame Lib::currentFrame() const { | |||
270 | Frame frame; | 271 | Frame frame; |
271 | return frame; | 272 | return frame; |
272 | }; | 273 | }; |
273 | 274 | ||
274 | QString Lib::metaInfo( int number) const { | 275 | QString Lib::metaInfo( int number) const { |
275 | assert( m_initialized ); | 276 | assert( m_initialized ); |
276 | 277 | ||
277 | return xine_get_meta_info( m_stream, number ); | 278 | return xine_get_meta_info( m_stream, number ); |
278 | } | 279 | } |
279 | 280 | ||
280 | int Lib::error() const { | 281 | int Lib::error() const { |
281 | assert( m_initialized ); | 282 | assert( m_initialized ); |
282 | 283 | ||
283 | return xine_get_error( m_stream ); | 284 | return xine_get_error( m_stream ); |
284 | }; | 285 | }; |
285 | 286 | ||
287 | void Lib::ensureInitialized() | ||
288 | { | ||
289 | if ( m_initialized ) | ||
290 | return; | ||
291 | |||
292 | qDebug( "waiting for initialization thread to finish" ); | ||
293 | wait(); | ||
294 | qDebug( "initialization thread finished!" ); | ||
295 | } | ||
296 | |||
286 | void Lib::receiveMessage( ThreadUtil::ChannelMessage *msg, SendType sendType ) | 297 | void Lib::receiveMessage( ThreadUtil::ChannelMessage *msg, SendType sendType ) |
287 | { | 298 | { |
288 | assert( sendType == ThreadUtil::Channel::OneWay ); | 299 | assert( sendType == ThreadUtil::Channel::OneWay ); |
289 | handleXineEvent( msg->type() ); | 300 | handleXineEvent( msg->type() ); |
290 | delete msg; | 301 | delete msg; |
291 | } | 302 | } |
292 | 303 | ||
293 | void Lib::handleXineEvent( const xine_event_t* t ) { | 304 | void Lib::handleXineEvent( const xine_event_t* t ) { |
294 | send( new ThreadUtil::ChannelMessage( t->type ), OneWay ); | 305 | send( new ThreadUtil::ChannelMessage( t->type ), OneWay ); |
295 | } | 306 | } |
296 | 307 | ||
297 | void Lib::handleXineEvent( int type ) { | 308 | void Lib::handleXineEvent( int type ) { |
298 | assert( m_initialized ); | 309 | assert( m_initialized ); |
299 | 310 | ||
300 | if ( type == XINE_EVENT_UI_PLAYBACK_FINISHED ) { | 311 | if ( type == XINE_EVENT_UI_PLAYBACK_FINISHED ) { |
301 | emit stopped(); | 312 | emit stopped(); |
diff --git a/noncore/multimedia/opieplayer2/lib.h b/noncore/multimedia/opieplayer2/lib.h index 9dd7385..6b67f67 100644 --- a/noncore/multimedia/opieplayer2/lib.h +++ b/noncore/multimedia/opieplayer2/lib.h | |||
@@ -164,32 +164,34 @@ namespace XINE { | |||
164 | void setGamma( int ); | 164 | void setGamma( int ); |
165 | 165 | ||
166 | /** | 166 | /** |
167 | * test | 167 | * test |
168 | */ | 168 | */ |
169 | Frame currentFrame() const; | 169 | Frame currentFrame() const; |
170 | 170 | ||
171 | /** | 171 | /** |
172 | * Returns the error code | 172 | * Returns the error code |
173 | * XINE_ERROR_NONE 0 | 173 | * XINE_ERROR_NONE 0 |
174 | * XINE_ERROR_NO_INPUT_PLUGIN 1 | 174 | * XINE_ERROR_NO_INPUT_PLUGIN 1 |
175 | * XINE_ERROR_NO_DEMUXER_PLUGIN 2 | 175 | * XINE_ERROR_NO_DEMUXER_PLUGIN 2 |
176 | * XINE_ERROR_DEMUXER_FAILED 3 | 176 | * XINE_ERROR_DEMUXER_FAILED 3 |
177 | */ | 177 | */ |
178 | int error() const; | 178 | int error() const; |
179 | 179 | ||
180 | void ensureInitialized(); | ||
181 | |||
180 | signals: | 182 | signals: |
181 | 183 | ||
182 | void stopped(); | 184 | void stopped(); |
183 | 185 | ||
184 | void initialized(); | 186 | void initialized(); |
185 | 187 | ||
186 | protected: | 188 | protected: |
187 | virtual void receiveMessage( ThreadUtil::ChannelMessage *msg, SendType sendType ); | 189 | virtual void receiveMessage( ThreadUtil::ChannelMessage *msg, SendType sendType ); |
188 | 190 | ||
189 | virtual void run(); | 191 | virtual void run(); |
190 | 192 | ||
191 | private: | 193 | private: |
192 | void initialize(); | 194 | void initialize(); |
193 | 195 | ||
194 | int m_bytes_per_pixel; | 196 | int m_bytes_per_pixel; |
195 | bool m_initialized:1; | 197 | bool m_initialized:1; |
diff --git a/noncore/multimedia/opieplayer2/xinecontrol.cpp b/noncore/multimedia/opieplayer2/xinecontrol.cpp index 1aa3daa..7c54499 100644 --- a/noncore/multimedia/opieplayer2/xinecontrol.cpp +++ b/noncore/multimedia/opieplayer2/xinecontrol.cpp | |||
@@ -32,43 +32,44 @@ | |||
32 | */ | 32 | */ |
33 | 33 | ||
34 | 34 | ||
35 | #include <qtimer.h> | 35 | #include <qtimer.h> |
36 | #include <qmessagebox.h> | 36 | #include <qmessagebox.h> |
37 | #include <qpe/qcopenvelope_qws.h> | 37 | #include <qpe/qcopenvelope_qws.h> |
38 | #include <qpe/qpeapplication.h> | 38 | #include <qpe/qpeapplication.h> |
39 | #include "xinecontrol.h" | 39 | #include "xinecontrol.h" |
40 | #include "mediaplayerstate.h" | 40 | #include "mediaplayerstate.h" |
41 | #include "xinevideowidget.h" | 41 | #include "xinevideowidget.h" |
42 | 42 | ||
43 | XineControl::XineControl( XineVideoWidget *xineWidget, | 43 | XineControl::XineControl( XineVideoWidget *xineWidget, |
44 | MediaPlayerState &_mediaPlayerState, | 44 | MediaPlayerState &_mediaPlayerState, |
45 | QObject *parent, const char *name ) | 45 | QObject *parent, const char *name ) |
46 | : QObject( parent, name ), mediaPlayerState( _mediaPlayerState ), xineVideoWidget( xineWidget ) | 46 | : QObject( parent, name ), mediaPlayerState( _mediaPlayerState ), xineVideoWidget( xineWidget ) |
47 | { | 47 | { |
48 | |||
49 | libXine = new XINE::Lib( XINE::Lib::InitializeImmediately, xineWidget ); | 48 | libXine = new XINE::Lib( XINE::Lib::InitializeImmediately, xineWidget ); |
50 | 49 | ||
51 | init(); | 50 | init(); |
52 | } | 51 | } |
53 | 52 | ||
54 | XineControl::XineControl( XINE::Lib *xine, XineVideoWidget *xineWidget, | 53 | XineControl::XineControl( XINE::Lib *xine, XineVideoWidget *xineWidget, |
55 | MediaPlayerState &_mediaPlayerState, | 54 | MediaPlayerState &_mediaPlayerState, |
56 | QObject *parent, const char *name ) | 55 | QObject *parent, const char *name ) |
57 | : QObject( parent, name ), libXine( xine ), mediaPlayerState( _mediaPlayerState ), xineVideoWidget( xineWidget ) | 56 | : QObject( parent, name ), libXine( xine ), mediaPlayerState( _mediaPlayerState ), xineVideoWidget( xineWidget ) |
58 | { | 57 | { |
58 | xine->ensureInitialized(); | ||
59 | |||
59 | init(); | 60 | init(); |
60 | } | 61 | } |
61 | 62 | ||
62 | void XineControl::init() | 63 | void XineControl::init() |
63 | { | 64 | { |
64 | connect( &mediaPlayerState, SIGNAL( pausedToggled( bool ) ), this, SLOT( pause( bool ) ) ); | 65 | connect( &mediaPlayerState, SIGNAL( pausedToggled( bool ) ), this, SLOT( pause( bool ) ) ); |
65 | connect( this, SIGNAL( positionChanged( long ) ), &mediaPlayerState, SLOT( updatePosition( long ) ) ); | 66 | connect( this, SIGNAL( positionChanged( long ) ), &mediaPlayerState, SLOT( updatePosition( long ) ) ); |
66 | connect( &mediaPlayerState, SIGNAL( playingToggled( bool ) ), this, SLOT( stop( bool ) ) ); | 67 | connect( &mediaPlayerState, SIGNAL( playingToggled( bool ) ), this, SLOT( stop( bool ) ) ); |
67 | connect( &mediaPlayerState, SIGNAL( fullscreenToggled( bool ) ), this, SLOT( setFullscreen( bool ) ) ); | 68 | connect( &mediaPlayerState, SIGNAL( fullscreenToggled( bool ) ), this, SLOT( setFullscreen( bool ) ) ); |
68 | connect( &mediaPlayerState, SIGNAL( positionChanged( long ) ), this, SLOT( seekTo( long ) ) ); | 69 | connect( &mediaPlayerState, SIGNAL( positionChanged( long ) ), this, SLOT( seekTo( long ) ) ); |
69 | connect( &mediaPlayerState, SIGNAL( videoGammaChanged( int ) ), this, SLOT( setGamma( int ) ) ); | 70 | connect( &mediaPlayerState, SIGNAL( videoGammaChanged( int ) ), this, SLOT( setGamma( int ) ) ); |
70 | connect( libXine, SIGNAL( stopped() ), this, SLOT( nextMedia() ) ); | 71 | connect( libXine, SIGNAL( stopped() ), this, SLOT( nextMedia() ) ); |
71 | connect( xineVideoWidget, SIGNAL( videoResized( const QSize & ) ), this, SLOT( videoResized ( const QSize & ) ) ); | 72 | connect( xineVideoWidget, SIGNAL( videoResized( const QSize & ) ), this, SLOT( videoResized ( const QSize & ) ) ); |
72 | 73 | ||
73 | disabledSuspendScreenSaver = FALSE; | 74 | disabledSuspendScreenSaver = FALSE; |
74 | } | 75 | } |