summaryrefslogtreecommitdiff
Unidiff
Diffstat (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/multimedia/opieplayer2/lib.cpp23
1 files changed, 21 insertions, 2 deletions
diff --git a/noncore/multimedia/opieplayer2/lib.cpp b/noncore/multimedia/opieplayer2/lib.cpp
index f1b9773..6ed4cea 100644
--- a/noncore/multimedia/opieplayer2/lib.cpp
+++ b/noncore/multimedia/opieplayer2/lib.cpp
@@ -86,248 +86,267 @@ 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 ts << "# uncomment if you experience double speed audio \n #audio.oss_sync_method:softsync\n"; 89 ts << "# uncomment if you experience double speed audio \n #audio.oss_sync_method:softsync\n";
90 ts << "codec.ffmpeg_pp_quality:3\n"; 90 ts << "codec.ffmpeg_pp_quality:3\n";
91 ts << "audio.num_buffers:50\n"; 91 ts << "audio.num_buffers:50\n";
92 ts << "audio.size_buffers:4096\n"; 92 ts << "audio.size_buffers:4096\n";
93 ts << "video.num_buffers:20\n"; 93 ts << "video.num_buffers:20\n";
94 ts << "video.size_buffers:4096\n"; 94 ts << "video.size_buffers:4096\n";
95 ts << "audio.out_num_audio_buf:16\n"; 95 ts << "audio.out_num_audio_buf:16\n";
96 ts << "audio.out_size_audio_buf:8096\n"; 96 ts << "audio.out_size_audio_buf:8096\n";
97 ts << "audio.out_size_zero_buf:1024\n"; 97 ts << "audio.out_size_zero_buf:1024\n";
98 ts << "audio.passthrough_offset:0\n"; 98 ts << "audio.passthrough_offset:0\n";
99 f.close(); 99 f.close();
100 } 100 }
101 101
102 if ( initMode == InitializeImmediately ) { 102 if ( initMode == InitializeImmediately ) {
103 initialize(); 103 initialize();
104 m_initialized = true; 104 m_initialized = true;
105 } 105 }
106 else 106 else
107 start(); 107 start();
108} 108}
109 109
110void Lib::run() 110void Lib::run()
111{ 111{
112 odebug << "Lib::run() started" << oendl; 112 odebug << "Lib::run() started" << oendl;
113 initialize(); 113 initialize();
114 m_initialized = true; 114 m_initialized = true;
115 odebug << "Lib::run() finished" << oendl; 115 odebug << "Lib::run() finished" << oendl;
116} 116}
117 117
118void Lib::initialize() 118void Lib::initialize()
119{ 119{
120 m_duringInitialization = true; 120 m_duringInitialization = true;
121 m_xine = xine_new( ); 121 m_xine = xine_new( );
122 122
123 QString configPath = QDir::homeDirPath() + "/Settings/opiexine.cf"; 123 QString configPath = QDir::homeDirPath() + "/Settings/opiexine.cf";
124 xine_config_load( m_xine, QFile::encodeName( configPath ) ); 124 xine_config_load( m_xine, QFile::encodeName( configPath ) );
125 125
126 xine_init( m_xine ); 126 xine_init( m_xine );
127 127
128 // allocate oss for sound 128 // allocate oss for sound
129 // and fb for framebuffer 129 // and fb for framebuffer
130 m_audioOutput = xine_open_audio_driver( m_xine, "oss", NULL ); 130 m_audioOutput = xine_open_audio_driver( m_xine, "oss", NULL );
131 m_videoOutput = ::init_video_out_plugin( m_xine, NULL, xine_display_frame, this ); 131 m_videoOutput = ::init_video_out_plugin( m_xine, NULL, xine_display_frame, this );
132 132
133 m_stream = xine_stream_new (m_xine, m_audioOutput, m_videoOutput ); 133 m_stream = xine_stream_new (m_xine, m_audioOutput, m_videoOutput );
134 xine_set_param( m_stream, XINE_PARAM_AUDIO_CLOSE_DEVICE, 1);
134 135
135 if (m_wid != 0 ) 136 if (m_wid != 0 )
136 setWidget( m_wid ); 137 setWidget( m_wid );
137 138
138 139
139 m_queue = xine_event_new_queue (m_stream); 140 m_queue = xine_event_new_queue (m_stream);
140 xine_event_create_listener_thread (m_queue, xine_event_handler, this); 141 xine_event_create_listener_thread (m_queue, xine_event_handler, this);
141 142
142 ::null_preload_decoders( m_stream ); 143 ::null_preload_decoders( m_stream );
143 144
144 m_duringInitialization = false; 145 m_duringInitialization = false;
145} 146}
146 147
147Lib::~Lib() { 148Lib::~Lib() {
148 assert( isRunning() == false ); 149 assert( isRunning() == false );
149 assert( m_initialized ); 150 assert( m_initialized );
150 151
151// free( m_config ); 152// free( m_config );
152 153
153 xine_close( m_stream ); 154 xine_close( m_stream );
154 xine_event_dispose_queue( m_queue ); 155 xine_event_dispose_queue( m_queue );
155 xine_dispose( m_stream ); 156 xine_dispose( m_stream );
156 xine_exit( m_xine ); 157 xine_exit( m_xine );
157 158
158 /* FIXME either free or delete but valgrind bitches against both */ 159 /* FIXME either free or delete but valgrind bitches against both */
159 //free( m_videoOutput ); 160 //free( m_videoOutput );
160 //delete m_audioOutput; 161 //delete m_audioOutput;
161} 162}
162 163
163void Lib::resize ( const QSize &s ) { 164void Lib::resize ( const QSize &s ) {
164 assert( m_initialized || m_duringInitialization ); 165 assert( m_initialized || m_duringInitialization );
165 166
166 if ( s. width ( ) && s. height ( ) ) { 167 if ( s. width ( ) && s. height ( ) ) {
167 ::null_set_gui_width( m_videoOutput, s. width() ); 168 ::null_set_gui_width( m_videoOutput, s. width() );
168 ::null_set_gui_height( m_videoOutput, s. height() ); 169 ::null_set_gui_height( m_videoOutput, s. height() );
169 } 170 }
170} 171}
171 172
172int Lib::majorVersion() { 173int Lib::majorVersion() {
173 int major, minor, sub; 174 int major, minor, sub;
174 xine_get_version ( &major, &minor, &sub ); 175 xine_get_version ( &major, &minor, &sub );
175 return major; 176 return major;
176} 177}
177 178
178int Lib::minorVersion() { 179int Lib::minorVersion() {
179 int major, minor, sub; 180 int major, minor, sub;
180 xine_get_version ( &major, &minor, &sub ); 181 xine_get_version ( &major, &minor, &sub );
181 return minor; 182 return minor;
182} 183}
183 184
184int Lib::subVersion() { 185int Lib::subVersion() {
185 int major, minor, sub; 186 int major, minor, sub;
186 xine_get_version ( &major, &minor, &sub ); 187 xine_get_version ( &major, &minor, &sub );
187 return sub; 188 return sub;
188} 189}
189 190
190int Lib::play( const QString& fileName, int startPos, int start_time ) { 191int Lib::play( const QString& fileName, int startPos, int start_time ) {
191 assert( m_initialized ); 192 assert( m_initialized );
192 193
193 QString str = fileName.stripWhiteSpace(); 194 QString str = fileName.stripWhiteSpace();
194 195
195 196
196 if ( !xine_open( m_stream, str.utf8().data() ) ) { 197 if ( !xine_open( m_stream, str.utf8().data() ) ) {
197 return 0; 198 return 0;
198 } 199 }
199 return xine_play( m_stream, startPos, start_time); 200 return xine_play( m_stream, startPos, start_time);
200} 201}
201 202
202void Lib::stop() { 203void Lib::stop() {
203 assert( m_initialized ); 204 assert( m_initialized );
204 xine_stop( m_stream ); 205 xine_stop( m_stream );
206 xine_set_param( m_stream, XINE_PARAM_AUDIO_CLOSE_DEVICE, 1);
205} 207}
206 208
207void Lib::pause( bool toggle ) { 209void Lib::pause( bool toggle ) {
208 assert( m_initialized ); 210 assert( m_initialized );
209 211
210 xine_set_param( m_stream, XINE_PARAM_SPEED, toggle ? XINE_SPEED_PAUSE : XINE_SPEED_NORMAL ); 212 if ( toggle ) {
213 xine_set_param( m_stream, XINE_PARAM_SPEED, XINE_SPEED_PAUSE );
214 xine_set_param( m_stream, XINE_PARAM_AUDIO_CLOSE_DEVICE, 1);
215 }
216
217 else {
218 xine_set_param( m_stream, XINE_PARAM_SPEED, XINE_SPEED_NORMAL );
219 }
211} 220}
212 221
213int Lib::speed() const { 222int Lib::speed() const {
214 assert( m_initialized ); 223 assert( m_initialized );
215 224
216 return xine_get_param ( m_stream, XINE_PARAM_SPEED ); 225 return xine_get_param ( m_stream, XINE_PARAM_SPEED );
217} 226}
218 227
219void Lib::setSpeed( int speed ) { 228void Lib::setSpeed( int speed ) {
220 assert( m_initialized ); 229 assert( m_initialized );
221 230
222 xine_set_param ( m_stream, XINE_PARAM_SPEED, speed ); 231 xine_set_param ( m_stream, XINE_PARAM_SPEED, speed );
223} 232}
224 233
225int Lib::status() const { 234int Lib::status() const {
226 assert( m_initialized ); 235 assert( m_initialized );
227 236
228 return xine_get_status( m_stream ); 237 return xine_get_status( m_stream );
229} 238}
230 239
231int Lib::currentPosition() const { 240int Lib::currentPosition() const {
232 assert( m_initialized ); 241 assert( m_initialized );
233 242
234 int pos, time, length; 243 int pos, time, length;
235 xine_get_pos_length( m_stream, &pos, &time, &length ); 244 xine_get_pos_length( m_stream, &pos, &time, &length );
236 return pos; 245 return pos;
237} 246}
238 247
239int Lib::currentTime() const { 248int Lib::currentTime() const {
240 assert( m_initialized ); 249 assert( m_initialized );
241 250
242 int pos, time, length; 251 int pos, time, length;
243 pos = time = length = 0; 252 pos = time = length = 0;
244 253
245 if ( xine_get_pos_length( m_stream, &pos, &time, &length ) ) 254 if ( xine_get_pos_length( m_stream, &pos, &time, &length ) )
246 return time/1000; 255 return time/1000;
247 else 256 else
248 return 0; 257 return 0;
249} 258}
250 259
251int Lib::length() const { 260int Lib::length() const {
252 assert( m_initialized ); 261 assert( m_initialized );
253 262
254 int pos, time, length; 263 int pos, time, length;
255/* dilb: patch to solve the wrong stream length reported to the GUI*/ 264/* dilb: patch to solve the wrong stream length reported to the GUI*/
256 int iRetVal=0, iTestLoop=0; 265 int iRetVal=0, iTestLoop=0;
257 266
258 do 267 do
259 { 268 {
260 iRetVal = xine_get_pos_length( m_stream, &pos, &time, &length ); 269 iRetVal = xine_get_pos_length( m_stream, &pos, &time, &length );
261 if (iRetVal) 270 if (iRetVal)
262 {/* if the function didn't return 0, then pos, time and length are valid.*/ 271 {/* if the function didn't return 0, then pos, time and length are valid.*/
263 return length/1000; 272 return length/1000;
264 } 273 }
265 /*don't poll too much*/ 274 /*don't poll too much*/
266 usleep(100000); 275 usleep(100000);
267 iTestLoop++; 276 iTestLoop++;
268 } 277 }
269 while ( iTestLoop < 10 ); /* if after 1s, we still don't have any 278 while ( iTestLoop < 10 ); /* if after 1s, we still don't have any
270valid stream, then return -1 (this value could be used to make the stream 279valid stream, then return -1 (this value could be used to make the stream
271unseekable, but it should never occur!! Mr. Murphy ? :) ) */ 280unseekable, but it should never occur!! Mr. Murphy ? :) ) */
272 281
273 return -1; 282 return -1;
274} 283}
275 284
276bool Lib::isSeekable() const { 285bool Lib::isSeekable() const {
277 assert( m_initialized ); 286 assert( m_initialized );
278 287
279 return xine_get_stream_info( m_stream, XINE_STREAM_INFO_SEEKABLE ); 288 return xine_get_stream_info( m_stream, XINE_STREAM_INFO_SEEKABLE );
280} 289}
281 290
282void Lib::seekTo( int time ) { 291void Lib::seekTo( int time ) {
283 assert( m_initialized ); 292 assert( m_initialized );
284 293
285 xine_play( m_stream, 0, time*1000 ); 294 odebug << "Seeking to second " << time << oendl;
295 //Keep it paused if it was in that state
296 if ( xine_get_param( m_stream, XINE_PARAM_SPEED ) ) {
297 xine_play( m_stream, 0, time*1000 );
298 }
299
300 else {
301 xine_play( m_stream, 0, time*1000 );
302 xine_set_param( m_stream, XINE_PARAM_SPEED, XINE_SPEED_PAUSE );
303 }
304
286} 305}
287 306
288 307
289Frame Lib::currentFrame() const { 308Frame Lib::currentFrame() const {
290 assert( m_initialized ); 309 assert( m_initialized );
291 310
292 Frame frame; 311 Frame frame;
293 return frame; 312 return frame;
294}; 313};
295 314
296QString Lib::metaInfo( int number) const { 315QString Lib::metaInfo( int number) const {
297 assert( m_initialized ); 316 assert( m_initialized );
298 317
299 return xine_get_meta_info( m_stream, number ); 318 return xine_get_meta_info( m_stream, number );
300} 319}
301 320
302int Lib::error() const { 321int Lib::error() const {
303 assert( m_initialized ); 322 assert( m_initialized );
304 323
305 return xine_get_error( m_stream ); 324 return xine_get_error( m_stream );
306}; 325};
307 326
308void Lib::ensureInitialized() 327void Lib::ensureInitialized()
309{ 328{
310 if ( m_initialized ) 329 if ( m_initialized )
311 return; 330 return;
312 331
313 odebug << "waiting for initialization thread to finish" << oendl; 332 odebug << "waiting for initialization thread to finish" << oendl;
314 wait(); 333 wait();
315 odebug << "initialization thread finished!" << oendl; 334 odebug << "initialization thread finished!" << oendl;
316} 335}
317 336
318void Lib::setWidget( XineVideoWidget *widget ) 337void Lib::setWidget( XineVideoWidget *widget )
319{ 338{
320 m_wid = widget; 339 m_wid = widget;
321 resize ( m_wid-> size ( ) ); 340 resize ( m_wid-> size ( ) );
322 ::null_set_mode( m_videoOutput, qt_screen->depth(), qt_screen->pixelType() ); 341 ::null_set_mode( m_videoOutput, qt_screen->depth(), qt_screen->pixelType() );
323 m_wid->repaint(); 342 m_wid->repaint();
324} 343}
325 344
326void Lib::receiveMessage( ThreadUtil::ChannelMessage *msg, SendType sendType ) 345void Lib::receiveMessage( ThreadUtil::ChannelMessage *msg, SendType sendType )
327{ 346{
328 assert( sendType == ThreadUtil::Channel::OneWay ); 347 assert( sendType == ThreadUtil::Channel::OneWay );
329 handleXineEvent( msg->type(), msg->data(), msg->msg() ); 348 handleXineEvent( msg->type(), msg->data(), msg->msg() );
330 delete msg; 349 delete msg;
331} 350}
332 351
333void Lib::handleXineEvent( const xine_event_t* t ) { 352void Lib::handleXineEvent( const xine_event_t* t ) {