300dcc172219925faaf694a0e13e890e8a7f2075
[melted] / mlt / src / framework / mlt_playlist.c
1 /*
2 * mlt_playlist.c -- playlist service class
3 * Copyright (C) 2003-2004 Ushodaya Enterprises Limited
4 * Author: Charles Yates <charles.yates@pandora.be>
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 "config.h"
22
23 #include "mlt_playlist.h"
24 #include "mlt_frame.h"
25
26 #include <stdio.h>
27 #include <stdlib.h>
28 #include <string.h>
29
30 /** Virtual playlist entry.
31 */
32
33 typedef struct
34 {
35 mlt_producer producer;
36 int64_t frame_in;
37 int64_t frame_out;
38 int64_t frame_count;
39 mlt_timecode playtime;
40 }
41 playlist_entry;
42
43 /** Private definition.
44 */
45
46 struct mlt_playlist_s
47 {
48 struct mlt_producer_s parent;
49 struct mlt_producer_s blank;
50
51 int size;
52 int count;
53 playlist_entry **list;
54 };
55
56 /** Forward declarations
57 */
58
59 static int producer_get_frame( mlt_producer producer, mlt_frame_ptr frame, int index );
60
61 /** Constructor.
62 */
63
64 mlt_playlist mlt_playlist_init( )
65 {
66 mlt_playlist this = calloc( sizeof( struct mlt_playlist_s ), 1 );
67 if ( this != NULL )
68 {
69 mlt_producer producer = &this->parent;
70
71 // Construct the producer
72 mlt_producer_init( producer, this );
73
74 // Override the producer get_frame
75 producer->get_frame = producer_get_frame;
76
77 // Initialise blank
78 mlt_producer_init( &this->blank, NULL );
79
80 // Indicate that this producer is a playlist
81 mlt_properties_set_data( mlt_playlist_properties( this ), "playlist", this, 0, NULL, NULL );
82 }
83
84 return this;
85 }
86
87 /** Get the producer associated to this playlist.
88 */
89
90 mlt_producer mlt_playlist_producer( mlt_playlist this )
91 {
92 return &this->parent;
93 }
94
95 /** Get the service associated to this playlist.
96 */
97
98 mlt_service mlt_playlist_service( mlt_playlist this )
99 {
100 return mlt_producer_service( &this->parent );
101 }
102
103 /** Get the propertues associated to this playlist.
104 */
105
106 mlt_properties mlt_playlist_properties( mlt_playlist this )
107 {
108 return mlt_producer_properties( &this->parent );
109 }
110
111 static int mlt_playlist_virtual_refresh( mlt_playlist this )
112 {
113 int i = 0;
114
115 // Get the fps of the first producer
116 double fps = mlt_properties_get_double( mlt_playlist_properties( this ), "first_fps" );
117 mlt_timecode playtime = 0;
118
119 for ( i = 0; i < this->count; i ++ )
120 {
121 // Get the producer
122 mlt_producer producer = this->list[ i ]->producer;
123
124 // If fps is 0
125 if ( fps == 0 )
126 {
127 // Inherit it from the producer
128 fps = mlt_producer_get_fps( producer );
129 }
130 else if ( fps != mlt_properties_get_double( mlt_producer_properties( producer ), "fps" ) )
131 {
132 // Generate a warning for now - the following attempt to fix may fail
133 fprintf( stderr, "Warning: fps mismatch on playlist producer %d\n", this->count );
134
135 // It should be safe to impose fps on an image producer, but not necessarily safe for video
136 mlt_properties_set_double( mlt_producer_properties( producer ), "fps", fps );
137 }
138
139 // Update the playtime for this clip
140 playtime += this->list[ i ]->playtime;
141 }
142
143 // Refresh all properties
144 mlt_properties_set_double( mlt_playlist_properties( this ), "first_fps", fps );
145 mlt_properties_set_double( mlt_playlist_properties( this ), "fps", fps == 0 ? 25 : fps );
146 mlt_properties_set_timecode( mlt_playlist_properties( this ), "length", playtime );
147 mlt_properties_set_timecode( mlt_playlist_properties( this ), "out", playtime );
148
149 return 0;
150 }
151
152 /** Append to the virtual playlist.
153 */
154
155 static int mlt_playlist_virtual_append( mlt_playlist this, mlt_producer producer, int64_t in, int64_t out )
156 {
157 double fps = mlt_properties_get_double( mlt_playlist_properties( this ), "fps" );
158 double playtime = ( double )( out - in + 1 ) / fps;
159
160 // Check that we have room
161 if ( this->count >= this->size )
162 {
163 int i;
164 this->list = realloc( this->list, ( this->size + 10 ) * sizeof( playlist_entry * ) );
165 for ( i = this->size; i < this->size + 10; i ++ )
166 this->list[ i ] = NULL;
167 this->size += 10;
168 }
169
170 this->list[ this->count ] = calloc( sizeof( playlist_entry ), 1 );
171 this->list[ this->count ]->producer = producer;
172 this->list[ this->count ]->frame_in = in;
173 this->list[ this->count ]->frame_out = out;
174 this->list[ this->count ]->frame_count = out - in + 1;
175 this->list[ this->count ]->playtime = playtime;
176
177 mlt_producer_set_speed( producer, 0 );
178
179 this->count ++;
180
181 return mlt_playlist_virtual_refresh( this );
182 }
183
184 /** Seek in the virtual playlist.
185 */
186
187 static mlt_producer mlt_playlist_virtual_seek( mlt_playlist this )
188 {
189 // Default producer to blank
190 mlt_producer producer = NULL;
191
192 // Map playlist position to real producer in virtual playlist
193 mlt_timecode pos = mlt_producer_position( &this->parent );
194 int64_t position = mlt_producer_frame_position( &this->parent, pos );
195 int64_t total = 0;
196
197 // Loop through the virtual playlist
198 int i = 0;
199
200 for ( i = 0; i < this->count; i ++ )
201 {
202 // Increment the total
203 total += this->list[ i ]->frame_count;
204
205 if ( position < this->list[ i ]->frame_count )
206 {
207 // Found it, now break
208 producer = this->list[ i ]->producer;
209 position += this->list[ i ]->frame_in;
210 break;
211 }
212 else
213 {
214 // Decrement position by length of this entry
215 position -= this->list[ i ]->frame_count;
216 }
217 }
218
219 // Seek in real producer to relative position
220 if ( producer != NULL )
221 {
222 mlt_producer_seek_frame( producer, position + mlt_producer_frame_position( producer, mlt_producer_get_in( producer ) ) );
223 }
224 else if ( total > 0 )
225 {
226 playlist_entry *entry = this->list[ this->count - 1 ];
227 mlt_producer this_producer = mlt_playlist_producer( this );
228 mlt_producer_seek_frame( this_producer, total - 1 );
229 producer = entry->producer;
230 mlt_producer_seek_frame( producer, entry->frame_out );
231 }
232 else
233 {
234 mlt_producer_seek( mlt_playlist_producer( this ), 0 );
235 producer = &this->blank;
236 }
237
238 return producer;
239 }
240
241 static mlt_producer mlt_playlist_virtual_set_out( mlt_playlist this )
242 {
243 // Default producer to blank
244 mlt_producer producer = &this->blank;
245
246 // Map playlist position to real producer in virtual playlist
247 mlt_timecode pos = mlt_producer_position( &this->parent );
248 int64_t position = mlt_producer_frame_position( &this->parent, pos );
249
250 // Loop through the virtual playlist
251 int i = 0;
252
253 for ( i = 0; i < this->count; i ++ )
254 {
255 if ( position < this->list[ i ]->frame_count )
256 {
257 // Found it, now break
258 producer = this->list[ i ]->producer;
259 break;
260 }
261 else
262 {
263 // Decrement position by length of this entry
264 position -= this->list[ i ]->frame_count;
265 }
266 }
267
268 // Seek in real producer to relative position
269 if ( i < this->count )
270 {
271 // Update the playtime for the changed clip (hmmm)
272 this->list[ i ]->frame_count = position + 1;
273 this->list[ i ]->frame_out = position - this->list[ i ]->frame_in;
274
275 // Refresh the playlist
276 mlt_playlist_virtual_refresh( this );
277 }
278
279 return producer;
280 }
281
282 int mlt_playlist_current_clip( mlt_playlist this )
283 {
284 // Map playlist position to real producer in virtual playlist
285 mlt_timecode pos = mlt_producer_position( &this->parent );
286 int64_t position = mlt_producer_frame_position( &this->parent, pos );
287
288 // Loop through the virtual playlist
289 int i = 0;
290
291 for ( i = 0; i < this->count; i ++ )
292 {
293 if ( position < this->list[ i ]->frame_count )
294 {
295 // Found it, now break
296 break;
297 }
298 else
299 {
300 // Decrement position by length of this entry
301 position -= this->list[ i ]->frame_count;
302 }
303 }
304
305 return i;
306 }
307
308 mlt_producer mlt_playlist_current( mlt_playlist this )
309 {
310 int i = mlt_playlist_current_clip( this );
311 if ( i < this->count )
312 return this->list[ i ]->producer;
313 else
314 return &this->blank;
315 }
316
317 /** Get the timecode which corresponds to the start of the next clip.
318 */
319
320 mlt_timecode mlt_playlist_clip( mlt_playlist this, mlt_whence whence, int index )
321 {
322 int64_t position = 0;
323 int absolute_clip = index;
324 int i = 0;
325
326 // Determine the absolute clip
327 switch ( whence )
328 {
329 case mlt_whence_relative_start:
330 absolute_clip = index;
331 break;
332
333 case mlt_whence_relative_current:
334 absolute_clip = mlt_playlist_current_clip( this ) + index;
335 break;
336
337 case mlt_whence_relative_end:
338 absolute_clip = this->count - index;
339 break;
340 }
341
342 // Check that we're in a valid range
343 if ( absolute_clip < 0 )
344 absolute_clip = 0;
345 else if ( absolute_clip > this->count )
346 absolute_clip = this->count;
347
348 // Now determine the timecode
349 for ( i = 0; i < absolute_clip; i ++ )
350 position += this->list[ i ]->frame_count;
351
352 return mlt_producer_time( &this->parent, position );
353 }
354
355 int mlt_playlist_get_clip_info( mlt_playlist this, mlt_playlist_clip_info *info, int index )
356 {
357 int error = index < 0 || index >= this->count;
358 memset( info, 0, sizeof( mlt_playlist_clip_info ) );
359 if ( !error )
360 {
361 mlt_producer producer = this->list[ index ]->producer;
362 mlt_properties properties = mlt_producer_properties( producer );
363 info->producer = producer;
364 info->start = mlt_playlist_clip( this, mlt_whence_relative_start, index );
365 info->resource = mlt_properties_get( properties, "resource" );
366 info->frame_in = this->list[ index ]->frame_in;
367 info->in = mlt_producer_time( producer, info->frame_in );
368 info->frame_out = this->list[ index ]->frame_out;
369 info->out = mlt_producer_time( producer, info->frame_out );
370 info->playtime = this->list[ index ]->playtime;
371 info->length = mlt_producer_get_length( producer );
372 info->fps = mlt_producer_get_fps( producer );
373 }
374 return error;
375 }
376
377 /** Get number of clips in the playlist.
378 */
379
380 int mlt_playlist_count( mlt_playlist this )
381 {
382 return this->count;
383 }
384
385 /** Clear the playlist.
386 */
387
388 int mlt_playlist_clear( mlt_playlist this )
389 {
390 this->count = 0;
391 mlt_properties_set_double( mlt_playlist_properties( this ), "first_fps", 0 );
392 return mlt_playlist_virtual_refresh( this );
393 }
394
395 /** Append a producer to the playlist.
396 */
397
398 int mlt_playlist_append( mlt_playlist this, mlt_producer producer )
399 {
400 // Append to virtual list
401 int64_t in = mlt_producer_frame_position( producer, mlt_producer_get_in( producer ) );
402 int64_t out = mlt_producer_frame_position( producer, mlt_producer_get_out( producer ) );
403 return mlt_playlist_virtual_append( this, producer, 0, out - in );
404 }
405
406 /** Append a producer to the playlist with in/out points.
407 */
408
409 int mlt_playlist_append_io( mlt_playlist this, mlt_producer producer, double in, double out )
410 {
411 // Append to virtual list
412 if ( in != -1 && out != -1 )
413 {
414 int64_t fin = mlt_producer_frame_position( producer, in );
415 int64_t fout = mlt_producer_frame_position( producer, out );
416 return mlt_playlist_virtual_append( this, producer, 0, fout - fin );
417 }
418 else
419 {
420 return mlt_playlist_append( this, producer );
421 }
422 }
423
424 /** Append a blank to the playlist of a given length.
425 */
426
427 int mlt_playlist_blank( mlt_playlist this, mlt_timecode length )
428 {
429 // Append to the virtual list
430 int64_t fout = mlt_producer_frame_position( &this->blank, length );
431 return mlt_playlist_virtual_append( this, &this->blank, 0, fout );
432 }
433
434 /** Insert a producer into the playlist.
435 */
436
437 int mlt_playlist_insert( mlt_playlist this, mlt_producer producer, int where, mlt_timecode in, mlt_timecode out )
438 {
439 return 0;
440 }
441
442 int mlt_playlist_remove( mlt_playlist this, int where )
443 {
444 return 0;
445 }
446
447 int mlt_playlist_move( mlt_playlist this, int from, int to )
448 {
449 return 0;
450 }
451
452 int mlt_playlist_resize_clip( mlt_playlist this, int clip, mlt_timecode in, mlt_timecode out )
453 {
454 int error = clip < 0 || clip >= this->count;
455 if ( error == 0 )
456 {
457 playlist_entry *entry = this->list[ clip ];
458 mlt_producer producer = entry->producer;
459
460 if ( in <= -1 )
461 in = 0;
462 if ( out <= -1 || out >= mlt_producer_get_out( producer ) )
463 out = mlt_producer_get_out( producer );
464
465 if ( out < in )
466 {
467 mlt_timecode t = in;
468 in = out;
469 out = t;
470 }
471
472 int64_t fin = mlt_producer_frame_position( producer, in );
473 int64_t fout = mlt_producer_frame_position( producer, out );
474
475 entry->frame_in = fin;
476 entry->frame_out = fout;
477 entry->frame_count = fout - fin + 1;
478 entry->playtime = out - in;
479 mlt_playlist_virtual_refresh( this );
480 }
481 return error;
482 }
483
484 /** Get the current frame.
485 */
486
487 static int producer_get_frame( mlt_producer producer, mlt_frame_ptr frame, int index )
488 {
489 // Get this mlt_playlist
490 mlt_playlist this = producer->child;
491
492 // Get the real producer
493 mlt_producer real = mlt_playlist_virtual_seek( this );
494
495 // Get the frame
496 mlt_service_get_frame( mlt_producer_service( real ), frame, index );
497
498 // Check if we're at the end of the clip
499 mlt_properties properties = mlt_frame_properties( *frame );
500 if ( mlt_properties_get_int( properties, "end_of_clip" ) )
501 mlt_playlist_virtual_set_out( this );
502
503 // Check for notifier and call with appropriate argument
504 mlt_properties playlist_properties = mlt_producer_properties( producer );
505 void ( *notifier )( void * ) = mlt_properties_get_data( playlist_properties, "notifier", NULL );
506 if ( notifier != NULL )
507 {
508 void *argument = mlt_properties_get_data( playlist_properties, "notifier_arg", NULL );
509 notifier( argument );
510 }
511
512 // Update timecode on the frame we're creating
513 mlt_frame_set_timecode( *frame, mlt_producer_position( producer ) );
514
515 // Position ourselves on the next frame
516 mlt_producer_prepare_next( producer );
517
518 return 0;
519 }
520
521 /** Close the playlist.
522 */
523
524 void mlt_playlist_close( mlt_playlist this )
525 {
526 mlt_producer_close( &this->parent );
527 mlt_producer_close( &this->blank );
528 free( this );
529 }