summaryrefslogtreecommitdiff
path: root/noncore/multimedia/opieplayer2/lib.cpp
Unidiff
Diffstat (limited to 'noncore/multimedia/opieplayer2/lib.cpp') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/multimedia/opieplayer2/lib.cpp90
1 files changed, 51 insertions, 39 deletions
diff --git a/noncore/multimedia/opieplayer2/lib.cpp b/noncore/multimedia/opieplayer2/lib.cpp
index e3289bc..9f7a9c5 100644
--- a/noncore/multimedia/opieplayer2/lib.cpp
+++ b/noncore/multimedia/opieplayer2/lib.cpp
@@ -1,5 +1,5 @@
1/* 1/*
2                This file is part of the Opie Project 2 This file is part of the Opie Project
3 3
4              Copyright (c) 2002 Max Reiss <harlekin@handhelds.org> 4 Copyright (c) 2002 Max Reiss <harlekin@handhelds.org>
5 Copyright (c) 2002 LJP <> 5 Copyright (c) 2002 LJP <>
@@ -8,21 +8,21 @@
8 .=l. 8 .=l.
9           .>+-= 9 .>+-=
10 _;:,     .>    :=|. This program is free software; you can 10_;:, .> :=|. This program is free software; you can
11.> <`_,   >  .   <= redistribute it and/or modify it under 11.> <`_, > . <= redistribute it and/or modify it under
12:`=1 )Y*s>-.--   : the terms of the GNU General Public 12:`=1 )Y*s>-.-- : the terms of the GNU General Public
13.="- .-=="i,     .._ License as published by the Free Software 13.="- .-=="i, .._ License as published by the Free Software
14 - .   .-<_>     .<> Foundation; either version 2 of the License, 14- . .-<_> .<> Foundation; either version 2 of the License,
15     ._= =}       : or (at your option) any later version. 15 ._= =} : or (at your option) any later version.
16    .%`+i>       _;_. 16 .%`+i> _;_.
17    .i_,=:_.      -<s. This program is distributed in the hope that 17 .i_,=:_. -<s. This program is distributed in the hope that
18     +  .  -:.       = it will be useful, but WITHOUT ANY WARRANTY; 18 + . -:. = it will be useful, but WITHOUT ANY WARRANTY;
19    : ..    .:,     . . . without even the implied warranty of 19 : .. .:, . . . without even the implied warranty of
20    =_        +     =;=|` MERCHANTABILITY or FITNESS FOR A 20 =_ + =;=|` MERCHANTABILITY or FITNESS FOR A
21  _.=:.       :    :=>`: PARTICULAR PURPOSE. See the GNU 21 _.=:. : :=>`: PARTICULAR PURPOSE. See the GNU
22..}^=.=       =       ; Library General Public License for more 22..}^=.= = ; Library General Public License for more
23++=   -.     .`     .: details. 23++= -. .` .: details.
24 :     =  ...= . :.=- 24: = ...= . :.=-
25 -.   .:....=;==+<; You should have received a copy of the GNU 25-. .:....=;==+<; You should have received a copy of the GNU
26  -_. . .   )=.  = Library General Public License along with 26 -_. . . )=. = Library General Public License along with
27    --        :-=` this library; see the file COPYING.LIB. 27 -- :-=` this library; see the file COPYING.LIB.
28 If not, write to the Free Software Foundation, 28 If not, write to the Free Software Foundation,
@@ -50,3 +50,3 @@
50typedef void (*display_xine_frame_t) (void *user_data, uint8_t* frame, 50typedef void (*display_xine_frame_t) (void *user_data, uint8_t* frame,
51 int width, int height,int bytes ); 51 int width, int height,int bytes );
52 52
@@ -191,2 +191,13 @@ int Lib::subVersion() {
191 191
192int Lib::setfile(const QString& fileName)
193{
194 QString str = fileName.stripWhiteSpace();
195
196
197 if ( !xine_open( m_stream, str.utf8().data() ) ) {
198 return 0;
199 }
200 return 1;
201}
202
192int Lib::play( const QString& fileName, int startPos, int start_time ) { 203int Lib::play( const QString& fileName, int startPos, int start_time ) {
@@ -216,3 +227,3 @@ void Lib::pause( bool toggle ) {
216 } 227 }
217 228
218 else { 229 else {
@@ -268,12 +279,12 @@ int Lib::length() const {
268 do 279 do
269 { 280 {
270 iRetVal = xine_get_pos_length( m_stream, &pos, &time, &length ); 281 iRetVal = xine_get_pos_length( m_stream, &pos, &time, &length );
271 if (iRetVal) 282 if (iRetVal)
272 {/* 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.*/
273 return length/1000; 284 return length/1000;
274 } 285 }
275 /*don't poll too much*/ 286 /*don't poll too much*/
276 usleep(100000); 287 usleep(100000);
277 iTestLoop++; 288 iTestLoop++;
278 } 289 }
279 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
@@ -304,3 +315,3 @@ void Lib::seekTo( int time ) {
304 } 315 }
305 316
306} 317}
@@ -333,5 +344,6 @@ void Lib::setWidget( XineVideoWidget *widget )
333 m_wid = widget; 344 m_wid = widget;
334 resize ( m_wid-> size ( ) ); 345 if (m_wid) {
335 ::null_set_mode( m_videoOutput, qt_screen->depth(), qt_screen->pixelType() ); 346 resize ( m_wid-> size ( ) );
336 m_wid->repaint(); 347 ::null_set_mode( m_videoOutput, qt_screen->depth(), qt_screen->pixelType() );
348 }
337} 349}
@@ -433,5 +445,5 @@ void Lib::drawFrame( uint8_t* frame, int width, int height, int bytes ) {
433 445
434 assert( m_wid ); 446// assert( m_wid );
435 447
436 m_wid-> setVideoFrame ( frame, width, height, bytes ); 448 if (m_wid) m_wid-> setVideoFrame ( frame, width, height, bytes );
437} 449}