default progressive off
[melted] / src / modules / sdl / consumer_sdl.c
1 /*
2 * consumer_sdl.c -- A Simple DirectMedia Layer consumer
3 * Copyright (C) 2003-2004 Ushodaya Enterprises Limited
4 * Author: Dan Dennedy <dan@dennedy.org>
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software Foundation,
18 * Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
19 */
20
21 #include "consumer_sdl.h"
22 #include <framework/mlt_frame.h>
23 #include <framework/mlt_deque.h>
24 #include <stdio.h>
25 #include <stdlib.h>
26 #include <string.h>
27 #include <pthread.h>
28 #include <SDL/SDL.h>
29 #include <SDL/SDL_syswm.h>
30 #include <sys/time.h>
31
32 /** This classes definition.
33 */
34
35 typedef struct consumer_sdl_s *consumer_sdl;
36
37 struct consumer_sdl_s
38 {
39 struct mlt_consumer_s parent;
40 mlt_properties properties;
41 mlt_deque queue;
42 pthread_t thread;
43 int running;
44 uint8_t audio_buffer[ 4096 * 19 ];
45 int audio_avail;
46 pthread_mutex_t audio_mutex;
47 pthread_cond_t audio_cond;
48 int window_width;
49 int window_height;
50 float aspect_ratio;
51 int width;
52 int height;
53 int playing;
54 int sdl_flags;
55 SDL_Surface *sdl_screen;
56 SDL_Overlay *sdl_overlay;
57 uint8_t *buffer;
58 };
59
60 /** Forward references to static functions.
61 */
62
63 static int consumer_start( mlt_consumer parent );
64 static int consumer_stop( mlt_consumer parent );
65 static int consumer_is_stopped( mlt_consumer parent );
66 static void consumer_close( mlt_consumer parent );
67 static void *consumer_thread( void * );
68 static int consumer_get_dimensions( int *width, int *height );
69
70 /** This is what will be called by the factory - anything can be passed in
71 via the argument, but keep it simple.
72 */
73
74 mlt_consumer consumer_sdl_init( char *arg )
75 {
76 // Create the consumer object
77 consumer_sdl this = calloc( sizeof( struct consumer_sdl_s ), 1 );
78
79 // If no malloc'd and consumer init ok
80 if ( this != NULL && mlt_consumer_init( &this->parent, this ) == 0 )
81 {
82 // Create the queue
83 this->queue = mlt_deque_init( );
84
85 // Get the parent consumer object
86 mlt_consumer parent = &this->parent;
87
88 // We have stuff to clean up, so override the close method
89 parent->close = consumer_close;
90
91 // get a handle on properties
92 mlt_service service = mlt_consumer_service( parent );
93 this->properties = mlt_service_properties( service );
94
95 // Set the default volume
96 mlt_properties_set_double( this->properties, "volume", 1.0 );
97
98 // This is the initialisation of the consumer
99 pthread_mutex_init( &this->audio_mutex, NULL );
100 pthread_cond_init( &this->audio_cond, NULL);
101
102 // Default scaler (for now we'll use nearest)
103 mlt_properties_set( this->properties, "rescale", "nearest" );
104
105 // Default buffer for low latency
106 mlt_properties_set_int( this->properties, "buffer", 8 );
107
108 // Default progressive true
109 mlt_properties_set_int( this->properties, "progressive", 0 );
110
111 // Get aspect ratio
112 this->aspect_ratio = mlt_properties_get_double( this->properties, "aspect_ratio" );
113
114 // process actual param
115 if ( arg == NULL || sscanf( arg, "%dx%d", &this->width, &this->height ) != 2 )
116 {
117 this->width = mlt_properties_get_int( this->properties, "width" );
118 this->height = mlt_properties_get_int( this->properties, "height" );
119 }
120
121 // Default window size
122 this->window_width = (int)( (float)this->height * 4.0/3.0 + 0.5);
123 this->window_height = this->height;
124
125 // Set the sdl flags
126 this->sdl_flags = SDL_HWSURFACE | SDL_ASYNCBLIT | SDL_HWACCEL | SDL_RESIZABLE;
127
128 // Allow thread to be started/stopped
129 parent->start = consumer_start;
130 parent->stop = consumer_stop;
131 parent->is_stopped = consumer_is_stopped;
132
133 // Return the consumer produced
134 return parent;
135 }
136
137 // malloc or consumer init failed
138 free( this );
139
140 // Indicate failure
141 return NULL;
142 }
143
144 int consumer_start( mlt_consumer parent )
145 {
146 consumer_sdl this = parent->child;
147
148 if ( !this->running )
149 {
150 this->running = 1;
151 pthread_create( &this->thread, NULL, consumer_thread, this );
152 }
153
154 return 0;
155 }
156
157 int consumer_stop( mlt_consumer parent )
158 {
159 // Get the actual object
160 consumer_sdl this = parent->child;
161
162 if ( this->running )
163 {
164 // Kill the thread and clean up
165 this->running = 0;
166
167 pthread_mutex_lock( &this->audio_mutex );
168 pthread_cond_broadcast( &this->audio_cond );
169 pthread_mutex_unlock( &this->audio_mutex );
170
171 pthread_join( this->thread, NULL );
172 }
173
174 return 0;
175 }
176
177 int consumer_is_stopped( mlt_consumer parent )
178 {
179 consumer_sdl this = parent->child;
180 return !this->running;
181 }
182
183 static int sdl_lock_display( )
184 {
185 SDL_Surface *screen = SDL_GetVideoSurface( );
186 return screen != NULL && ( !SDL_MUSTLOCK( screen ) || SDL_LockSurface( screen ) >= 0 );
187 }
188
189 static void sdl_unlock_display( )
190 {
191 SDL_Surface *screen = SDL_GetVideoSurface( );
192 if ( screen != NULL && SDL_MUSTLOCK( screen ) )
193 SDL_UnlockSurface( screen );
194 }
195
196 static void sdl_fill_audio( void *udata, uint8_t *stream, int len )
197 {
198 consumer_sdl this = udata;
199
200 // Get the volume
201 float volume = mlt_properties_get_double( this->properties, "volume" );
202
203 pthread_mutex_lock( &this->audio_mutex );
204
205 // Block until audio received
206 while ( this->running && len > this->audio_avail )
207 pthread_cond_wait( &this->audio_cond, &this->audio_mutex );
208
209 if ( this->audio_avail >= len )
210 {
211 // Place in the audio buffer
212 SDL_MixAudio( stream, this->audio_buffer, len, ( int )( ( float )SDL_MIX_MAXVOLUME * volume ) );
213
214 // Remove len from the audio available
215 this->audio_avail -= len;
216
217 // Remove the samples
218 memmove( this->audio_buffer, this->audio_buffer + len, this->audio_avail );
219 }
220 else
221 {
222 // Just to be safe, wipe the stream first
223 memset( stream, 0, len );
224
225 // Copy what we have into the stream
226 memcpy( stream, this->audio_buffer, this->audio_avail );
227
228 // Mix the audio
229 SDL_MixAudio( stream, stream, len, ( int )( ( float )SDL_MIX_MAXVOLUME * volume ) );
230
231 // No audio left
232 this->audio_avail = 0;
233 }
234
235 // We're definitely playing now
236 this->playing = 1;
237
238 pthread_cond_broadcast( &this->audio_cond );
239 pthread_mutex_unlock( &this->audio_mutex );
240 }
241
242 static int consumer_play_audio( consumer_sdl this, mlt_frame frame, int init_audio, int *duration )
243 {
244 // Get the properties of this consumer
245 mlt_properties properties = this->properties;
246 mlt_audio_format afmt = mlt_audio_pcm;
247
248 // Set the preferred params of the test card signal
249 int channels = 2;
250 int frequency = 48000;
251 static int counter = 0;
252 if ( mlt_properties_get_int( properties, "frequency" ) != 0 )
253 frequency = mlt_properties_get_int( properties, "frequency" );
254
255 int samples = mlt_sample_calculator( mlt_properties_get_double( this->properties, "fps" ), frequency, counter++ );
256
257 int16_t *pcm;
258 int bytes;
259
260 mlt_frame_get_audio( frame, &pcm, &afmt, &frequency, &channels, &samples );
261 *duration = ( ( samples * 1000 ) / frequency );
262
263 if ( mlt_properties_get_int( properties, "audio_off" ) )
264 {
265 this->playing = 1;
266 init_audio = 1;
267 return init_audio;
268 }
269
270 if ( init_audio == 1 )
271 {
272 SDL_AudioSpec request;
273 SDL_AudioSpec got;
274
275 // specify audio format
276 memset( &request, 0, sizeof( SDL_AudioSpec ) );
277 this->playing = 0;
278 request.freq = frequency;
279 request.format = AUDIO_S16;
280 request.channels = channels;
281 request.samples = 1024;
282 request.callback = sdl_fill_audio;
283 request.userdata = (void *)this;
284 if ( SDL_OpenAudio( &request, &got ) != 0 )
285 {
286 fprintf( stderr, "SDL failed to open audio: %s\n", SDL_GetError() );
287 init_audio = 2;
288 }
289 else if ( got.size != 0 )
290 {
291 SDL_PauseAudio( 0 );
292 init_audio = 0;
293 }
294 }
295
296 if ( init_audio == 0 )
297 {
298 mlt_properties properties = mlt_frame_properties( frame );
299 bytes = ( samples * channels * 2 );
300 pthread_mutex_lock( &this->audio_mutex );
301 while ( bytes > ( sizeof( this->audio_buffer) - this->audio_avail ) )
302 pthread_cond_wait( &this->audio_cond, &this->audio_mutex );
303 if ( mlt_properties_get_double( properties, "_speed" ) == 1 )
304 memcpy( &this->audio_buffer[ this->audio_avail ], pcm, bytes );
305 else
306 memset( &this->audio_buffer[ this->audio_avail ], 0, bytes );
307 this->audio_avail += bytes;
308 pthread_cond_broadcast( &this->audio_cond );
309 pthread_mutex_unlock( &this->audio_mutex );
310 }
311 else
312 {
313 this->playing = 1;
314 }
315
316 return init_audio;
317 }
318
319 static int consumer_play_video( consumer_sdl this, mlt_frame frame )
320 {
321 // Get the properties of this consumer
322 mlt_properties properties = this->properties;
323
324 mlt_image_format vfmt = mlt_image_yuv422;
325 int width = this->width, height = this->height;
326 uint8_t *image;
327 int changed = 0;
328
329 if ( mlt_properties_get_int( properties, "video_off" ) == 0 )
330 {
331 // Get the image, width and height
332 mlt_frame_get_image( frame, &image, &vfmt, &width, &height, 0 );
333
334 // Handle events
335 if ( this->sdl_screen != NULL )
336 {
337 SDL_Event event;
338
339 changed = consumer_get_dimensions( &this->window_width, &this->window_height );
340
341 while ( SDL_PollEvent( &event ) )
342 {
343 switch( event.type )
344 {
345 case SDL_VIDEORESIZE:
346 this->window_width = event.resize.w;
347 this->window_height = event.resize.h;
348 changed = 1;
349 break;
350 case SDL_KEYDOWN:
351 {
352 mlt_producer producer = mlt_properties_get_data( properties, "transport_producer", NULL );
353 char keyboard[ 2 ] = " ";
354 void (*callback)( mlt_producer, char * ) = mlt_properties_get_data( properties, "transport_callback", NULL );
355 if ( callback != NULL && producer != NULL && event.key.keysym.unicode < 0x80 && event.key.keysym.unicode > 0 )
356 {
357 keyboard[ 0 ] = ( char )event.key.keysym.unicode;
358 callback( producer, keyboard );
359 }
360 }
361 break;
362 }
363 }
364 }
365
366 if ( width != this->width || height != this->height )
367 {
368 this->width = width;
369 this->height = height;
370 changed = 1;
371 }
372
373 if ( this->sdl_screen == NULL || changed )
374 {
375 double aspect_ratio = ( float )this->aspect_ratio * this->width / this->height;
376 float display_aspect_ratio = ( float )width / height;
377 SDL_Rect rect;
378 if ( mlt_properties_get( properties, "rescale" ) != NULL &&
379 !strcmp( mlt_properties_get( properties, "rescale" ), "none" ) )
380 aspect_ratio = mlt_frame_get_aspect_ratio( frame ) * mlt_properties_get_int(mlt_frame_properties(frame),"width") / mlt_properties_get_int(mlt_frame_properties(frame),"height");
381
382 if ( aspect_ratio == 1 )
383 {
384 rect.w = this->window_width;
385 rect.h = this->window_height;
386 }
387 else if ( this->window_width < this->window_height * aspect_ratio )
388 {
389 rect.w = this->window_width;
390 rect.h = this->window_width / aspect_ratio + 1;
391 }
392 else
393 {
394 rect.w = this->window_height * aspect_ratio + 1;
395 rect.h = this->window_height;
396 }
397
398 if ( mlt_properties_get_int( properties, "scale_overlay" ) )
399 {
400 if ( ( float )rect.w * display_aspect_ratio < this->window_width )
401 rect.w = ( int )( ( float )rect.w * display_aspect_ratio );
402 else if ( ( float )rect.h * display_aspect_ratio < this->window_height )
403 rect.h = ( int )( ( float )rect.h * display_aspect_ratio );
404 }
405
406 rect.x = ( this->window_width - rect.w ) / 2;
407 rect.y = ( this->window_height - rect.h ) / 2;
408
409 // Force an overlay recreation
410 if ( this->sdl_overlay != NULL )
411 SDL_FreeYUVOverlay( this->sdl_overlay );
412
413 // open SDL window with video overlay, if possible
414 this->sdl_screen = SDL_SetVideoMode( this->window_width, this->window_height, 0, this->sdl_flags );
415
416 if ( this->sdl_screen != NULL )
417 {
418 SDL_SetClipRect( this->sdl_screen, &rect );
419
420 sdl_lock_display();
421 this->sdl_overlay = SDL_CreateYUVOverlay( this->width - (this->width % 4), this->height- (this->height % 2 ), SDL_YUY2_OVERLAY, this->sdl_screen );
422 sdl_unlock_display();
423 }
424 }
425
426 if ( this->sdl_screen != NULL && this->sdl_overlay != NULL )
427 {
428 this->buffer = this->sdl_overlay->pixels[ 0 ];
429 if ( SDL_LockYUVOverlay( this->sdl_overlay ) >= 0 )
430 {
431 memcpy( this->buffer, image, width * height * 2 );
432 SDL_UnlockYUVOverlay( this->sdl_overlay );
433 SDL_DisplayYUVOverlay( this->sdl_overlay, &this->sdl_screen->clip_rect );
434 }
435 }
436 }
437
438 // Close the frame
439 mlt_frame_close( frame );
440
441 return 0;
442 }
443
444 /** Threaded wrapper for pipe.
445 */
446
447 static void *consumer_thread( void *arg )
448 {
449 // Identify the arg
450 consumer_sdl this = arg;
451
452 // Get the consumer
453 mlt_consumer consumer = &this->parent;
454
455 // internal intialization
456 int init_audio = 1;
457
458 // Obtain time of thread start
459 struct timeval now;
460 int64_t start = 0;
461 int64_t elapsed = 0;
462 int duration = 0;
463 int64_t playtime = 0;
464 struct timespec tm;
465 mlt_frame next = NULL;
466 mlt_frame frame = NULL;
467
468 if ( SDL_Init( SDL_INIT_VIDEO | SDL_INIT_AUDIO | SDL_INIT_NOPARACHUTE ) < 0 )
469 {
470 fprintf( stderr, "Failed to initialize SDL: %s\n", SDL_GetError() );
471 return NULL;
472 }
473
474 SDL_EnableKeyRepeat( SDL_DEFAULT_REPEAT_DELAY, SDL_DEFAULT_REPEAT_INTERVAL );
475 SDL_EnableUNICODE( 1 );
476
477 // Loop until told not to
478 while( this->running )
479 {
480 // Get a frame from the attached producer
481 frame = mlt_consumer_rt_frame( consumer );
482
483 // Ensure that we have a frame
484 if ( frame != NULL )
485 {
486 // Play audio
487 init_audio = consumer_play_audio( this, frame, init_audio, &duration );
488
489 if ( this->playing )
490 {
491 // Get the current time
492 gettimeofday( &now, NULL );
493
494 // Determine elapsed time
495 if ( start == 0 )
496 start = ( int64_t )now.tv_sec * 1000000 + now.tv_usec;
497 else
498 elapsed = ( ( int64_t )now.tv_sec * 1000000 + now.tv_usec) - start;
499 }
500
501 // Set playtime for this frame
502 mlt_properties_set_position( mlt_frame_properties( frame ), "playtime", playtime );
503
504 // Push this frame to the back of the queue
505 mlt_deque_push_back( this->queue, frame );
506
507 // Calculate the next playtime
508 playtime += ( duration * 1000 );
509 }
510
511 if ( this->playing )
512 {
513 // Pop the next frame
514 next = mlt_deque_pop_front( this->queue );
515
516 // See if we have to delay the display of the current frame
517 if ( next != NULL && mlt_properties_get_int( mlt_frame_properties( next ), "rendered" ) == 1 )
518 {
519 mlt_position scheduled = mlt_properties_get_position( mlt_frame_properties( next ), "playtime" ) + 5000;
520 if ( scheduled > elapsed && mlt_deque_count( this->queue ) > 25 )
521 {
522 tm.tv_sec = ( scheduled - elapsed ) / 1000000;
523 tm.tv_nsec = ( ( scheduled - elapsed ) % 1000000 ) * 1000;
524 nanosleep( &tm, NULL );
525
526 // Show current frame
527 consumer_play_video( this, next );
528 }
529 else if ( scheduled > elapsed )
530 {
531 // More time to kill
532 mlt_deque_push_front( this->queue, next );
533 }
534 else
535 {
536 // Show current frame
537 consumer_play_video( this, next );
538 }
539 }
540 else
541 {
542 // This is an unrendered frame - just close it
543 mlt_frame_close( next );
544 }
545 }
546 }
547
548 // internal cleanup
549 if ( init_audio == 0 )
550 SDL_AudioQuit( );
551 if ( this->sdl_overlay != NULL )
552 SDL_FreeYUVOverlay( this->sdl_overlay );
553 SDL_Quit( );
554
555 while( mlt_deque_count( this->queue ) )
556 mlt_frame_close( mlt_deque_pop_back( this->queue ) );
557
558 this->sdl_screen = NULL;
559 this->sdl_overlay = NULL;
560 this->audio_avail = 0;
561
562 return NULL;
563 }
564
565 static int consumer_get_dimensions( int *width, int *height )
566 {
567 int changed = 0;
568
569 // SDL windows manager structure
570 SDL_SysWMinfo wm;
571
572 // Specify the SDL Version
573 SDL_VERSION( &wm.version );
574
575 // Get the wm structure
576 if ( SDL_GetWMInfo( &wm ) == 1 )
577 {
578 // Check that we have the X11 wm
579 if ( wm.subsystem == SDL_SYSWM_X11 )
580 {
581 // Get the SDL window
582 Window window = wm.info.x11.window;
583
584 // Get the display session
585 Display *display = wm.info.x11.display;
586
587 // Get the window attributes
588 XWindowAttributes attr;
589 XGetWindowAttributes( display, window, &attr );
590
591 // Determine whether window has changed
592 changed = *width != attr.width || *height != attr.height;
593
594 // Return width and height
595 *width = attr.width;
596 *height = attr.height;
597 }
598 }
599
600 return changed;
601 }
602
603 /** Callback to allow override of the close method.
604 */
605
606 static void consumer_close( mlt_consumer parent )
607 {
608 // Get the actual object
609 consumer_sdl this = parent->child;
610
611 // Stop the consumer
612 mlt_consumer_stop( parent );
613
614 // Destroy mutexes
615 pthread_mutex_destroy( &this->audio_mutex );
616 pthread_cond_destroy( &this->audio_cond );
617
618 // Now clean up the rest
619 mlt_consumer_close( parent );
620
621 // Finally clean up this
622 free( this );
623 }