forked from gandalfliang/mlt
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmlt_consumer.c
1810 lines (1555 loc) · 56.4 KB
/
mlt_consumer.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
/**
* \file mlt_consumer.c
* \brief abstraction for all consumer services
* \see mlt_consumer_s
*
* Copyright (C) 2003-2015 Meltytech, LLC
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
#include "mlt_consumer.h"
#include "mlt_factory.h"
#include "mlt_producer.h"
#include "mlt_frame.h"
#include "mlt_profile.h"
#include "mlt_log.h"
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
#include <sys/time.h>
/** Define this if you want an automatic deinterlace (if necessary) when the
* consumer's producer is not running at normal speed.
*/
#undef DEINTERLACE_ON_NOT_NORMAL_SPEED
/** This is not the ideal place for this, but it is needed by VDPAU as well.
*/
pthread_mutex_t mlt_sdl_mutex = PTHREAD_MUTEX_INITIALIZER;
/** \brief private members of mlt_consumer */
typedef struct
{
int real_time;
int ahead;
int preroll;
mlt_image_format image_format;
mlt_audio_format audio_format;
mlt_deque queue;
void *ahead_thread;
pthread_mutex_t queue_mutex;
pthread_cond_t queue_cond;
pthread_mutex_t put_mutex;
pthread_cond_t put_cond;
mlt_frame put;
int put_active;
mlt_event event_listener;
mlt_position position;
int is_purge;
int aud_counter;
double fps;
int channels;
int frequency;
/* additional fields added for the parallel work queue */
mlt_deque worker_threads;
pthread_mutex_t done_mutex;
pthread_cond_t done_cond;
int consecutive_dropped;
int consecutive_rendered;
int process_head;
int started;
pthread_t *threads; /**< used to deallocate all threads */
}
consumer_private;
typedef void* ( *thread_function_t )( void* );
static void mlt_consumer_frame_render( mlt_listener listener, mlt_properties owner, mlt_service self, void **args );
static void mlt_consumer_frame_show( mlt_listener listener, mlt_properties owner, mlt_service self, void **args );
static void mlt_consumer_property_changed( mlt_properties owner, mlt_consumer self, char *name );
static void apply_profile_properties( mlt_consumer self, mlt_profile profile, mlt_properties properties );
static void on_consumer_frame_show( mlt_properties owner, mlt_consumer self, mlt_frame frame );
static void transmit_thread_create( mlt_listener listener, mlt_properties owner, mlt_service self, void **args );
static void mlt_thread_create( mlt_consumer self, thread_function_t function );
static void transmit_thread_join( mlt_listener listener, mlt_properties owner, mlt_service self, void **args );
static void mlt_thread_join( mlt_consumer self );
static void consumer_read_ahead_start( mlt_consumer self );
/** Initialize a consumer service.
*
* \public \memberof mlt_consumer_s
* \param self the consumer to initialize
* \param child a pointer to the object for the subclass
* \param profile the \p mlt_profile_s to use (optional but recommended,
* uses the environment variable MLT if self is NULL)
* \return true if there was an error
*/
int mlt_consumer_init( mlt_consumer self, void *child, mlt_profile profile )
{
int error = 0;
memset( self, 0, sizeof( struct mlt_consumer_s ) );
self->child = child;
consumer_private *priv = self->local = calloc( 1, sizeof( consumer_private ) );
error = mlt_service_init( &self->parent, self );
if ( error == 0 )
{
// Get the properties from the service
mlt_properties properties = MLT_SERVICE_PROPERTIES( &self->parent );
// Apply profile to properties
if ( profile == NULL )
{
// Normally the application creates the profile and controls its lifetime
// This is the fallback exception handling
profile = mlt_profile_init( NULL );
mlt_properties properties = MLT_CONSUMER_PROPERTIES( self );
mlt_properties_set_data( properties, "_profile", profile, 0, (mlt_destructor)mlt_profile_close, NULL );
}
apply_profile_properties( self, profile, properties );
// Default rescaler for all consumers
mlt_properties_set( properties, "rescale", "bilinear" );
// Default read ahead buffer size
mlt_properties_set_int( properties, "buffer", 25 );
mlt_properties_set_int( properties, "drop_max", 5 );
// Default audio frequency and channels
mlt_properties_set_int( properties, "frequency", 48000 );
mlt_properties_set_int( properties, "channels", 2 );
// Default of all consumers is real time
mlt_properties_set_int( properties, "real_time", 1 );
// Default to environment test card
mlt_properties_set( properties, "test_card", mlt_environment( "MLT_TEST_CARD" ) );
// Hmm - default all consumers to yuv422 with s16 :-/
priv->image_format = mlt_image_yuv422;
priv->audio_format = mlt_audio_s16;
mlt_events_register( properties, "consumer-frame-show", ( mlt_transmitter )mlt_consumer_frame_show );
mlt_events_register( properties, "consumer-frame-render", ( mlt_transmitter )mlt_consumer_frame_render );
mlt_events_register( properties, "consumer-thread-started", NULL );
mlt_events_register( properties, "consumer-thread-stopped", NULL );
mlt_events_register( properties, "consumer-stopping", NULL );
mlt_events_register( properties, "consumer-stopped", NULL );
mlt_events_register( properties, "consumer-thread-create", ( mlt_transmitter )transmit_thread_create );
mlt_events_register( properties, "consumer-thread-join", ( mlt_transmitter )transmit_thread_join );
mlt_events_listen( properties, self, "consumer-frame-show", ( mlt_listener )on_consumer_frame_show );
// Register a property-changed listener to handle the profile property -
// subsequent properties can override the profile
priv->event_listener = mlt_events_listen( properties, self, "property-changed", ( mlt_listener )mlt_consumer_property_changed );
// Create the push mutex and condition
pthread_mutex_init( &priv->put_mutex, NULL );
pthread_cond_init( &priv->put_cond, NULL );
}
return error;
}
/** Convert the profile into properties on the consumer.
*
* \private \memberof mlt_consumer_s
* \param self a consumer
* \param profile a profile
* \param properties a properties list (typically, the consumer's)
*/
static void apply_profile_properties( mlt_consumer self, mlt_profile profile, mlt_properties properties )
{
consumer_private *priv = self->local;
mlt_event_block( priv->event_listener );
mlt_properties_set_double( properties, "fps", mlt_profile_fps( profile ) );
mlt_properties_set_int( properties, "frame_rate_num", profile->frame_rate_num );
mlt_properties_set_int( properties, "frame_rate_den", profile->frame_rate_den );
mlt_properties_set_int( properties, "width", profile->width );
mlt_properties_set_int( properties, "height", profile->height );
mlt_properties_set_int( properties, "progressive", profile->progressive );
mlt_properties_set_double( properties, "aspect_ratio", mlt_profile_sar( profile ) );
mlt_properties_set_int( properties, "sample_aspect_num", profile->sample_aspect_num );
mlt_properties_set_int( properties, "sample_aspect_den", profile->sample_aspect_den );
mlt_properties_set_double( properties, "display_ratio", mlt_profile_dar( profile ) );
mlt_properties_set_int( properties, "display_aspect_num", profile->display_aspect_num );
mlt_properties_set_int( properties, "display_aspect_den", profile->display_aspect_den );
mlt_properties_set_int( properties, "colorspace", profile->colorspace );
mlt_event_unblock( priv->event_listener );
}
/** The property-changed event listener
*
* \private \memberof mlt_consumer_s
* \param owner the events object
* \param self the consumer
* \param name the name of the property that changed
*/
static void mlt_consumer_property_changed( mlt_properties owner, mlt_consumer self, char *name )
{
if ( !strcmp( name, "mlt_profile" ) )
{
// Get the properies
mlt_properties properties = MLT_CONSUMER_PROPERTIES( self );
// Get the current profile
mlt_profile profile = mlt_service_profile( MLT_CONSUMER_SERVICE( self ) );
// Load the new profile
mlt_profile new_profile = mlt_profile_init( mlt_properties_get( properties, name ) );
if ( new_profile )
{
// Copy the profile
if ( profile != NULL )
{
free( profile->description );
memcpy( profile, new_profile, sizeof( struct mlt_profile_s ) );
profile->description = strdup( new_profile->description );
}
else
{
profile = new_profile;
}
// Apply to properties
apply_profile_properties( self, profile, properties );
mlt_profile_close( new_profile );
}
}
else if ( !strcmp( name, "frame_rate_num" ) )
{
mlt_properties properties = MLT_CONSUMER_PROPERTIES( self );
mlt_profile profile = mlt_service_profile( MLT_CONSUMER_SERVICE( self ) );
if ( profile )
{
profile->frame_rate_num = mlt_properties_get_int( properties, "frame_rate_num" );
mlt_properties_set_double( properties, "fps", mlt_profile_fps( profile ) );
}
}
else if ( !strcmp( name, "frame_rate_den" ) )
{
mlt_properties properties = MLT_CONSUMER_PROPERTIES( self );
mlt_profile profile = mlt_service_profile( MLT_CONSUMER_SERVICE( self ) );
if ( profile )
{
profile->frame_rate_den = mlt_properties_get_int( properties, "frame_rate_den" );
mlt_properties_set_double( properties, "fps", mlt_profile_fps( profile ) );
}
}
else if ( !strcmp( name, "width" ) )
{
mlt_properties properties = MLT_CONSUMER_PROPERTIES( self );
mlt_profile profile = mlt_service_profile( MLT_CONSUMER_SERVICE( self ) );
if ( profile )
profile->width = mlt_properties_get_int( properties, "width" );
}
else if ( !strcmp( name, "height" ) )
{
mlt_properties properties = MLT_CONSUMER_PROPERTIES( self );
mlt_profile profile = mlt_service_profile( MLT_CONSUMER_SERVICE( self ) );
if ( profile )
profile->height = mlt_properties_get_int( properties, "height" );
}
else if ( !strcmp( name, "progressive" ) )
{
mlt_properties properties = MLT_CONSUMER_PROPERTIES( self );
mlt_profile profile = mlt_service_profile( MLT_CONSUMER_SERVICE( self ) );
if ( profile )
profile->progressive = mlt_properties_get_int( properties, "progressive" );
}
else if ( !strcmp( name, "sample_aspect_num" ) )
{
mlt_properties properties = MLT_CONSUMER_PROPERTIES( self );
mlt_profile profile = mlt_service_profile( MLT_CONSUMER_SERVICE( self ) );
if ( profile )
{
profile->sample_aspect_num = mlt_properties_get_int( properties, "sample_aspect_num" );
mlt_properties_set_double( properties, "aspect_ratio", mlt_profile_sar( profile ) );
}
}
else if ( !strcmp( name, "sample_aspect_den" ) )
{
mlt_properties properties = MLT_CONSUMER_PROPERTIES( self );
mlt_profile profile = mlt_service_profile( MLT_CONSUMER_SERVICE( self ) );
if ( profile )
{
profile->sample_aspect_den = mlt_properties_get_int( properties, "sample_aspect_den" );
mlt_properties_set_double( properties, "aspect_ratio", mlt_profile_sar( profile ) );
}
}
else if ( !strcmp( name, "display_aspect_num" ) )
{
mlt_properties properties = MLT_CONSUMER_PROPERTIES( self );
mlt_profile profile = mlt_service_profile( MLT_CONSUMER_SERVICE( self ) );
if ( profile )
{
profile->display_aspect_num = mlt_properties_get_int( properties, "display_aspect_num" );
mlt_properties_set_double( properties, "display_ratio", mlt_profile_dar( profile ) );
}
}
else if ( !strcmp( name, "display_aspect_den" ) )
{
mlt_properties properties = MLT_CONSUMER_PROPERTIES( self );
mlt_profile profile = mlt_service_profile( MLT_CONSUMER_SERVICE( self ) );
if ( profile )
{
profile->display_aspect_den = mlt_properties_get_int( properties, "display_aspect_den" );
mlt_properties_set_double( properties, "display_ratio", mlt_profile_dar( profile ) );
}
}
else if ( !strcmp( name, "colorspace" ) )
{
mlt_properties properties = MLT_CONSUMER_PROPERTIES( self );
mlt_profile profile = mlt_service_profile( MLT_CONSUMER_SERVICE( self ) );
if ( profile )
profile->colorspace = mlt_properties_get_int( properties, "colorspace" );
}
}
/** The transmitter for the consumer-frame-show event
*
* Invokes the listener.
*
* \private \memberof mlt_consumer_s
* \param listener a function pointer that will be invoked
* \param owner the events object that will be passed to \p listener
* \param self a service that will be passed to \p listener
* \param args an array of pointers - the first entry is passed as a frame to \p listener
*/
static void mlt_consumer_frame_show( mlt_listener listener, mlt_properties owner, mlt_service self, void **args )
{
if ( listener != NULL )
listener( owner, self, ( mlt_frame )args[ 0 ] );
}
/** The transmitter for the consumer-frame-render event
*
* Invokes the listener.
*
* \private \memberof mlt_consumer_s
* \param listener a function pointer that will be invoked
* \param owner the events object that will be passed to \p listener
* \param self a service that will be passed to \p listener
* \param args an array of pointers - the first entry is passed as a frame to \p listener
*/
static void mlt_consumer_frame_render( mlt_listener listener, mlt_properties owner, mlt_service self, void **args )
{
if ( listener != NULL )
listener( owner, self, ( mlt_frame )args[ 0 ] );
}
/** A listener on the consumer-frame-show event
*
* Saves the position of the frame shown.
*
* \private \memberof mlt_consumer_s
* \param owner the events object
* \param consumer the consumer on which this event occurred
* \param frame the frame that was shown
*/
static void on_consumer_frame_show( mlt_properties owner, mlt_consumer consumer, mlt_frame frame )
{
if ( frame )
( ( consumer_private*) consumer->local )->position = mlt_frame_get_position( frame );
}
/** Create a new consumer.
*
* \public \memberof mlt_consumer_s
* \param profile a profile (optional, but recommended)
* \return a new consumer
*/
mlt_consumer mlt_consumer_new( mlt_profile profile )
{
// Create the memory for the structure
mlt_consumer self = malloc( sizeof( struct mlt_consumer_s ) );
// Initialise it
if ( self != NULL && mlt_consumer_init( self, NULL, profile ) == 0 )
{
// Return it
return self;
}
else
{
free(self);
return NULL;
}
}
/** Get the parent service object.
*
* \public \memberof mlt_consumer_s
* \param self a consumer
* \return the parent service class
* \see MLT_CONSUMER_SERVICE
*/
mlt_service mlt_consumer_service( mlt_consumer self )
{
return self != NULL ? &self->parent : NULL;
}
/** Get the consumer properties.
*
* \public \memberof mlt_consumer_s
* \param self a consumer
* \return the consumer's properties list
* \see MLT_CONSUMER_PROPERTIES
*/
mlt_properties mlt_consumer_properties( mlt_consumer self )
{
return self != NULL ? MLT_SERVICE_PROPERTIES( &self->parent ) : NULL;
}
/** Connect the consumer to the producer.
*
* \public \memberof mlt_consumer_s
* \param self a consumer
* \param producer a producer
* \return > 0 warning, == 0 success, < 0 serious error,
* 1 = this service does not accept input,
* 2 = the producer is invalid,
* 3 = the producer is already registered with this consumer
*/
int mlt_consumer_connect( mlt_consumer self, mlt_service producer )
{
return mlt_service_connect_producer( &self->parent, producer, 0 );
}
/** Set the audio format to use in the render thread.
*
* \private \memberof mlt_consumer_s
* \param self a consumer
*/
static void set_audio_format( mlt_consumer self )
{
// Get the audio format to use for rendering threads.
consumer_private *priv = self->local;
mlt_properties properties = MLT_CONSUMER_PROPERTIES( self );
const char *format = mlt_properties_get( properties, "mlt_audio_format" );
if ( format )
{
if ( !strcmp( format, "none" ) )
priv->audio_format = mlt_audio_none;
else if ( !strcmp( format, "s32" ) )
priv->audio_format = mlt_audio_s32;
else if ( !strcmp( format, "s32le" ) )
priv->audio_format = mlt_audio_s32le;
else if ( !strcmp( format, "float" ) )
priv->audio_format = mlt_audio_float;
else if ( !strcmp( format, "f32le" ) )
priv->audio_format = mlt_audio_f32le;
else if ( !strcmp( format, "u8" ) )
priv->audio_format = mlt_audio_u8;
}
}
/** Set the image format to use in render threads.
*
* \private \memberof mlt_consumer_s
* \param self a consumer
*/
static void set_image_format( mlt_consumer self )
{
// Get the image format to use for rendering threads.
consumer_private *priv = self->local;
mlt_properties properties = MLT_CONSUMER_PROPERTIES( self );
const char* format = mlt_properties_get( properties, "mlt_image_format" );
if ( format )
{
priv->image_format = mlt_image_format_id( format );
if ( mlt_image_invalid == priv->image_format )
priv->image_format = mlt_image_yuv422;
// mlt_image_glsl is for internal use only.
// Remapping it glsl_texture prevents breaking existing apps
// using the legacy "glsl" name.
else if ( mlt_image_glsl == priv->image_format )
priv->image_format = mlt_image_glsl_texture;
}
}
/** Start the consumer.
*
* \public \memberof mlt_consumer_s
* \param self a consumer
* \return true if there was an error
*/
int mlt_consumer_start( mlt_consumer self )
{
int error = 0;
if ( !mlt_consumer_is_stopped( self ) )
return error;
consumer_private *priv = self->local;
// Stop listening to the property-changed event
mlt_event_block( priv->event_listener );
// Get the properies
mlt_properties properties = MLT_CONSUMER_PROPERTIES( self );
// Determine if there's a test card producer
char *test_card = mlt_properties_get( properties, "test_card" );
// Just to make sure nothing is hanging around...
pthread_mutex_lock( &priv->put_mutex );
priv->put = NULL;
priv->put_active = 1;
pthread_mutex_unlock( &priv->put_mutex );
// Deal with it now.
if ( test_card != NULL )
{
if ( mlt_properties_get_data( properties, "test_card_producer", NULL ) == NULL )
{
// Create a test card producer
mlt_profile profile = mlt_service_profile( MLT_CONSUMER_SERVICE( self ) );
mlt_producer producer = mlt_factory_producer( profile, NULL, test_card );
// Do we have a producer
if ( producer != NULL )
{
// Test card should loop I guess...
mlt_properties_set( MLT_PRODUCER_PROPERTIES( producer ), "eof", "loop" );
//mlt_producer_set_speed( producer, 0 );
//mlt_producer_set_in_and_out( producer, 0, 0 );
// Set the test card on the consumer
mlt_properties_set_data( properties, "test_card_producer", producer, 0, ( mlt_destructor )mlt_producer_close, NULL );
}
}
}
else
{
// Allow the hash table to speed things up
mlt_properties_set_data( properties, "test_card_producer", NULL, 0, NULL, NULL );
}
// The profile could have changed between a stop and a restart.
apply_profile_properties( self, mlt_service_profile( MLT_CONSUMER_SERVICE(self) ), properties );
// Set the frame duration in microseconds for the frame-dropping heuristic
int frame_rate_num = mlt_properties_get_int( properties, "frame_rate_num" );
int frame_rate_den = mlt_properties_get_int( properties, "frame_rate_den" );
int frame_duration = 0;
if ( frame_rate_num && frame_rate_den )
{
frame_duration = 1000000 / frame_rate_num * frame_rate_den;
}
mlt_properties_set_int( properties, "frame_duration", frame_duration );
mlt_properties_set_int( properties, "drop_count", 0 );
// Check and run an ante command
if ( mlt_properties_get( properties, "ante" ) )
if ( system( mlt_properties_get( properties, "ante" ) ) == -1 )
mlt_log( MLT_CONSUMER_SERVICE( self ), MLT_LOG_ERROR, "system(%s) failed!\n", mlt_properties_get( properties, "ante" ) );
// Set the real_time preference
priv->real_time = mlt_properties_get_int( properties, "real_time" );
// For worker threads implementation, buffer must be at least # threads
if ( abs( priv->real_time ) > 1 && mlt_properties_get_int( properties, "buffer" ) <= abs( priv->real_time ) )
mlt_properties_set_int( properties, "_buffer", abs( priv->real_time ) + 1 );
priv->preroll = 1;
#ifdef _WIN32
if ( priv->real_time == 1 || priv->real_time == -1 )
consumer_read_ahead_start( self );
#endif
// Start the service
if ( self->start != NULL )
error = self->start( self );
// Store the parameters for audio processing.
priv->aud_counter = 0;
priv->fps = mlt_properties_get_double( properties, "fps" );
priv->channels = mlt_properties_get_int( properties, "channels" );
priv->frequency = mlt_properties_get_int( properties, "frequency" );
return error;
}
/** An alternative method to feed frames into the consumer.
*
* Only valid if the consumer itself is not connected.
*
* \public \memberof mlt_consumer_s
* \param self a consumer
* \param frame a frame
* \return true (ignore self for now)
*/
int mlt_consumer_put_frame( mlt_consumer self, mlt_frame frame )
{
int error = 1;
// Get the service assoicated to the consumer
mlt_service service = MLT_CONSUMER_SERVICE( self );
if ( mlt_service_producer( service ) == NULL )
{
struct timeval now;
struct timespec tm;
consumer_private *priv = self->local;
mlt_properties_set_int( MLT_CONSUMER_PROPERTIES(self), "put_pending", 1 );
pthread_mutex_lock( &priv->put_mutex );
while ( priv->put_active && priv->put != NULL )
{
gettimeofday( &now, NULL );
tm.tv_sec = now.tv_sec + 1;
tm.tv_nsec = now.tv_usec * 1000;
pthread_cond_timedwait( &priv->put_cond, &priv->put_mutex, &tm );
}
mlt_properties_set_int( MLT_CONSUMER_PROPERTIES(self), "put_pending", 0 );
if ( priv->put_active && priv->put == NULL )
priv->put = frame;
else
mlt_frame_close( frame );
pthread_cond_broadcast( &priv->put_cond );
pthread_mutex_unlock( &priv->put_mutex );
}
else
{
mlt_frame_close( frame );
}
return error;
}
/** Protected method for consumer to get frames from connected service
*
* \public \memberof mlt_consumer_s
* \param self a consumer
* \return a frame
*/
mlt_frame mlt_consumer_get_frame( mlt_consumer self )
{
// Frame to return
mlt_frame frame = NULL;
// Get the service assoicated to the consumer
mlt_service service = MLT_CONSUMER_SERVICE( self );
// Get the consumer properties
mlt_properties properties = MLT_CONSUMER_PROPERTIES( self );
// Get the frame
if ( mlt_service_producer( service ) == NULL && mlt_properties_get_int( properties, "put_mode" ) )
{
struct timeval now;
struct timespec tm;
consumer_private *priv = self->local;
pthread_mutex_lock( &priv->put_mutex );
while ( priv->put_active && priv->put == NULL )
{
gettimeofday( &now, NULL );
tm.tv_sec = now.tv_sec + 1;
tm.tv_nsec = now.tv_usec * 1000;
pthread_cond_timedwait( &priv->put_cond, &priv->put_mutex, &tm );
}
frame = priv->put;
priv->put = NULL;
pthread_cond_broadcast( &priv->put_cond );
pthread_mutex_unlock( &priv->put_mutex );
if ( frame != NULL )
mlt_service_apply_filters( service, frame, 0 );
}
else if ( mlt_service_producer( service ) != NULL )
{
mlt_service_get_frame( service, &frame, 0 );
}
else
{
frame = mlt_frame_init( service );
}
if ( frame != NULL )
{
// Get the frame properties
mlt_properties frame_properties = MLT_FRAME_PROPERTIES( frame );
// Get the test card producer
mlt_producer test_card = mlt_properties_get_data( properties, "test_card_producer", NULL );
// Attach the test frame producer to it.
if ( test_card != NULL )
mlt_properties_set_data( frame_properties, "test_card_producer", test_card, 0, NULL, NULL );
// Pass along the interpolation and deinterlace options
// TODO: get rid of consumer_deinterlace and use profile.progressive
mlt_properties_set( frame_properties, "rescale.interp", mlt_properties_get( properties, "rescale" ) );
mlt_properties_set_int( frame_properties, "consumer_deinterlace", mlt_properties_get_int( properties, "progressive" ) | mlt_properties_get_int( properties, "deinterlace" ) );
mlt_properties_set( frame_properties, "deinterlace_method", mlt_properties_get( properties, "deinterlace_method" ) );
mlt_properties_set_int( frame_properties, "consumer_tff", mlt_properties_get_int( properties, "top_field_first" ) );
mlt_properties_set( frame_properties, "consumer_color_trc", mlt_properties_get( properties, "color_trc" ) );
mlt_properties_set( frame_properties, "consumer_channel_layout", mlt_properties_get( properties, "channel_layout" ) );
}
// Return the frame
return frame;
}
/** Compute the time difference between now and a time value.
*
* \private \memberof mlt_consumer_s
* \param time1 a time value to be compared against now
* \return the difference in microseconds
*/
static inline long time_difference( struct timeval *time1 )
{
struct timeval time2;
time2.tv_sec = time1->tv_sec;
time2.tv_usec = time1->tv_usec;
gettimeofday( time1, NULL );
return time1->tv_sec * 1000000 + time1->tv_usec - time2.tv_sec * 1000000 - time2.tv_usec;
}
/** The thread procedure for asynchronously pulling frames through the service
* network connected to a consumer.
*
* \private \memberof mlt_consumer_s
* \param arg a consumer
*/
static void *consumer_read_ahead_thread( void *arg )
{
// The argument is the consumer
mlt_consumer self = arg;
consumer_private *priv = self->local;
// Get the properties of the consumer
mlt_properties properties = MLT_CONSUMER_PROPERTIES( self );
// Get the width and height
int width = mlt_properties_get_int( properties, "width" );
int height = mlt_properties_get_int( properties, "height" );
// See if video is turned off
int video_off = mlt_properties_get_int( properties, "video_off" );
int preview_off = mlt_properties_get_int( properties, "preview_off" );
int preview_format = mlt_properties_get_int( properties, "preview_format" );
// Audio processing variables
int samples = 0;
void *audio = NULL;
// See if audio is turned off
int audio_off = mlt_properties_get_int( properties, "audio_off" );
// Get the maximum size of the buffer
int buffer = mlt_properties_get_int( properties, "buffer" ) + 1;
// General frame variable
mlt_frame frame = NULL;
uint8_t *image = NULL;
// Time structures
struct timeval ante;
// Average time for get_frame and get_image
int count = 0;
int skipped = 0;
int64_t time_process = 0;
int skip_next = 0;
mlt_position pos = 0;
mlt_position start_pos = 0;
mlt_position last_pos = 0;
int frame_duration = mlt_properties_get_int( properties, "frame_duration" );
int drop_max = mlt_properties_get_int( properties, "drop_max" );
if ( preview_off && preview_format != 0 )
priv->image_format = preview_format;
set_audio_format( self );
set_image_format( self );
mlt_events_fire( properties, "consumer-thread-started", NULL );
// Get the first frame
frame = mlt_consumer_get_frame( self );
if ( frame )
{
// Get the audio of the first frame
if ( !audio_off )
{
samples = mlt_sample_calculator( priv->fps, priv->frequency, priv->aud_counter++ );
mlt_frame_get_audio( frame, &audio, &priv->audio_format, &priv->frequency, &priv->channels, &samples );
}
// Get the image of the first frame
if ( !video_off )
{
mlt_events_fire( MLT_CONSUMER_PROPERTIES( self ), "consumer-frame-render", frame, NULL );
mlt_frame_get_image( frame, &image, &priv->image_format, &width, &height, 0 );
}
// Mark as rendered
mlt_properties_set_int( MLT_FRAME_PROPERTIES( frame ), "rendered", 1 );
last_pos = start_pos = pos = mlt_frame_get_position( frame );
}
// Get the starting time (can ignore the times above)
gettimeofday( &ante, NULL );
// Continue to read ahead
while ( priv->ahead )
{
// Put the current frame into the queue
pthread_mutex_lock( &priv->queue_mutex );
while( priv->ahead && mlt_deque_count( priv->queue ) >= buffer )
pthread_cond_wait( &priv->queue_cond, &priv->queue_mutex );
if ( priv->is_purge )
{
mlt_frame_close( frame );
priv->is_purge = 0;
}
else
{
mlt_deque_push_back( priv->queue, frame );
}
pthread_cond_broadcast( &priv->queue_cond );
pthread_mutex_unlock( &priv->queue_mutex );
mlt_log_timings_begin();
// Get the next frame
frame = mlt_consumer_get_frame( self );
mlt_log_timings_end( NULL, "mlt_consumer_get_frame" );
// If there's no frame, we're probably stopped...
if ( frame == NULL )
continue;
pos = mlt_frame_get_position( frame );
// WebVfx uses this to setup a consumer-stopping event handler.
mlt_properties_set_data( MLT_FRAME_PROPERTIES( frame ), "consumer", self, 0, NULL, NULL );
// Increment the counter used for averaging processing cost
count ++;
// Always process audio
if ( !audio_off )
{
samples = mlt_sample_calculator( priv->fps, priv->frequency, priv->aud_counter++ );
mlt_frame_get_audio( frame, &audio, &priv->audio_format, &priv->frequency, &priv->channels, &samples );
}
// All non-normal playback frames should be shown
if ( mlt_properties_get_int( MLT_FRAME_PROPERTIES( frame ), "_speed" ) != 1 )
{
#ifdef DEINTERLACE_ON_NOT_NORMAL_SPEED
mlt_properties_set_int( MLT_FRAME_PROPERTIES( frame ), "consumer_deinterlace", 1 );
#endif
// Indicate seeking or trick-play
start_pos = pos;
}
// If skip flag not set or frame-dropping disabled
if ( !skip_next || priv->real_time == -1 )
{
if ( !video_off )
{
// Reset width/height - could have been changed by previous mlt_frame_get_image
width = mlt_properties_get_int( properties, "width" );
height = mlt_properties_get_int( properties, "height" );
// Get the image
mlt_events_fire( MLT_CONSUMER_PROPERTIES( self ), "consumer-frame-render", frame, NULL );
mlt_log_timings_begin();
mlt_frame_get_image( frame, &image, &priv->image_format, &width, &height, 0 );
mlt_log_timings_end( NULL, "mlt_frame_get_image" );
}
// Indicate the rendered image is available.
mlt_properties_set_int( MLT_FRAME_PROPERTIES( frame ), "rendered", 1 );
// Reset consecutively-skipped counter
skipped = 0;
}
else // Skip image processing
{
// Increment the number of consecutively-skipped frames
skipped++;
// If too many (1 sec) consecutively-skipped frames
if ( skipped > drop_max )
{
// Reset cost tracker
time_process = 0;
count = 1;
mlt_log_verbose( self, "too many frames dropped - forcing next frame\n" );
}
}
// Get the time to process this frame
int64_t time_current = time_difference( &ante );
// If the current time is not suddenly some large amount
if ( time_current < time_process / count * 20 || !time_process || count < 5 )
{
// Accumulate the cost for processing this frame
time_process += time_current;
}
else
{
mlt_log_debug( self, "current %"PRId64" threshold %"PRId64" count %d\n",
time_current, (int64_t) (time_process / count * 20), count );
// Ignore the cost of this frame's time
count--;
}
// Determine if we started, resumed, or seeked
if ( pos != last_pos + 1 )
start_pos = pos;
last_pos = pos;
// Do not skip the first 20% of buffer at start, resume, or seek
if ( pos - start_pos <= buffer / 5 + 1 )
{
// Reset cost tracker
time_process = 0;
count = 1;
}
// Reset skip flag
skip_next = 0;
// Only consider skipping if the buffer level is low (or really small)
if ( mlt_deque_count( priv->queue ) <= buffer / 5 + 1 && count > 1 )
{
// Skip next frame if average cost exceeds frame duration.
if ( time_process / count > frame_duration )
skip_next = 1;
if ( skip_next )
mlt_log_debug( self, "avg usec %"PRId64" (%"PRId64"/%d) duration %d\n",
time_process/count, time_process, count, frame_duration);
}
}
// Remove the last frame
mlt_frame_close( frame );
// Wipe the queue
pthread_mutex_lock( &priv->queue_mutex );
while ( mlt_deque_count( priv->queue ) )
mlt_frame_close( mlt_deque_pop_back( priv->queue ) );
// Close the queue
mlt_deque_close( priv->queue );
priv->queue = NULL;
pthread_mutex_unlock( &priv->queue_mutex );
mlt_events_fire( MLT_CONSUMER_PROPERTIES(self), "consumer-thread-stopped", NULL );
return NULL;
}
/** Locate the first unprocessed frame in the queue.
*
* When playing with realtime behavior, we do not use the true head, but
* rather an adjusted process_head. The process_head is adjusted based on
* the rate of frame-dropping or recovery from frame-dropping. The idea is
* that as the level of frame-dropping increases to move the process_head
* closer to the tail because the frames are not completing processing prior
* to their playout! Then, as frames are not dropped the process_head moves
* back closer to the head of the queue so that worker threads can work
* ahead of the playout point (queue head).
*
* \private \memberof mlt_consumer_s
* \param self a consumer
* \return an index into the queue
*/