forked from mltframework/mlt
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathChangeLog
12829 lines (9860 loc) · 588 KB
/
ChangeLog
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
2019-05-07 Dan Dennedy <[email protected]>
* Doxyfile, configure, docs/melt.1, src/framework/mlt_version.h: Set version
to 6.16.0
2019-03-25 Brian Matherly <[email protected]>
* src/framework/mlt.vers, src/framework/mlt_producer.c,
src/framework/mlt_producer.h, src/mlt++/MltProducer.cpp,
src/mlt++/MltProducer.h, src/mlt++/mlt++.vers,
src/modules/plus/filter_dynamictext.c: Add get/set creation_date to producer.
"creation_date" is a reserved producer property that can hold the creation
time of the producer. The creation_time property is always in UTC.
2019-04-07 Dan Dennedy <[email protected]>
* configure, src/framework/mlt_version.h: Set interim version to 6.15.0
2019-03-30 Dan Dennedy <[email protected]>
* Doxyfile, configure, docs/melt.1, src/framework/mlt_version.h: Set version
to 6.14.0
2019-03-16 Vincent Pinon <[email protected]>
* src/framework/mlt_repository.c, src/modules/qt/common.cpp: Windows: fix
melt.exe with nodeploy
2019-03-18 Dan Dennedy <[email protected]>
* src/mlt++/MltTransition.cpp, src/mlt++/MltTransition.h,
src/mlt++/mlt++.vers: Add Mlt::Transition::connect(Service&). This is needed
for manipulating transitions in a field, which connect to one another, and
transitions do not inherit from Producer.
2019-03-09 Brian Matherly <[email protected]>
* src/tests/test_playlist/test_playlist.cpp,
src/tests/test_playlist/test_playlist.pro, src/tests/tests.pro: Add unit
tests for playlist
2019-02-24 Brian Matherly <[email protected]>
* src/framework/mlt.vers, src/framework/mlt_playlist.c,
src/framework/mlt_playlist.h, src/mlt++/MltPlaylist.cpp,
src/mlt++/MltPlaylist.h, src/mlt++/mlt++.vers: Add reorder function to mlt
playlist.
2019-03-07 Dan Dennedy <[email protected]>
* src/mlt++/MltConsumer.cpp, src/mlt++/MltFilter.cpp,
src/mlt++/MltProducer.cpp, src/mlt++/MltTractor.cpp,
src/mlt++/MltTransition.cpp: Fix compile errors in mlt++
2019-02-28 alcinos <[email protected]>
* src/mlt++/MltService.cpp, src/mlt++/MltService.h, src/mlt++/MltTractor.cpp,
src/mlt++/MltTractor.h, src/mlt++/mlt++.vers: add convenience constructor for
Mlt::Tractor
* src/mlt++/MltFilter.cpp, src/mlt++/MltFilter.h, src/mlt++/mlt++.vers: add
convenience constructor for Mlt::Filter
* src/mlt++/MltTransition.cpp, src/mlt++/MltTransition.h,
src/mlt++/mlt++.vers: add convenience constructor for Mlt::Transition
* src/mlt++/MltConsumer.cpp, src/mlt++/MltConsumer.h, src/mlt++/mlt++.vers:
add convenience constructor for Mlt::Consumer
2019-02-25 alcinos <[email protected]>
* src/mlt++/MltProducer.cpp, src/mlt++/MltProducer.h, src/mlt++/mlt++.vers:
add convenience constructor for Mlt::Producer
2019-03-06 Vincent Pinon <[email protected]>
* src/modules/lumas/Makefile, src/modules/oldfilm/Makefile: Support spaces in
prefix
2019-02-19 Vincent Pinon <[email protected]>
* configure, src/framework/Makefile, src/framework/mlt_factory.c,
src/melt/Makefile, src/mlt++/Makefile: Windows: option to keep exe and dll in
bin/ directory Then app can run after 'make install' with no extra
deployment
2019-02-19 Dan Dennedy <[email protected]>
* src/framework/Makefile, src/framework/mlt_types.h, src/win32/strptime.c:
Fix compile error on strptime() not in MinGW.
2019-02-11 Brian Matherly <[email protected]>
* src/modules/plus/filter_dynamictext.c,
src/modules/plus/filter_dynamictext.yml: Add createdate keyword to
dynamictext
2019-02-12 Dan Dennedy <[email protected]>
* profiles/vertical_hd_30, profiles/vertical_hd_60: Add vertical HD profiles.
2019-02-07 Dan Dennedy <[email protected]>
* src/modules/avformat/consumer_avformat.c,
src/modules/avformat/consumer_avformat.yml,
src/modules/avformat/filter_avcolour_space.c,
src/modules/avformat/producer_avformat.c,
src/modules/avformat/producer_avformat.yml: Remove old code based on minimum
versions.
* src/swig/mlt.i, src/swig/python/build: Fix build with Python 3.
2019-02-07 cclauss <[email protected]>
* src/swig/python/codecs.py, src/swig/python/play.py,
src/swig/python/test_animation.py: Use print() function in both Python 2 and
Python 3 Legacy __print__ statements are syntax errors in Python 3 but
__print()__ function works as expected in both Python 2 and Python 3.
2019-02-02 Dan Dennedy <[email protected]>
* src/modules/kdenlive/filter_boxblur.c,
src/modules/kdenlive/filter_boxblur.yml: Change boxblur hori/vert minimum to
0. This is a little superficial, but when start/blur=1 and using only hori/
vert to make directional blurs, it allows more expression especially with
animation. It is easier to go from no-blur to blur, possibly in only one
direction with minimal blur in the other direction.
2019-02-02 Brian Matherly <[email protected]>
* src/modules/plus/filter_timer.c, src/modules/plus/filter_timer.yml: Add
offset parameter to timer filter.
2019-02-01 Dan Dennedy <[email protected]>
* src/modules/qt/producer_qimage.c, src/modules/qt/qimage_wrapper.cpp: Fix
qimage build on < Qt 5.5
2019-01-30 Dan Dennedy <[email protected]>
* src/modules/qt/producer_qimage.c, src/modules/qt/qimage_wrapper.cpp,
src/modules/qt/qimage_wrapper.h: Fix loading image sequence on Windows.
2018-10-22 Vincent PINON <[email protected]>
* src/framework/mlt_property.c, src/framework/mlt_property.h: Fix MinGW
compilation warnings
2019-01-26 Dan Dennedy <[email protected]>
* src/framework/mlt_frame.c, src/modules/plus/filter_dynamictext.c,
src/modules/plus/filter_timer.c: Fix text animation broken with in > 0.
2019-01-24 vvck <[email protected]>
* src/framework/mlt_slices.c, src/framework/mlt_types.h,
src/modules/plusgpl/consumer_cbrts.c: mingw32 Compiler compatibility for
mingw32
2019-01-12 Dan Dennedy <[email protected]>
* docs/melt.1, src/melt/melt.c: Update melt copyrights for 2019.
2019-01-03 Dan Dennedy <[email protected]>
* src/modules/plus/filter_dynamictext.c, src/modules/plus/filter_timer.c,
src/modules/qt/filter_qtext.cpp: Fix qtext glitches with multiple threads.
Fixes https://github.com/mltframework/shotcut/issues/686
2019-01-04 Dan Dennedy <[email protected]>
* src/framework/mlt.vers, src/framework/mlt_frame.c,
src/framework/mlt_frame.h: Add mlt_frame_get_unique_properties()
2019-01-02 Dan Dennedy <[email protected]>
* src/modules/decklink/consumer_decklink.cpp,
src/modules/decklink/consumer_decklink.yml,
src/modules/decklink/producer_decklink.cpp,
src/modules/decklink/producer_decklink.yml: Update copyrights in decklink
module.
2018-12-17 Dan Dennedy <[email protected]>
* src/modules/vmfx/filter_shape.c, src/modules/vmfx/filter_shape.yml: Add
use_mix property to the shape filter.
* src/modules/vmfx/filter_chroma.c, src/modules/vmfx/filter_chroma_hold.c,
src/modules/vmfx/filter_mono.c, src/modules/vmfx/filter_shape.c: Convert
shape filter to mlt_animation API.
2018-12-16 Dan Dennedy <[email protected]>
* src/modules/qt/producer_qimage.c, src/modules/qt/qimage_wrapper.cpp: Fix
crash when alpha_size is zero.
2018-12-14 Dan Dennedy <[email protected]>
* src/modules/core/transition_composite.c,
src/modules/core/transition_luma.c, src/modules/vmfx/filter_shape.c: Use
mlt_profile_lumas_dir() in services.
* src/framework/mlt.vers, src/framework/mlt_profile.c,
src/framework/mlt_profile.h: Add mlt_profile_lumas_dir().
2018-12-13 Dan Dennedy <[email protected]>
* src/modules/core/filter_mask_apply.c,
src/modules/core/filter_mask_apply.yml, src/modules/core/filter_mask_start.c,
src/modules/core/filter_mask_start.yml, src/modules/core/producer_colour.yml:
Make the mask filters' nested service mutable.
2018-12-12 Dan Dennedy <[email protected]>
* src/modules/core/Makefile, src/modules/core/factory.c,
src/modules/core/filter_mask_apply.c, src/modules/core/filter_mask_apply.yml,
src/modules/core/filter_mask_start.c, src/modules/core/filter_mask_start.yml:
Add mask_start and mask_apply filters. These do not yet support multiple
filter masks.
2018-12-08 Dan Dennedy <[email protected]>
* src/modules/plus/filter_dynamictext.c, src/modules/plus/filter_timer.c: Fix
animation for dynamictext and timer filters. Regression with conversion to
use qtext.
2018-11-30 Dan Dennedy <[email protected]>
* src/modules/avformat/common.c, src/modules/avformat/common.h,
src/modules/avformat/consumer_avformat.c,
src/modules/avformat/filter_avcolour_space.c,
src/modules/avformat/filter_avfilter.c,
src/modules/avformat/filter_swresample.c,
src/modules/avformat/producer_avformat.c: Refactor to prefix global symbols
with "mlt_".
* src/modules/avformat/common.c, src/modules/avformat/common.h,
src/modules/avformat/consumer_avformat.c,
src/modules/avformat/filter_avcolour_space.c,
src/modules/avformat/filter_swscale.c,
src/modules/avformat/producer_avformat.c: Fix color accuracy of RGB->YUV
conversion. Fixes https://github.com/mltframework/shotcut/issues/674
2018-11-02 Brian Matherly <[email protected]>
* src/modules/plus/filter_dynamictext.c, src/modules/plus/filter_timer.c: Use
qtext for dynamictext and timer filters. The qtext filter has better
performance than the text producer/affine transition combination. Both
filters will fall back to the text_filter if qtext is not available.
* src/modules/qt/Makefile, src/modules/qt/factory.c,
src/modules/qt/filter_qtext.cpp, src/modules/qt/filter_qtext.yml: Add
filter_qtext. This filter provides the same capabilities as filter_text,
however, it draws directlly on the image rather than applying an encapsulated
transition.
* src/modules/plus/filter_text.c, src/modules/plus/filter_timer.c: Improve
parallel processing for filter_timer. Copy the argument property and pass it
to get_image() so that the mutex in get_image can be moved to allow parallel
frame processing.
2018-11-29 Dan Dennedy <[email protected]>
* src/modules/core/producer_colour.c, src/modules/core/producer_colour.yml:
Add mlt_image_format property to color producer.
2018-11-28 Dan Dennedy <[email protected]>
* configure, src/framework/mlt_version.h: Set interim version to 6.13.0
2018-11-26 Dan Dennedy <[email protected]>
* Doxyfile, configure, docs/melt.1, src/framework/mlt_version.h: Set version
to 6.12.0
* Makefile, src/modules/jackrack/consumer_jack.c,
src/modules/jackrack/filter_jackrack.c, src/modules/jackrack/plugin.c,
src/modules/jackrack/plugin_desc.c,
src/modules/motion_est/filter_autotrack_rectangle.c,
src/modules/motion_est/filter_motion_est.c: Spelling fixes from make
codespell.
2018-11-17 Brian Matherly <[email protected]>
* src/modules/plus/filter_timer.c, src/modules/plus/filter_timer.yml: Add
MM:SS.SS to timer filter.
2018-11-05 Brian Matherly <[email protected]>
* src/modules/qt/filter_audiowaveform.cpp,
src/modules/qt/filter_audiowaveform.yml: Add window parameter to waveform
filter. Historical audio samples are stored in a sliding window buffer and
copied on to each frame to be draw in get_image().
2018-11-09 Dan Dennedy <[email protected]>
* src/modules/avformat/common.c, src/modules/avformat/common.h,
src/modules/avformat/filter_avcolour_space.c,
src/modules/avformat/producer_avformat.c: Refactor set_luma_transfer()
2018-11-04 Dan Dennedy <[email protected]>
* profiles/square_1080p_30, profiles/square_1080p_60: Add square video
profiles.
2018-10-29 Dan Dennedy <[email protected]>
* presets/consumer/avformat/alpha/Ut Video,
presets/consumer/avformat/lossless/Ut Video: Add Ut Video encoding presets.
2018-10-24 Dan Dennedy <[email protected]>
* src/framework/mlt_consumer.c, src/modules/avformat/producer_avformat.c: Fix
#370 A/V sync on some files. The call to seek_audio() when the decoder gets
ahead was not avtually doing anything.
2018-10-16 Dan Dennedy <[email protected]>
* src/framework/mlt_factory.c, src/modules/frei0r/factory.c,
src/modules/jackrack/plugin_mgr.c,
src/modules/opengl/filter_glsl_manager.cpp: Convert macOS RELOCATABLE build
to use standard app bundle layout.
2018-10-14 Brian Matherly <[email protected]>
* src/modules/plus/Makefile, src/modules/plus/factory.c,
src/modules/plus/filter_spot_remover.c,
src/modules/plus/filter_spot_remover.yml: Add new Spot Remover filter.
2018-10-11 luz.paz <[email protected]>
* ChangeLog, Doxyfile, NEWS, demo/README, docs/framework.txt,
docs/install.txt, docs/melt.txt, docs/mlt++.txt, docs/mlt-xml.txt,
src/framework/mlt_animation.c, src/framework/mlt_cache.c,
src/framework/mlt_consumer.c, src/framework/mlt_field.c,
src/framework/mlt_geometry.c, src/framework/mlt_playlist.c,
src/framework/mlt_slices.c, src/framework/mlt_tractor.c,
src/framework/mlt_transition.c, src/melt/melt.c,
src/modules/avformat/consumer_avformat.c,
src/modules/avformat/filter_avfilter.c,
src/modules/avformat/producer_avformat.c,
src/modules/core/filter_data_feed.c, src/modules/core/filter_data_show.c,
src/modules/core/filter_mono.c, src/modules/core/filter_obscure.c,
src/modules/core/filter_panner.c, src/modules/core/filter_rescale.c,
src/modules/core/producer_colour.c, src/modules/core/producer_noise.c,
src/modules/core/transition_composite.c, src/modules/core/transition_luma.c,
src/modules/core/transition_mix.c,
src/modules/decklink/producer_decklink.yml,
src/modules/kdenlive/producer_framebuffer.c, src/modules/kino/avi.cc,
src/modules/linsys/consumer_SDIstream.c, src/modules/linsys/sdi_generator.c,
src/modules/lumas/configure, src/modules/motion_est/filter_motion_est.c,
src/modules/motion_est/producer_slowmotion.c,
src/modules/normalize/filter_volume.c,
src/modules/opengl/filter_movit_opacity.yml,
src/modules/plus/filter_dynamictext.c,
src/modules/plus/filter_dynamictext.yml, src/modules/plus/filter_timer.yml,
src/modules/plus/interp.h, src/modules/plusgpl/cJSON.h,
src/modules/plusgpl/consumer_cbrts.c, src/modules/plusgpl/filter_burn.c,
src/modules/plusgpl/filter_rotoscoping.c, src/modules/plusgpl/image.c,
src/modules/rtaudio/RtAudio.cpp, src/modules/rtaudio/RtAudio.h,
src/modules/rtaudio/consumer_rtaudio.cpp, src/modules/sdl/consumer_sdl.c,
src/modules/sdl/consumer_sdl_audio.c, src/modules/sdl/consumer_sdl_preview.c,
src/modules/sdl2/consumer_sdl2.c, src/modules/sdl2/consumer_sdl2_audio.c,
src/modules/videostab/filter_videostab2.c, src/modules/videostab/stabilize.c,
src/modules/videostab/transform.c, src/modules/videostab/transform_image.c,
src/modules/videostab/transform_image.h,
src/modules/vorbis/producer_vorbis.c, src/modules/xml/consumer_xml.yml,
src/modules/xml/producer_xml.c: Doxygen and misc. typos fixes Found via
`codespell -q 3 -L
shotcut,sav,boundry,percentil,readded,uint,ith,sinc,amin,childs`
2018-09-17 Dan Dennedy <[email protected]>
* src/modules/sdl2/consumer_sdl2.c, src/modules/sdl2/consumer_sdl2_audio.c:
Fix audio distortion regression in e86a515 on Windows.
2018-09-14 Dan Dennedy <[email protected]>
* src/modules/qt/producer_qimage.c, src/modules/qt/qimage_wrapper.cpp,
src/modules/qt/qimage_wrapper.h: Fix crash on qimage with alpha channel.
This crash occured when the mlt_frame_get_image() request changes both size
and format.
2018-09-10 Dan Dennedy <[email protected]>
* src/modules/sdl2/consumer_sdl2.c, src/modules/sdl2/consumer_sdl2_audio.c:
Restart SDL audio in case of timeout. A timeout may occur due to a device or
device configuration change, typically initiated by the user. This change
tries to detect it and restart SDL audio. Note that on Windows while testing,
any attempt to close the SDL audio device or quit the audio subsystem results
in deadlock.
https://forum.shotcut.org/t/changing-the-bit-depth-and-sample-rate-in-
windows-renders-the-player-unresponsive-in-v18-06-02-and-later-
v18-03-06-and-earlier-dont-have-this-problem/7185
* src/framework/mlt_field.c, src/framework/mlt_tractor.c: Prevent crash on
invalid transition track index values.
2018-08-29 Dan Dennedy <[email protected]>
* src/framework/mlt_version.h, src/swig/mlt.i: Fix warnings seen compiling
ruby binding.
* .../avformat/{ => alpha}/Quicktime Animation,
presets/consumer/avformat/alpha/vp8, presets/consumer/avformat/alpha/vp9: Add
avformat presets for VP8 and VP9 with alpha channel.
2018-08-30 Kyle <[email protected]>
* src/swig/Makefile, src/swig/mlt.i, src/swig/nodejs/apply-filter.js,
src/swig/nodejs/binding.gyp, src/swig/nodejs/build,
src/swig/nodejs/list-members.js, src/swig/nodejs/play.js: Add swig support
for nodejs
2018-08-27 Dan Dennedy <[email protected]>
* src/framework/mlt_animation.c, src/tests/test_animation/test_animation.cpp,
src/tests/test_properties/test_properties.cpp: Fix
TestProperties::StringAnimation() test case. Also, when serializing, add
quotes around string values that contain special characters ';' and '='
because animation parsing requires them.
2018-07-22 Brian Matherly <[email protected]>
* src/modules/plus/Makefile, src/modules/plus/factory.c,
src/modules/plus/filter_timer.c, src/modules/plus/filter_timer.yml: Add Timer
filter.
2018-07-09 Brian Matherly <[email protected]>
* src/modules/plus/Makefile, src/modules/plus/factory.c,
src/modules/plus/filter_text.c, src/modules/plus/filter_text.yml: Add generic
text filter. The text filter can be encapsulated by specialized text filters
like dynamictext to add additional functionality.
2018-07-22 Dan Dennedy <[email protected]>
* src/modules/plus/filter_dynamictext.c,
src/modules/plus/transition_affine.c, src/modules/plus/transition_affine.yml:
Fix dynamic text aliased since switching to affine transition. See
https://forum.shotcut.org/t/can-i-use-size-and-position-filter-
without-blurry-effect/5526/21?u=shotcut
2018-07-11 Dan Dennedy <[email protected]>
* configure, src/framework/mlt_version.h: Set interim version to 6.11.0
2018-07-02 Dan Dennedy <[email protected]>
* Doxyfile, configure, docs/melt.1, src/framework/mlt_version.h: Set version
to 6.10.0
2018-06-27 Dan Dennedy <[email protected]>
* src/modules/oldfilm/filter_vignette.c,
src/modules/oldfilm/filter_vignette.yml: Convert oldfilm/vignette filter to
mlt_animation.
2018-06-14 Dan Dennedy <[email protected]>
* presets/consumer/avformat/AAC, presets/consumer/avformat/Flash,
presets/consumer/avformat/MP3, presets/consumer/avformat/MPEG-4,
presets/consumer/avformat/MPEG-4-ASP, presets/consumer/avformat/Sony-PSP,
presets/consumer/avformat/Vorbis, presets/consumer/avformat/WAV,
presets/consumer/avformat/WMA, presets/consumer/avformat/XDCAM-HD422,
presets/consumer/avformat/atsc_1080i_50/DNxHD,
presets/consumer/avformat/atsc_1080i_5994/DNxHD,
presets/consumer/avformat/atsc_1080p_2398/DNxHD,
presets/consumer/avformat/atsc_1080p_24/DNxHD,
presets/consumer/avformat/atsc_1080p_25/DNxHD,
presets/consumer/avformat/atsc_1080p_2997/DNxHD,
presets/consumer/avformat/atsc_1080p_30/DNxHD,
presets/consumer/avformat/atsc_1080p_50/DNxHD,
presets/consumer/avformat/atsc_1080p_5994/DNxHD,
presets/consumer/avformat/atsc_1080p_60/DNxHD,
presets/consumer/avformat/atsc_720p_2398/DNxHD,
presets/consumer/avformat/atsc_720p_50/DNxHD,
presets/consumer/avformat/atsc_720p_5994/DNxHD,
presets/consumer/avformat/atsc_720p_60/DNxHD,
presets/consumer/avformat/dv_ntsc/D10, presets/consumer/avformat/dv_ntsc/DV,
presets/consumer/avformat/dv_ntsc/DVCPRO50,
presets/consumer/avformat/dv_ntsc/DVD,
presets/consumer/avformat/dv_ntsc_wide/D10,
presets/consumer/avformat/dv_ntsc_wide/DV,
presets/consumer/avformat/dv_ntsc_wide/DVCPRO50,
presets/consumer/avformat/dv_ntsc_wide/DVD,
presets/consumer/avformat/dv_pal/D10, presets/consumer/avformat/dv_pal/DV,
presets/consumer/avformat/dv_pal/DVCPRO50,
presets/consumer/avformat/dv_pal/DVD,
presets/consumer/avformat/dv_pal_wide/D10,
presets/consumer/avformat/dv_pal_wide/DV,
presets/consumer/avformat/dv_pal_wide/DVCPRO50,
presets/consumer/avformat/dv_pal_wide/DVD,
presets/consumer/avformat/hdv_1080_25p/HDV,
presets/consumer/avformat/hdv_1080_30p/HDV,
presets/consumer/avformat/hdv_1080_50i/HDV,
presets/consumer/avformat/hdv_1080_60i/HDV,
presets/consumer/avformat/hdv_720_25p/HDV,
presets/consumer/avformat/hdv_720_30p/HDV,
presets/consumer/avformat/hdv_720_50p/HDV,
presets/consumer/avformat/hdv_720_60p/HDV: Categorize many of the encoding
presets.
* presets/consumer/avformat/intermediate/ProRes,
presets/consumer/avformat/intermediate/ProRes-Kostya: Hide ProRes in Shotcut
and show ProRes-Kostya as ProRes.
2018-06-12 Dan Dennedy <[email protected]>
* src/modules/avformat/consumer_avformat.c,
src/modules/avformat/producer_avformat.c: Fix AV_VERSION_INT not found in
libav master.
2018-06-11 Dan Dennedy <[email protected]>
* src/modules/plus/transition_affine.c,
src/modules/plus/transition_affine.yml: Add mlt_animation to affine fix_,
scale_, and ox/oy props.
* src/framework/mlt.vers, src/framework/mlt_animation.c,
src/framework/mlt_animation.h, src/framework/mlt_properties.c,
src/framework/mlt_properties.h, src/framework/mlt_property.c,
src/framework/mlt_property.h, src/mlt++/MltAnimation.cpp,
src/mlt++/MltAnimation.h, src/mlt++/MltProperties.cpp,
src/mlt++/MltProperties.h, src/mlt++/mlt++.vers, src/tests/common.pri,
src/tests/test_animation/test_animation.cpp,
src/tests/test_properties/test_properties.cpp: Add functions to serialize
animation with a time format. This also includes functions to clear a
property (set it to zero and null values), which is important for
reconstructing an animation by API. mlt_animation_serialize_cut_tf()
mlt_animation_serialize_tf() mlt_property_clear()
mlt_property_get_string_tf() mlt_property_get_string_l_tf()
mlt_properties_clear() mlt_properties_get_value_tf()
Mlt::Properties::get(int, mlt_time_format) Mlt::Properties::clear()
Mlt::Animation::serialize_cut(mlt_time_format, int, int)
2018-06-05 Dan Dennedy <[email protected]>
* src/modules/plus/interp.h, src/modules/plus/transition_affine.yml: Fix
affine output alpha incorrect for over mode.
2018-05-30 Dan Dennedy <[email protected]>
* src/framework/mlt_properties.c,
src/tests/test_properties/test_properties.cpp: Fix #343 handle reserved chars
in name for YAML.
2018-05-25 Dan Dennedy <[email protected]>
* src/modules/frei0r/filter_frei0r.c, src/modules/frei0r/frei0r_helper.c,
src/modules/frei0r/frei0r_helper.h, src/modules/frei0r/producer_frei0r.c,
src/modules/frei0r/transition_frei0r.c: Convert frei0r services to property
animation APIs.
* src/tests/test_animation/test_animation.cpp,
src/tests/test_properties/test_properties.cpp: Update unit tests for 5256000.
2018-05-22 Dan Dennedy <[email protected]>
* src/modules/frei0r/producer_frei0r.c, src/modules/gtk2/producer_pango.c,
src/modules/gtk2/producer_pixbuf.c, src/modules/swfdec/producer_swfdec.c:
Refactor to mlt_image_format_size().
2018-05-11 Dan Dennedy <[email protected]>
* configure, src/framework/mlt_version.h: Set interm version to 6.9.0
2018-05-10 Dan Dennedy <[email protected]>
* Doxyfile, configure, docs/melt.1, src/framework/mlt_version.h: Set version
to 6.8.0
2018-05-09 Dan Dennedy <[email protected]>
* src/modules/qt/producer_qimage.c, src/modules/qt/qimage_wrapper.cpp: Fix
qimage crash on source amd request format mismatch.
2018-05-07 Dan Dennedy <[email protected]>
* src/framework/mlt_consumer.c, src/modules/avformat/consumer_avformat.c: Fix
mlt_frame_get_audio() may be called before setting private data. This fixes
https://github.com/mltframework/shotcut/issues/549
2018-05-01 Dan Dennedy <[email protected]>
* src/modules/core/filter_region.c, src/modules/plus/filter_affine.c: Fix
affine and region filters alter the frame's position.
2018-04-08 Vincent Pinon <[email protected]>
* src/framework/mlt_frame.h, src/modules/avformat/consumer_avformat.c,
src/modules/vmfx/filter_chroma.c, src/modules/vmfx/filter_chroma_hold.c: Fix
GCC warnings
2018-04-25 Dan Dennedy <[email protected]>
* src/modules/plus/filter_affine.yml, src/modules/plus/transition_affine.c,
src/modules/plus/transition_affine.yml: Convert affine to mlt_rect and
animation APIs.
2018-04-16 Dan Dennedy <[email protected]>
* src/framework/mlt.vers, src/framework/mlt_animation.c,
src/framework/mlt_animation.h, src/mlt++/MltAnimation.cpp,
src/mlt++/MltAnimation.h, src/mlt++/mlt++.vers: Add
mlt_animation_key_set_frame() and Animation::key_set_frame().
2018-04-09 Dan Dennedy <[email protected]>
* src/framework/mlt.vers, src/framework/mlt_animation.c,
src/framework/mlt_animation.h, src/mlt++/MltAnimation.cpp,
src/mlt++/MltAnimation.h, src/mlt++/mlt++.vers: Add
mlt_animation_key_set_type() and Animation::key_set_type().
2018-03-28 Brian Matherly <[email protected]>
* src/modules/rtaudio/Makefile, src/modules/rtaudio/RtAudio.cpp,
src/modules/rtaudio/consumer_rtaudio.cpp: Improve surround support in RtAudio
on Windows. The directsound implementation in RtAudio does not support > 2
channels. But the WASAPI implementation does. This change will try all
available drivers to try to sucessfully open the audio device. If none of the
drivers work with surround, then it will revert to 2 channels. In the case
that the module reverts to 2 channels, the requested number of channels will
still be processed, but only the first two channels will be output. These
implementation changes were carried over from the SDL2 module to match the
behavior of consumer_sdl2_audio.
2018-03-25 Brian Matherly <[email protected]>
* src/modules/sdl2/Makefile, src/modules/sdl2/common.c,
src/modules/sdl2/common.h, src/modules/sdl2/consumer_sdl2.c,
src/modules/sdl2/consumer_sdl2_audio.c: Improve surround support in SDL2 on
Windows. The directsound implementation in SDL does not support > 2
channels. But the xaudio2 implementation does. This change will try all
available drivers to try to sucessfully open the audio device. If none of the
drivers work with surround, then it will revert to 2 channels. The user can
still request a specific driver using the audio_driver parameter.
2018-03-12 Dan Dennedy <[email protected]>
* presets/consumer/avformat/GIF, src/modules/avformat/consumer_avformat.c:
Fix #284 GIF encoding not working. This also fixes DPX.
* src/framework/mlt_frame.c, src/framework/mlt_types.h: Order the channel
layouts the same as FFmpeg.
* src/modules/avformat/consumer_avformat.c,
src/modules/avformat/producer_avformat.c: Fix wrong search flags supplied to
av_opt_set(). Not only were the wrong AV_OPT flags supplied as search
options but also lack of AV_OPT_SEARCH_CHILDREN was the cause of warnings
such as: [libx264 @ 0x7ff55c001c60] [Eval @ 0x7ff561544c60] Undefined
constant or missing '(' in 'main' [libx264 @ 0x7ff55c001c60] Unable to parse
option value "main"
2018-03-12 Brian Matherly <[email protected]>
* src/framework/mlt.vers, src/framework/mlt_consumer.c,
src/framework/mlt_consumer.h, src/framework/mlt_frame.c,
src/framework/mlt_frame.h, src/framework/mlt_tractor.c,
src/framework/mlt_transition.c, src/framework/mlt_types.h,
src/modules/avformat/Makefile, src/modules/avformat/common.c,
src/modules/avformat/common.h, src/modules/avformat/configure,
src/modules/avformat/consumer_avformat.c, src/modules/avformat/factory.c,
src/modules/avformat/filter_avfilter.c,
src/modules/avformat/filter_swresample.c,
src/modules/avformat/producer_avformat.c, src/modules/core/loader.ini: Add
filter_swresample. (#305) * Add filter_swresample. Performs channel
configuration aware channel count conversion. Also performs sample format and
frequency conversion. Set this filter as the default channelconvert normalize
filter. * Resolve review comments for filter_swresample. * Fix applying
channel_layout property. MLT allows specifying channel_layout as a string
representing the channel layout. But avcodec expects channel_layout to be
specified as an integer which represents a channel position bitmap. This
change stops the channel_layout property from being passed to avcodec so that
the value calculated by MLT will be used instead.
2018-03-02 Dan Dennedy <[email protected]>
* src/modules/sdl/consumer_sdl.yml, src/modules/sdl2/consumer_sdl2.yml,
src/modules/sdl2/factory.c: Fix sdl2 metadata.
2018-02-16 Dan Dennedy <[email protected]>
* presets/consumer/avformat/MJPEG,
presets/consumer/avformat/atsc_1080i_50/DNxHD,
presets/consumer/avformat/atsc_1080i_5994/DNxHD,
presets/consumer/avformat/atsc_1080p_2398/DNxHD,
presets/consumer/avformat/atsc_1080p_24/DNxHD,
presets/consumer/avformat/atsc_1080p_25/DNxHD,
presets/consumer/avformat/atsc_1080p_2997/DNxHD,
presets/consumer/avformat/atsc_1080p_30/DNxHD,
presets/consumer/avformat/atsc_1080p_50/DNxHD,
presets/consumer/avformat/atsc_1080p_5994/DNxHD,
presets/consumer/avformat/atsc_1080p_60/DNxHD,
presets/consumer/avformat/atsc_720p_2398/DNxHD,
presets/consumer/avformat/atsc_720p_50/DNxHD,
presets/consumer/avformat/atsc_720p_5994/DNxHD,
presets/consumer/avformat/atsc_720p_60/DNxHD,
presets/consumer/avformat/dv_ntsc/DV,
presets/consumer/avformat/dv_ntsc/DVCPRO50,
presets/consumer/avformat/dv_ntsc_wide/DV,
presets/consumer/avformat/dv_ntsc_wide/DVCPRO50,
presets/consumer/avformat/dv_pal/DV,
presets/consumer/avformat/dv_pal/DVCPRO50,
presets/consumer/avformat/dv_pal_wide/DV,
presets/consumer/avformat/dv_pal_wide/DVCPRO50,
presets/consumer/avformat/intermediate/MJPEG,
presets/consumer/avformat/lossless/FFV1,
presets/consumer/avformat/lossless/HuffYUV: Add g(op) and bf(rames) to more
encode presets.
2018-02-04 Vincent Pinon <[email protected]>
* src/framework/mlt_property.c, src/modules/avformat/filter_avdeinterlace.c,
src/modules/gtk2/pixops.c, src/modules/linsys/sdi_generator.c,
src/modules/opengl/transition_movit_luma.cpp, src/modules/plusgpl/cJSON.c,
src/modules/plusgpl/filter_burn.c, src/modules/vmfx/filter_shape.c: Fix
trivial GCC warnings
2018-02-05 Brian Matherly <[email protected]>
* src/modules/sdl/consumer_sdl.c, src/modules/sdl/consumer_sdl.yml,
src/modules/sdl/consumer_sdl_audio.c, src/modules/sdl2/consumer_sdl2.c,
src/modules/sdl2/consumer_sdl2.yml: Fix mulit-channel audio. (#294) * Fix
mulit-channel audio. At some framerates, audio with > 6 channels would
result in an audio buffer larger than that allocated for SDL. This change
will copy from the buffer in pieces if it won't all fit at once. * Unify
consumer_play_audio() in sdl consumers. Use the same code for all 3
implementations. Affected features (all have these now): * Handling audio
frames larger than the sdl audio buffer * Audio scrubbing * "audio_offset"
property * Handling more or fewer channels than requested * Default
scrub_audio to 1 for sdl and sdl2 consumers.
2018-02-01 Dan Dennedy <[email protected]>
* configure, src/framework/mlt_version.h: Set interim version to 0.6.7
2018-01-30 johannes <[email protected]>
* src/framework/mlt_properties.c, src/framework/mlt_property.c,
src/framework/mlt_property.h: musl libc support musl has no macro, so it can
not be detected straigthforward. HAVE_STRTOD_L tells that strdod_l() is
available HAVE_LOCALE_H tells that the header locale.h is available
2018-01-22 Dan Dennedy <[email protected]>
* Doxyfile, configure, docs/melt.1, src/framework/mlt_version.h: Set version
to 6.6.0
2018-01-21 Dan Dennedy <[email protected]>
* src/modules/jackrack/factory.c, src/modules/jackrack/filter_jack.yml,
src/modules/jackrack/filter_jackrack.c,
src/modules/jackrack/filter_jackrack.yml: Add jack filter. This differs from
"jackrack" such that it does not load a JackRack file and instead takes the
name of the JACK client as the argument. This is really only needed if you
want to control the name of the client.
* src/modules/sdl/consumer_sdl.c, src/modules/sdl2/consumer_sdl2.c: Fix
potential sdl/sdl2 deadlock. (#245) If the thread might be waiting on the
condition variable, signal it first, and then join.
2018-01-14 Dan Dennedy <[email protected]>
* src/framework/mlt_factory.c, src/framework/mlt_factory.h,
src/modules/sdl/Makefile, src/modules/sdl/configure,
src/modules/sdl/factory.c, src/modules/sdl2/Makefile,
src/modules/sdl2/configure, src/modules/{sdl => sdl2}/consumer_sdl2.c,
src/modules/sdl2/consumer_sdl2.yml, src/modules/sdl2/consumer_sdl2_audio.yml,
src/modules/sdl2/factory.c: Add sdl2 module that may coexist with sdl (1.2).
Now, it is possible to build both SDL 1.2 and SDL 2 consumers. However, using
both in the same process is not supported. Builders can choose to disable one
or the other at configure time as they deem fit. It can be desirable to build
both to allow an application such as Flowblade that only works with SDL 1.2
while another application such as melt uses SDL 2.
2018-01-08 Dan Dennedy <[email protected]>
* src/modules/frei0r/filter_frei0r.c, src/modules/frei0r/transition_frei0r.c:
Fix memory leak closing frei0r filter or transition (#271).
* src/modules/frei0r/factory.c, src/modules/frei0r/filter_frei0r.c,
src/modules/frei0r/frei0r_helper.c, src/modules/frei0r/transition_frei0r.c:
Stop using "this" as variable in frei0r module.
2017-12-29 Dan Dennedy <[email protected]>
* src/framework/mlt_property.c,
src/tests/test_properties/test_properties.cpp: More fixes to frames-time
conversions. This time with more comprehensive unit tests (high range
loops).
2017-12-02 Dan Dennedy <[email protected]>
* src/modules/qt/Makefile, src/modules/qt/configure: Only use c++11 with Qt
5.7 or higher.
2017-11-30 Dan Dennedy <[email protected]>
* src/modules/qt/Makefile, src/modules/qt/configure: Use -std=c++11 with
clang and Qt 5.
2017-11-13 Dan Dennedy <[email protected]>
* src/framework/mlt_property.c,
src/tests/test_properties/test_properties.cpp: Fix accuracy of frames-time
conversions.
2017-10-23 Dan Dennedy <[email protected]>
* .gitignore, src/modules/avformat/consumer_avformat.c: Fix FFmpeg master
removed AVFMT_RAWPICTURE.
* src/modules/avformat/Makefile, src/modules/avformat/factory.c,
src/modules/avformat/filter_avresample.c, src/modules/core/loader.ini: Remove
filter_avresample - dropped by FFmpeg.
2017-10-18 Yuri Valentini <[email protected]>
* src/modules/gtk2/producer_pixbuf.c, src/modules/gtk2/producer_pixbuf.yml:
pixbuf producer csv files support
2017-10-08 Dan Dennedy <[email protected]>
* src/modules/ndi/consumer_ndi.yml, src/modules/ndi/producer_ndi.yml: Convert
newlines to linefeeds.
* src/modules/ndi/consumer_ndi.yml, src/modules/ndi/producer_ndi.yml: Add
Audio tag and version to NDI metadata.
2017-10-04 Stéphane L <[email protected]>
* src/modules/ndi/consumer_ndi.yml, src/modules/ndi/producer_ndi.yml: Add
metadata to NDI module
2017-10-03 Jean-Baptiste Mardelle <[email protected]>
* src/modules/qt/filter_qtblend.cpp, src/modules/qt/filter_qtblend.yml,
src/modules/qt/transition_qtblend.cpp, src/modules/qt/transition_qtblend.yml:
Allow centered rotation in qtblend filter/transition
2017-09-17 Dan Dennedy <[email protected]>
* src/modules/avformat/consumer_avformat.c,
src/modules/avformat/producer_avformat.c: Fix auto multi-threading on FFmpeg
3.2+.
* src/modules/avformat/consumer_avformat.c,
src/modules/avformat/filter_avcolour_space.c,
src/modules/avformat/filter_avdeinterlace.c,
src/modules/avformat/filter_swscale.c,
src/modules/avformat/producer_avformat.c: Stop using deprectated AVPicture
API.
2017-09-10 Dan Dennedy <[email protected]>
* src/framework/mlt_filter.c, src/framework/mlt_tractor.c,
src/modules/core/filter_panner.c, src/modules/core/transition_composite.c,
src/modules/core/transition_region.c,
src/modules/opengl/transition_movit_luma.cpp,
src/modules/vmfx/filter_shape.c: Prevent frame property collisions on
_unique_id.
2017-09-03 Dan Dennedy <[email protected]>
* src/modules/sdl/consumer_sdl2.c, src/modules/sdl/consumer_sdl_audio.c: Fix
audio glitches with SDL2.
2017-09-02 Dan Dennedy <[email protected]>
* src/modules/sdl/consumer_sdl2.c, src/modules/sdl/consumer_sdl_audio.c: Get
SDL2 working on Windows.
2017-08-29 Dan Dennedy <[email protected]>
* src/melt/Makefile, src/melt/melt.c: Fix SDL 2 events integration into melt.
* .travis.yml, configure, src/melt/Makefile, src/melt/melt.c,
src/modules/decklink/Makefile, src/modules/sdl/Makefile,
src/modules/sdl/configure, src/modules/sdl/consumer_sdl2.c,
src/modules/sdl/factory.c: Fix #246 and #112 by adding support for SDL 2.
2017-08-04 Dan Dennedy <[email protected]>
* src/modules/gtk2/producer_pixbuf.c, src/modules/gtk2/producer_pixbuf.yml,
src/modules/qt/producer_qimage.c, src/modules/qt/producer_qimage.yml: Fix
regression with image sequence duration. When setting length explicitly -
whether to support looping or hold the last image - the chosen length would
not work when loaded from XML. Reported by Jean-Baptiste Mardelle.
2017-04-24 Dan Dennedy <[email protected]>
* src/framework/mlt_frame.c, src/framework/mlt_properties.c,
src/framework/mlt_types.h, src/modules/avformat/consumer_avformat.c,
src/modules/avformat/producer_avformat.c, src/modules/core/producer_melt.c,
src/modules/core/transition_composite.c, src/modules/core/transition_luma.c,
src/modules/dv/consumer_libdv.c, src/modules/gtk2/producer_pango.c,
src/modules/opengl/transition_movit_luma.cpp,
src/modules/plus/consumer_blipflash.c,
src/modules/qt/producer_kdenlivetitle.c, src/modules/qt/producer_qtext.cpp,
src/modules/vid.stab/filter_vidstab.cpp, src/modules/vmfx/filter_shape.c,
src/modules/vmfx/producer_pgm.c, src/modules/vorbis/producer_vorbis.c,
src/modules/xml/consumer_xml.c, src/modules/xml/producer_xml.c,
src/win32/win32.c: Fix opening files with extended chars on Windows. FFmpeg
can already open files whose names are encoded as UTF-8 on Windows - no need
to try to work around it. Instead, use its implementation in
libavutil/file_open.c for hints to make an fopen replacement in MLT named
mlt_fopen. This fixes Shotuct bug
https://github.com/mltframework/shotcut/issues/278
2017-04-14 alcinos <[email protected]>
* src/framework/mlt.vers, src/framework/mlt_service.c,
src/framework/mlt_service.h, src/mlt++/MltService.cpp,
src/mlt++/MltService.h, src/mlt++/mlt++.vers: Add function to disconnect all
producers (#226) * Add function to disconnect all producers * Add forgotten
versionning * Change logic to avoid consumer disconnection
2017-03-27 Vincent Pinon <[email protected]>
* .gitignore, Makefile, src/framework/Makefile, src/mlt++/Makefile,
src/modules/Makefile, src/modules/avformat/Makefile,
src/modules/decklink/Makefile, src/modules/jackrack/Makefile,
src/modules/ndi/Makefile, src/modules/rtaudio/Makefile,
src/modules/sox/Makefile: Avoid distclean failure if already clean
2017-03-18 Dan Dennedy <[email protected]>
* src/modules/xml/consumer_xml.c, src/modules/xml/consumer_xml.yml: Add
no_profile property to xml consumer. (#212)
2017-03-13 Dan Dennedy <[email protected]>
* README, src/framework/mlt.h, src/melt/melt.c: Update web site links.
2017-03-12 Dan Dennedy <[email protected]>
* src/framework/mlt_properties.c, src/framework/mlt_property.c: Fix #214
setlocale in mlt_properties is slow. On Windows, this change makes
mlt_properties_set_lcnumeric() no-op and mlt_property and mlt_properties
insenstive to the locale parameters. IOW, it always uses the thread's locale.
Mainly, this means that the LC_NUMERIC attribute in MLT XML is not honored on
Windows, and the document is instead interpreted in the thread's locale.
2017-02-27 Dan Dennedy <[email protected]>
* src/modules/plus/transition_affine.c,
src/modules/plus/transition_affine.yml: Change affine threads default to 0.
This is working well enough in my testing that it can default to using
slices. One can set threads=1 to not use slice processing.
2017-02-25 Dan Dennedy <[email protected]>
* src/modules/plus/transition_affine.c,
src/modules/plus/transition_affine.yml: Add mlt_slices and threads property
to affine transition.
2017-02-24 Maksym Veremeyenko <[email protected]>
* src/framework/mlt_consumer.c, src/modules/avformat/filter_avdeinterlace.c,
src/modules/core/filter_fieldorder.c,
src/modules/core/transition_composite.c,
src/modules/decklink/consumer_decklink.cpp: Add more timings monitoring
2017-02-20 Brian Matherly <[email protected]>
* src/modules/plus/Makefile, src/modules/plus/configure,
src/modules/plus/filter_dynamic_loudness.c,
src/modules/plus/filter_loudness.c, src/modules/plus/filter_loudness_meter.c:
Fix include directives for ebur128 filters.
2017-02-19 Brian Matherly <[email protected]>
* src/modules/plus/Makefile, src/modules/plus/configure: Use external
libebur128 if detected.
2017-02-19 Dan Dennedy <[email protected]>
* src/mlt++/MltFactory.cpp, src/mlt++/MltFactory.h,
src/mlt++/MltRepository.cpp, src/mlt++/MltRepository.h: Fix copyrights in
Mlt::Factory and Mlt::Repository.
2017-02-19 Maksym Veremeyenko <[email protected]>
* src/modules/decklink/producer_decklink.cpp,
src/modules/decklink/producer_decklink.yml: Implement 10-bit capturing
* src/framework/mlt.vers, src/framework/mlt_frame.c,
src/framework/mlt_frame.h: Implement mlt_image_format_planes and
mlt_image_format_id, fix frame size calculation for mlt_image_yuv422p16
2017-02-11 Maksym Veremeyenko <[email protected]>
* src/framework/mlt.vers, src/framework/mlt_log.c, src/framework/mlt_log.h,
src/melt/melt.c, src/modules/avformat/producer_avformat.c: Timestamped
logging and timings measurment implemented
2017-02-06 Dan Dennedy <[email protected]>
* src/framework/mlt.vers, src/framework/mlt_slices.c,