-rw-r--r-- | noncore/multimedia/opieplayer2/lib.cpp | 34 | ||||
-rw-r--r-- | noncore/multimedia/opieplayer2/lib.h | 4 |
2 files changed, 32 insertions, 6 deletions
diff --git a/noncore/multimedia/opieplayer2/lib.cpp b/noncore/multimedia/opieplayer2/lib.cpp index 9f7a9c5..4ae8490 100644 --- a/noncore/multimedia/opieplayer2/lib.cpp +++ b/noncore/multimedia/opieplayer2/lib.cpp | |||
@@ -233,217 +233,239 @@ void Lib::pause( bool toggle ) { | |||
233 | 233 | ||
234 | int Lib::speed() const { | 234 | int Lib::speed() const { |
235 | assert( m_initialized ); | 235 | assert( m_initialized ); |
236 | 236 | ||
237 | return xine_get_param ( m_stream, XINE_PARAM_SPEED ); | 237 | return xine_get_param ( m_stream, XINE_PARAM_SPEED ); |
238 | } | 238 | } |
239 | 239 | ||
240 | void Lib::setSpeed( int speed ) { | 240 | void Lib::setSpeed( int speed ) { |
241 | assert( m_initialized ); | 241 | assert( m_initialized ); |
242 | 242 | ||
243 | xine_set_param ( m_stream, XINE_PARAM_SPEED, speed ); | 243 | xine_set_param ( m_stream, XINE_PARAM_SPEED, speed ); |
244 | } | 244 | } |
245 | 245 | ||
246 | int Lib::status() const { | 246 | int Lib::status() const { |
247 | assert( m_initialized ); | 247 | assert( m_initialized ); |
248 | 248 | ||
249 | return xine_get_status( m_stream ); | 249 | return xine_get_status( m_stream ); |
250 | } | 250 | } |
251 | 251 | ||
252 | int Lib::currentPosition() const { | 252 | int Lib::currentPosition() const { |
253 | assert( m_initialized ); | 253 | assert( m_initialized ); |
254 | 254 | ||
255 | int pos, time, length; | 255 | int pos, time, length; |
256 | xine_get_pos_length( m_stream, &pos, &time, &length ); | 256 | xine_get_pos_length( m_stream, &pos, &time, &length ); |
257 | return pos; | 257 | return pos; |
258 | } | 258 | } |
259 | 259 | ||
260 | int Lib::currentTime() const { | 260 | int Lib::currentTime() const { |
261 | assert( m_initialized ); | 261 | assert( m_initialized ); |
262 | 262 | ||
263 | int pos, time, length; | 263 | int pos, time, length; |
264 | pos = time = length = 0; | 264 | pos = time = length = 0; |
265 | 265 | ||
266 | if ( xine_get_pos_length( m_stream, &pos, &time, &length ) ) | 266 | if ( xine_get_pos_length( m_stream, &pos, &time, &length ) ) |
267 | return time/1000; | 267 | return time/1000; |
268 | else | 268 | else |
269 | return 0; | 269 | return 0; |
270 | } | 270 | } |
271 | 271 | ||
272 | int Lib::length() const { | 272 | int Lib::length() const { |
273 | assert( m_initialized ); | 273 | assert( m_initialized ); |
274 | 274 | ||
275 | int pos, time, length; | 275 | int pos, time, length; |
276 | /* dilb: patch to solve the wrong stream length reported to the GUI*/ | 276 | /* dilb: patch to solve the wrong stream length reported to the GUI*/ |
277 | int iRetVal=0, iTestLoop=0; | 277 | int iRetVal=0, iTestLoop=0; |
278 | 278 | ||
279 | do | 279 | do |
280 | { | 280 | { |
281 | iRetVal = xine_get_pos_length( m_stream, &pos, &time, &length ); | 281 | iRetVal = xine_get_pos_length( m_stream, &pos, &time, &length ); |
282 | if (iRetVal) | 282 | if (iRetVal) |
283 | {/* if the function didn't return 0, then pos, time and length are valid.*/ | 283 | {/* if the function didn't return 0, then pos, time and length are valid.*/ |
284 | return length/1000; | 284 | return length/1000; |
285 | } | 285 | } |
286 | /*don't poll too much*/ | 286 | /*don't poll too much*/ |
287 | usleep(100000); | 287 | usleep(100000); |
288 | iTestLoop++; | 288 | iTestLoop++; |
289 | } | 289 | } |
290 | while ( iTestLoop < 10 ); /* if after 1s, we still don't have any | 290 | while ( iTestLoop < 10 ); /* if after 1s, we still don't have any |
291 | valid stream, then return -1 (this value could be used to make the stream | 291 | valid stream, then return -1 (this value could be used to make the stream |
292 | unseekable, but it should never occur!! Mr. Murphy ? :) ) */ | 292 | unseekable, but it should never occur!! Mr. Murphy ? :) ) */ |
293 | 293 | ||
294 | return -1; | 294 | return -1; |
295 | } | 295 | } |
296 | 296 | ||
297 | /* info about current stream */ | ||
298 | QSize Lib::videoSize()const | ||
299 | { | ||
300 | if (!m_initialized||!hasVideo()) return QSize(0,0); | ||
301 | int width = xine_get_stream_info(m_stream,XINE_STREAM_INFO_VIDEO_WIDTH); | ||
302 | int height = xine_get_stream_info(m_stream,XINE_STREAM_INFO_VIDEO_HEIGHT); | ||
303 | return QSize(width,height); | ||
304 | } | ||
305 | |||
306 | |||
297 | bool Lib::isSeekable() const { | 307 | bool Lib::isSeekable() const { |
298 | assert( m_initialized ); | 308 | assert( m_initialized ); |
299 | 309 | ||
300 | return xine_get_stream_info( m_stream, XINE_STREAM_INFO_SEEKABLE ); | 310 | return xine_get_stream_info( m_stream, XINE_STREAM_INFO_SEEKABLE ); |
301 | } | 311 | } |
302 | 312 | ||
313 | bool Lib::hasVideo() const { | ||
314 | assert( m_initialized ); | ||
315 | |||
316 | return xine_get_stream_info( m_stream, XINE_STREAM_INFO_HAS_VIDEO); | ||
317 | } | ||
318 | |||
319 | int Lib::audioBitrate()const | ||
320 | { | ||
321 | if (!m_initialized) return 0; | ||
322 | return xine_get_stream_info( m_stream, XINE_STREAM_INFO_AUDIO_BITRATE); | ||
323 | } | ||
324 | int Lib::videoBitrate()const | ||
325 | { | ||
326 | if (!m_initialized||!hasVideo()) return 0; | ||
327 | return xine_get_stream_info( m_stream, XINE_STREAM_INFO_VIDEO_BITRATE); | ||
328 | } | ||
329 | /* end info block */ | ||
330 | |||
303 | void Lib::seekTo( int time ) { | 331 | void Lib::seekTo( int time ) { |
304 | assert( m_initialized ); | 332 | assert( m_initialized ); |
305 | 333 | ||
306 | odebug << "Seeking to second " << time << oendl; | 334 | odebug << "Seeking to second " << time << oendl; |
307 | //Keep it paused if it was in that state | 335 | //Keep it paused if it was in that state |
308 | if ( xine_get_param( m_stream, XINE_PARAM_SPEED ) ) { | 336 | if ( xine_get_param( m_stream, XINE_PARAM_SPEED ) ) { |
309 | xine_play( m_stream, 0, time*1000 ); | 337 | xine_play( m_stream, 0, time*1000 ); |
310 | } | 338 | } |
311 | 339 | ||
312 | else { | 340 | else { |
313 | xine_play( m_stream, 0, time*1000 ); | 341 | xine_play( m_stream, 0, time*1000 ); |
314 | xine_set_param( m_stream, XINE_PARAM_SPEED, XINE_SPEED_PAUSE ); | 342 | xine_set_param( m_stream, XINE_PARAM_SPEED, XINE_SPEED_PAUSE ); |
315 | } | 343 | } |
316 | 344 | ||
317 | } | 345 | } |
318 | 346 | ||
319 | 347 | ||
320 | QString Lib::metaInfo( int number) const { | 348 | QString Lib::metaInfo( int number) const { |
321 | assert( m_initialized ); | 349 | assert( m_initialized ); |
322 | 350 | ||
323 | return xine_get_meta_info( m_stream, number ); | 351 | return xine_get_meta_info( m_stream, number ); |
324 | } | 352 | } |
325 | 353 | ||
326 | int Lib::error() const { | 354 | int Lib::error() const { |
327 | assert( m_initialized ); | 355 | assert( m_initialized ); |
328 | 356 | ||
329 | return xine_get_error( m_stream ); | 357 | return xine_get_error( m_stream ); |
330 | }; | 358 | }; |
331 | 359 | ||
332 | void Lib::ensureInitialized() | 360 | void Lib::ensureInitialized() |
333 | { | 361 | { |
334 | if ( m_initialized ) | 362 | if ( m_initialized ) |
335 | return; | 363 | return; |
336 | 364 | ||
337 | odebug << "waiting for initialization thread to finish" << oendl; | 365 | odebug << "waiting for initialization thread to finish" << oendl; |
338 | wait(); | 366 | wait(); |
339 | odebug << "initialization thread finished!" << oendl; | 367 | odebug << "initialization thread finished!" << oendl; |
340 | } | 368 | } |
341 | 369 | ||
342 | void Lib::setWidget( XineVideoWidget *widget ) | 370 | void Lib::setWidget( XineVideoWidget *widget ) |
343 | { | 371 | { |
344 | m_wid = widget; | 372 | m_wid = widget; |
345 | if (m_wid) { | 373 | if (m_wid) { |
346 | resize ( m_wid-> size ( ) ); | 374 | resize ( m_wid-> size ( ) ); |
347 | ::null_set_mode( m_videoOutput, qt_screen->depth(), qt_screen->pixelType() ); | 375 | ::null_set_mode( m_videoOutput, qt_screen->depth(), qt_screen->pixelType() ); |
348 | } | 376 | } |
349 | } | 377 | } |
350 | 378 | ||
351 | void Lib::receiveMessage( ThreadUtil::ChannelMessage *msg, SendType sendType ) | 379 | void Lib::receiveMessage( ThreadUtil::ChannelMessage *msg, SendType sendType ) |
352 | { | 380 | { |
353 | assert( sendType == ThreadUtil::Channel::OneWay ); | 381 | assert( sendType == ThreadUtil::Channel::OneWay ); |
354 | handleXineEvent( msg->type(), msg->data(), msg->msg() ); | 382 | handleXineEvent( msg->type(), msg->data(), msg->msg() ); |
355 | delete msg; | 383 | delete msg; |
356 | } | 384 | } |
357 | 385 | ||
358 | void Lib::handleXineEvent( const xine_event_t* t ) { | 386 | void Lib::handleXineEvent( const xine_event_t* t ) { |
359 | int prog = -1; const char* name = 0; | 387 | int prog = -1; const char* name = 0; |
360 | if ( t->type == XINE_EVENT_PROGRESS ) { | 388 | if ( t->type == XINE_EVENT_PROGRESS ) { |
361 | xine_progress_data_t *pt = static_cast<xine_progress_data_t*>( t->data ); | 389 | xine_progress_data_t *pt = static_cast<xine_progress_data_t*>( t->data ); |
362 | prog = pt->percent; | 390 | prog = pt->percent; |
363 | name = pt->description; | 391 | name = pt->description; |
364 | } | 392 | } |
365 | 393 | ||
366 | send( new ThreadUtil::ChannelMessage( t->type, prog, name ), OneWay ); | 394 | send( new ThreadUtil::ChannelMessage( t->type, prog, name ), OneWay ); |
367 | } | 395 | } |
368 | 396 | ||
369 | void Lib::handleXineEvent( int type, int data, const char* name ) { | 397 | void Lib::handleXineEvent( int type, int data, const char* name ) { |
370 | assert( m_initialized ); | 398 | assert( m_initialized ); |
371 | 399 | ||
372 | if ( type == XINE_EVENT_UI_PLAYBACK_FINISHED ) { | 400 | if ( type == XINE_EVENT_UI_PLAYBACK_FINISHED ) { |
373 | emit stopped(); | 401 | emit stopped(); |
374 | }else if ( type == XINE_EVENT_PROGRESS ) { | 402 | }else if ( type == XINE_EVENT_PROGRESS ) { |
375 | QString str = name == 0 ? QString::null : QString::fromUtf8( name ); | 403 | QString str = name == 0 ? QString::null : QString::fromUtf8( name ); |
376 | Global::statusMessage( tr( "Progress: %1 %2" ).arg( name, data ) );; | 404 | Global::statusMessage( tr( "Progress: %1 %2" ).arg( name, data ) );; |
377 | } | 405 | } |
378 | } | 406 | } |
379 | 407 | ||
380 | 408 | ||
381 | void Lib::setShowVideo( bool video ) { | 409 | void Lib::setShowVideo( bool video ) { |
382 | assert( m_initialized ); | 410 | assert( m_initialized ); |
383 | 411 | ||
384 | m_video = video; | 412 | m_video = video; |
385 | ::null_set_show_video( m_videoOutput, video ); | 413 | ::null_set_show_video( m_videoOutput, video ); |
386 | } | 414 | } |
387 | 415 | ||
388 | bool Lib::isShowingVideo() const { | 416 | bool Lib::isShowingVideo() const { |
389 | assert( m_initialized ); | 417 | assert( m_initialized ); |
390 | 418 | ||
391 | return ::null_is_showing_video( m_videoOutput ); | 419 | return ::null_is_showing_video( m_videoOutput ); |
392 | } | 420 | } |
393 | 421 | ||
394 | bool Lib::hasVideo() const { | ||
395 | assert( m_initialized ); | ||
396 | |||
397 | return xine_get_stream_info( m_stream, 18 ); | ||
398 | } | ||
399 | |||
400 | void Lib::showVideoFullScreen( bool fullScreen ) { | 422 | void Lib::showVideoFullScreen( bool fullScreen ) { |
401 | assert( m_initialized ); | 423 | assert( m_initialized ); |
402 | 424 | ||
403 | ::null_set_fullscreen( m_videoOutput, fullScreen ); | 425 | ::null_set_fullscreen( m_videoOutput, fullScreen ); |
404 | } | 426 | } |
405 | 427 | ||
406 | bool Lib::isVideoFullScreen() const { | 428 | bool Lib::isVideoFullScreen() const { |
407 | assert( m_initialized ); | 429 | assert( m_initialized ); |
408 | 430 | ||
409 | return ::null_is_fullscreen( m_videoOutput ); | 431 | return ::null_is_fullscreen( m_videoOutput ); |
410 | } | 432 | } |
411 | 433 | ||
412 | void Lib::setScaling( bool scale ) { | 434 | void Lib::setScaling( bool scale ) { |
413 | assert( m_initialized ); | 435 | assert( m_initialized ); |
414 | 436 | ||
415 | ::null_set_scaling( m_videoOutput, scale ); | 437 | ::null_set_scaling( m_videoOutput, scale ); |
416 | } | 438 | } |
417 | 439 | ||
418 | void Lib::setGamma( int value ) { | 440 | void Lib::setGamma( int value ) { |
419 | assert( m_initialized ); | 441 | assert( m_initialized ); |
420 | 442 | ||
421 | ::null_set_videoGamma( m_videoOutput, value ); | 443 | ::null_set_videoGamma( m_videoOutput, value ); |
422 | } | 444 | } |
423 | 445 | ||
424 | bool Lib::isScaling() const { | 446 | bool Lib::isScaling() const { |
425 | assert( m_initialized ); | 447 | assert( m_initialized ); |
426 | 448 | ||
427 | return ::null_is_scaling( m_videoOutput ); | 449 | return ::null_is_scaling( m_videoOutput ); |
428 | } | 450 | } |
429 | 451 | ||
430 | void Lib::xine_event_handler( void* user_data, const xine_event_t* t ) { | 452 | void Lib::xine_event_handler( void* user_data, const xine_event_t* t ) { |
431 | ( (Lib*)user_data)->handleXineEvent( t ); | 453 | ( (Lib*)user_data)->handleXineEvent( t ); |
432 | } | 454 | } |
433 | 455 | ||
434 | void Lib::xine_display_frame( void* user_data, uint8_t *frame, | 456 | void Lib::xine_display_frame( void* user_data, uint8_t *frame, |
435 | int width, int height, int bytes ) { | 457 | int width, int height, int bytes ) { |
436 | ( (Lib*)user_data)->drawFrame( frame, width, height, bytes ); | 458 | ( (Lib*)user_data)->drawFrame( frame, width, height, bytes ); |
437 | } | 459 | } |
438 | 460 | ||
439 | void Lib::drawFrame( uint8_t* frame, int width, int height, int bytes ) { | 461 | void Lib::drawFrame( uint8_t* frame, int width, int height, int bytes ) { |
440 | assert( m_initialized ); | 462 | assert( m_initialized ); |
441 | 463 | ||
442 | if ( !m_video ) { | 464 | if ( !m_video ) { |
443 | return; | 465 | return; |
444 | } | 466 | } |
445 | 467 | ||
446 | // assert( m_wid ); | 468 | // assert( m_wid ); |
447 | 469 | ||
448 | if (m_wid) m_wid-> setVideoFrame ( frame, width, height, bytes ); | 470 | if (m_wid) m_wid-> setVideoFrame ( frame, width, height, bytes ); |
449 | } | 471 | } |
diff --git a/noncore/multimedia/opieplayer2/lib.h b/noncore/multimedia/opieplayer2/lib.h index 2f5bf86..2607193 100644 --- a/noncore/multimedia/opieplayer2/lib.h +++ b/noncore/multimedia/opieplayer2/lib.h | |||
@@ -110,102 +110,106 @@ namespace XINE { | |||
110 | */ | 110 | */ |
111 | void showVideoFullScreen( bool fullScreen ); | 111 | void showVideoFullScreen( bool fullScreen ); |
112 | 112 | ||
113 | /** | 113 | /** |
114 | * | 114 | * |
115 | */ | 115 | */ |
116 | bool isVideoFullScreen() const; | 116 | bool isVideoFullScreen() const; |
117 | 117 | ||
118 | 118 | ||
119 | /** | 119 | /** |
120 | * Get the meta info (like author etc) from the stream | 120 | * Get the meta info (like author etc) from the stream |
121 | * XINE_META_INFO_TITLE 0 | 121 | * XINE_META_INFO_TITLE 0 |
122 | * XINE_META_INFO_COMMENT 1 | 122 | * XINE_META_INFO_COMMENT 1 |
123 | * XINE_META_INFO_ARTIST 2 | 123 | * XINE_META_INFO_ARTIST 2 |
124 | * XINE_META_INFO_GENRE 3 | 124 | * XINE_META_INFO_GENRE 3 |
125 | * XINE_META_INFO_ALBUM 4 | 125 | * XINE_META_INFO_ALBUM 4 |
126 | * XINE_META_INFO_YEAR 5 | 126 | * XINE_META_INFO_YEAR 5 |
127 | * XINE_META_INFO_VIDEOCODEC 6 | 127 | * XINE_META_INFO_VIDEOCODEC 6 |
128 | * XINE_META_INFO_AUDIOCODEC 7 | 128 | * XINE_META_INFO_AUDIOCODEC 7 |
129 | * XINE_META_INFO_SYSTEMLAYER 8 | 129 | * XINE_META_INFO_SYSTEMLAYER 8 |
130 | * XINE_META_INFO_INPUT_PLUGIN 9 | 130 | * XINE_META_INFO_INPUT_PLUGIN 9 |
131 | */ | 131 | */ |
132 | QString metaInfo( int number ) const; | 132 | QString metaInfo( int number ) const; |
133 | 133 | ||
134 | /** | 134 | /** |
135 | * | 135 | * |
136 | */ | 136 | */ |
137 | bool isScaling() const; | 137 | bool isScaling() const; |
138 | 138 | ||
139 | /** | 139 | /** |
140 | * seek to a position | 140 | * seek to a position |
141 | */ | 141 | */ |
142 | void seekTo( int time ); | 142 | void seekTo( int time ); |
143 | 143 | ||
144 | /** | 144 | /** |
145 | * | 145 | * |
146 | * @return is media stream has video | 146 | * @return is media stream has video |
147 | */ | 147 | */ |
148 | bool hasVideo() const; | 148 | bool hasVideo() const; |
149 | 149 | ||
150 | /** | 150 | /** |
151 | * | 151 | * |
152 | */ | 152 | */ |
153 | void setScaling( bool ); | 153 | void setScaling( bool ); |
154 | 154 | ||
155 | /** | 155 | /** |
156 | * Set the Gamma value for video output | 156 | * Set the Gamma value for video output |
157 | * @param int the value between -100 and 100, 0 is original | 157 | * @param int the value between -100 and 100, 0 is original |
158 | */ | 158 | */ |
159 | void setGamma( int ); | 159 | void setGamma( int ); |
160 | 160 | ||
161 | /** | 161 | /** |
162 | * Returns the error code | 162 | * Returns the error code |
163 | * XINE_ERROR_NONE 0 | 163 | * XINE_ERROR_NONE 0 |
164 | * XINE_ERROR_NO_INPUT_PLUGIN 1 | 164 | * XINE_ERROR_NO_INPUT_PLUGIN 1 |
165 | * XINE_ERROR_NO_DEMUXER_PLUGIN 2 | 165 | * XINE_ERROR_NO_DEMUXER_PLUGIN 2 |
166 | * XINE_ERROR_DEMUXER_FAILED 3 | 166 | * XINE_ERROR_DEMUXER_FAILED 3 |
167 | */ | 167 | */ |
168 | int error() const; | 168 | int error() const; |
169 | 169 | ||
170 | void ensureInitialized(); | 170 | void ensureInitialized(); |
171 | 171 | ||
172 | void setWidget( XineVideoWidget *widget ); | 172 | void setWidget( XineVideoWidget *widget ); |
173 | 173 | ||
174 | QSize videoSize()const; | ||
175 | int audioBitrate()const; | ||
176 | int videoBitrate()const; | ||
177 | |||
174 | signals: | 178 | signals: |
175 | 179 | ||
176 | void stopped(); | 180 | void stopped(); |
177 | 181 | ||
178 | void initialized(); | 182 | void initialized(); |
179 | 183 | ||
180 | protected: | 184 | protected: |
181 | virtual void receiveMessage( ThreadUtil::ChannelMessage *msg, SendType sendType ); | 185 | virtual void receiveMessage( ThreadUtil::ChannelMessage *msg, SendType sendType ); |
182 | 186 | ||
183 | virtual void run(); | 187 | virtual void run(); |
184 | 188 | ||
185 | private: | 189 | private: |
186 | void initialize(); | 190 | void initialize(); |
187 | 191 | ||
188 | int m_bytes_per_pixel; | 192 | int m_bytes_per_pixel; |
189 | bool m_initialized:1; | 193 | bool m_initialized:1; |
190 | bool m_duringInitialization:1; | 194 | bool m_duringInitialization:1; |
191 | bool m_video:1; | 195 | bool m_video:1; |
192 | XineVideoWidget *m_wid; | 196 | XineVideoWidget *m_wid; |
193 | xine_t *m_xine; | 197 | xine_t *m_xine; |
194 | xine_stream_t *m_stream; | 198 | xine_stream_t *m_stream; |
195 | xine_cfg_entry_t *m_config; | 199 | xine_cfg_entry_t *m_config; |
196 | xine_vo_driver_t *m_videoOutput; | 200 | xine_vo_driver_t *m_videoOutput; |
197 | xine_ao_driver_t* m_audioOutput; | 201 | xine_ao_driver_t* m_audioOutput; |
198 | xine_event_queue_t *m_queue; | 202 | xine_event_queue_t *m_queue; |
199 | 203 | ||
200 | void handleXineEvent( const xine_event_t* t ); | 204 | void handleXineEvent( const xine_event_t* t ); |
201 | void handleXineEvent( int type, int data, const char* name ); | 205 | void handleXineEvent( int type, int data, const char* name ); |
202 | void drawFrame( uint8_t* frame, int width, int height, int bytes ); | 206 | void drawFrame( uint8_t* frame, int width, int height, int bytes ); |
203 | // C -> C++ bridge for the event system | 207 | // C -> C++ bridge for the event system |
204 | static void xine_event_handler( void* user_data, const xine_event_t* t); | 208 | static void xine_event_handler( void* user_data, const xine_event_t* t); |
205 | static void xine_display_frame( void* user_data, uint8_t* frame , | 209 | static void xine_display_frame( void* user_data, uint8_t* frame , |
206 | int width, int height, int bytes ); | 210 | int width, int height, int bytes ); |
207 | }; | 211 | }; |
208 | }; | 212 | }; |
209 | 213 | ||
210 | 214 | ||
211 | #endif | 215 | #endif |