forked from mltframework/mlt
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathChangeLog
13287 lines (10191 loc) · 606 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
2020-02-16 Dan Dennedy <[email protected]>
* Doxyfile, NEWS, configure, docs/melt.1, src/framework/mlt_version.h:
version 6.20.0
* .travis.yml, Dockerfile: add Dockerfile and integrate it with Travis CI
2020-02-15 Dan Dennedy <[email protected]>
* src/modules/core/transition_composite.c,
src/modules/core/transition_composite.yml: fix #506 crash when using invert
in composite
2020-02-14 Dan Dennedy <[email protected]>
* presets/consumer/avformat/ALAC, presets/consumer/avformat/FLAC,
presets/consumer/avformat/intermediate/ProRes HQ,
presets/consumer/avformat/intermediate/ProRes-Kostya: add ALAC, FLAC, and
ProRes HQ encode presets
2020-02-09 Brian Matherly <[email protected]>
* src/modules/avformat/filter_swresample.c,
src/modules/core/producer_timewarp.c, src/modules/core/producer_timewarp.yml,
src/modules/rubberband/filter_rbpitch.cpp: Add pitch compensation to timewarp
producer
2020-02-08 Jean-Baptiste Mardelle <[email protected]>
* src/modules/opencv/filter_opencv_tracker.cpp,
src/modules/opencv/filter_opencv_tracker.yml: opencv.tracker : add CSRT and
MOSSE algorithms in version 2
2020-02-07 Maksym Veremeyenko <[email protected]>
* src/modules/core/composite_line_yuv_sse2_simple.c,
src/modules/core/transition_matte.c, src/modules/decklink/common.cpp,
src/modules/ndi/factory.c: fix #518 crash in matte transition
2020-02-06 Dan Dennedy <[email protected]>
* presets/consumer/avformat/intermediate/DNxHR-HQ,
src/modules/lumas/create_lumas: add a DNxHR-HQ avformat consumer preset
2020-02-06 Jean-Baptiste Mardelle <[email protected]>
* src/modules/qt/filter_qtblend.cpp, src/modules/qt/transition_qtblend.cpp:
qtblend: adjust aspect ratio on consumer scaling, small optimizations
2020-02-01 Dan Dennedy <[email protected]>
* src/modules/plus/filter_text.c, src/modules/qt/filter_qtext.cpp: support
text keyframes in text filters
2020-01-27 Dan Dennedy <[email protected]>
* src/modules/motion_est/filter_autotrack_rectangle.c,
src/modules/motion_est/filter_crop_detect.c,
src/modules/motion_est/filter_motion_est.c,
src/modules/motion_est/filter_vismv.c,
src/modules/opencv/filter_opencv_tracker.cpp: disable consumer scale in
motion_est and opencv
* CMakeLists.txt, src/modules/rubberband/CMakeLists.txt: add CMake to
rubberband module
2020-01-19 Brian Matherly <[email protected]>
* src/modules/rubberband/Makefile, src/modules/rubberband/configure,
src/modules/rubberband/factory.c, src/modules/rubberband/filter_rbpitch.cpp,
src/modules/rubberband/filter_rbpitch.yml, src/modules/rubberband/gpl: Add
rubberband module and rbpitch filter.
2020-01-26 Dan Dennedy <[email protected]>
* src/framework/mlt_properties.c,
src/tests/test_properties/test_properties.cpp: fix mlt_properties_set
regression in e0304b5
2020-01-25 Dan Dennedy <[email protected]>
* src/framework/mlt.vers, src/framework/mlt_properties.c,
src/framework/mlt_properties.h, src/mlt++/MltProperties.cpp,
src/mlt++/MltProperties.h, src/mlt++/mlt++.vers: add
mlt_properties_set_string() and Mlt::Properties::set_string() These new
functions bypass any attempt to evaluate an expression.
* src/melt/melt.c, src/modules/xml/producer_xml.c: use multiplication when
applying scale in melt and xml
2020-01-19 Dan Dennedy <[email protected]>
* src/mlt++/MltProfile.cpp, src/mlt++/MltProfile.h, src/mlt++/mlt++.vers: add
scale_width() and scale_height() to Mlt::Profile
* src/modules/avformat/filter_avfilter.c, src/modules/frei0r/frei0r_helper.c,
src/modules/gtk2/producer_pango.c, src/modules/kdenlive/filter_boxblur.c,
src/modules/kdenlive/filter_wave.c, src/modules/oldfilm/filter_lines.c,
src/modules/oldfilm/filter_oldfilm.c, src/modules/oldfilm/filter_vignette.c,
src/modules/opengl/filter_movit_blur.cpp,
.../opengl/filter_movit_deconvolution_sharpen.cpp,
src/modules/opengl/filter_movit_glow.cpp,
src/modules/opengl/filter_movit_resize.cpp,
src/modules/plus/filter_charcoal.c, src/modules/plus/filter_spot_remover.c,
src/modules/plus/transition_affine.c,
src/modules/qt/filter_audiospectrum.cpp,
src/modules/qt/filter_audiowaveform.cpp, src/modules/qt/filter_lightshow.cpp,
src/modules/qt/filter_qtblend.cpp, src/modules/qt/filter_qtext.cpp,
src/modules/qt/transition_qtblend.cpp: refactor to
mlt_profile_scale_width/height()
* src/framework/mlt.vers, src/framework/mlt_profile.c,
src/framework/mlt_profile.h: add mlt_profile_scale_width() and
mlt_profile_scale_height()
2020-01-18 Dan Dennedy <[email protected]>
* src/modules/vid.stab/filter_vidstab.cpp,
src/modules/videostab/filter_videostab.c,
src/modules/videostab/filter_videostab2.c: disable consumer scaling in
videostab and vidstab
* src/modules/avformat/factory.c, src/modules/avformat/filter_avfilter.c,
src/modules/avformat/resolution_scale.yml: support consumer scale in avfilter
The configuration may not be comprehensive. Some AVFilters may not be able
to support consumer scaling.
* src/modules/opengl/filter_movit_blur.cpp,
.../opengl/filter_movit_deconvolution_sharpen.cpp,
src/modules/opengl/filter_movit_glow.cpp,
src/modules/opengl/filter_movit_resize.cpp: support consumer scale in opengl
module
* src/modules/opengl/filter_movit_rect.yml,
src/modules/plus/filter_dynamictext.yml, src/modules/plus/filter_text.yml,
src/modules/plus/filter_timer.yml, src/modules/qt/filter_qtblend.yml,
src/modules/qt/filter_qtext.yml, src/modules/qt/transition_qtblend.yml: fix
the metadata parameter type from geometry to rect
* src/modules/plus/filter_affine.c, src/modules/plus/transition_affine.c,
src/modules/qt/transition_qtblend.cpp: fix consumer scale in affine and
qtblend transitions
2020-01-17 Dan Dennedy <[email protected]>
* src/melt/melt.c, src/modules/xml/producer_xml.c: support consumer scale in
melt and xml producer
2020-01-12 Dan Dennedy <[email protected]>
* src/modules/oldfilm/filter_lines.c, src/modules/oldfilm/filter_oldfilm.c,
src/modules/oldfilm/filter_vignette.c: add support for consumer scale to
oldfilm module
* src/modules/frei0r/factory.c, src/modules/frei0r/frei0r_helper.c,
src/modules/frei0r/not_thread_safe.txt,
src/modules/frei0r/resolution_scale.yml: add support for consumer scale to
frei0r module Most pluings are already resolution independent, but some
parameters are relative to resolution. This adds a configurable way to
address them.
2020-01-11 Dan Dennedy <[email protected]>
* src/modules/linsys/consumer_SDIstream.c,
src/modules/linsys/sdi_generator.c: fix sdi consumer crash if driver not
loaded
* src/modules/qt/filter_audiospectrum.cpp,
src/modules/qt/filter_audiowaveform.cpp, src/modules/qt/filter_lightshow.cpp,
src/modules/qt/filter_qtblend.cpp, src/modules/qt/filter_qtblend.yml,
src/modules/qt/filter_qtext.cpp, src/modules/qt/filter_qtext.yml,
src/modules/qt/graph.cpp, src/modules/qt/graph.h,
src/modules/qt/transition_qtblend.cpp, src/modules/qt/transition_qtblend.yml:
add support for consumer scale to qt module
* src/modules/plus/filter_charcoal.c, src/modules/plus/filter_charcoal.yml,
src/modules/plus/filter_spot_remover.c, src/modules/plus/filter_text.c,
src/modules/plus/transition_affine.c, src/modules/plus/transition_affine.yml:
add support for consumer scale to plus module
* src/modules/gtk2/producer_pango.c, src/modules/gtk2/producer_pango.yml: add
support for consumer scale to pango producer
* src/modules/kdenlive/filter_boxblur.c, src/modules/kdenlive/filter_wave.c:
add support for consumer scale to kdenlive module
2020-01-06 Dan Dennedy <[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: add resolution scale property to mlt_consumer
This also adds consumer_scale to mlt_frame and mlt_frame_resolution_scale()
to access it.
2019-12-31 Brian Matherly <[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/producer_avformat.c: Add "mlt" prefix to get_sws_flags.
2019-12-30 Brian Matherly <[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/producer_avformat.c: Improve colorspace conversion.
Choose sws flags based on what conversion is being done.
2019-12-28 Dan Dennedy <[email protected]>
* presets/consumer/avformat/XDCAM-HD422,
presets/consumer/avformat/dv_ntsc/D10,
presets/consumer/avformat/dv_ntsc_wide/D10,
presets/consumer/avformat/dv_pal/D10,
presets/consumer/avformat/dv_pal_wide/D10: fix some avoptions in XDCAM and
D10 presets
2019-12-23 Vincent Pinon <[email protected]>
* src/melt/CMakeLists.txt, src/modules/sdl2/CMakeLists.txt: Fix CMake SDL2
import Fixes: #509 tested on debian sid, which has latest sdl2-config.cmake
but it may be patched on some distributions
2019-12-01 Dan Dennedy <[email protected]>
* src/modules/vorbis/deprecated, src/modules/vorbis/producer_vorbis.yml: take
vorbis module out of deprecation (#505)
2019-11-18 Dan Dennedy <[email protected]>
* src/modules/core/filter_mask_start.yml, src/modules/vmfx/filter_shape.c,
src/modules/vmfx/filter_shape.yml: add reverse property to shape filter
* src/modules/plus/filter_affine.yml, src/modules/plus/transition_affine.c,
src/modules/plus/transition_affine.yml: add invert_scale property to affine
* configure, src/framework/mlt_version.h: set the interim version to 6.19.0
2019-11-11 Dan Dennedy <[email protected]>
* configure, docs/melt.1, src/framework/mlt_version.h: set version to 6.18.0
2019-11-09 Dan Dennedy <[email protected]>
* src/modules/core/transition_luma.c, src/modules/core/transition_luma.yml:
add alpha_over property to luma transition This fixes a behavior regression
in 25cb58c reported by @j-b-m.
2019-10-01 Vincent PINON <[email protected]>
* CMakeLists.txt, src/framework/CMakeLists.txt,
src/framework/mlt-framework.pc.in, src/melt/CMakeLists.txt,
src/mlt++/CMakeLists.txt, src/mlt++/mlt++.pc.in,
src/modules/avformat/CMakeLists.txt, src/modules/core/CMakeLists.txt,
src/modules/decklink/CMakeLists.txt, src/modules/feeds/CMakeLists.txt,
src/modules/frei0r/CMakeLists.txt, src/modules/gtk2/CMakeLists.txt,
src/modules/kdenlive/CMakeLists.txt, src/modules/motion_est/CMakeLists.txt,
src/modules/normalize/CMakeLists.txt, src/modules/oldfilm/CMakeLists.txt,
src/modules/opencv/CMakeLists.txt, src/modules/plus/CMakeLists.txt,
src/modules/plusgpl/CMakeLists.txt, src/modules/qt/CMakeLists.txt,
src/modules/rtaudio/CMakeLists.txt, src/modules/sdl2/CMakeLists.txt,
src/modules/vid.stab/CMakeLists.txt, src/modules/vmfx/CMakeLists.txt,
src/modules/xine/CMakeLists.txt, src/modules/xml/CMakeLists.txt: Add CMake
build system
2019-09-24 Vincent PINON <[email protected]>
* src/modules/plus/configure, src/modules/qt/configure: Allow using FFTW
build with CMake (different pkg-config file name)
2019-10-26 Rafael Sadowski <[email protected]>
* configure, src/framework/mlt_property.h, src/modules/kino/endian_types.h,
src/modules/plusgpl/consumer_cbrts.c, src/modules/videostab/stab/estimate.c:
OpenBSD support Tweask to build mlt on OpenBSD
2019-10-11 j-b-m <[email protected]>
* src/modules/qt/filter_qtblend.cpp, src/modules/qt/filter_qtblend.yml:
qtblend filter: don't process alpha if no transparency, add background_color
property (#485) * Qtblend: add background_color property to allow flattening
alpha channel * minor indentation fixes
2019-10-07 Dan Dennedy <[email protected]>
* src/modules/frei0r/frei0r_helper.c, src/modules/frei0r/not_thread_safe.txt:
use separate frei0r instance per frame thread This fixes parameter animation
when using frame threads and improves performance of many plugins. Only
time-based effects are not compatible with frame threads now.
2019-10-06 Dan Dennedy <[email protected]>
* src/modules/kdenlive/filter_freeze.c,
src/modules/kdenlive/filter_freeze.yml: fix freeze filter crashes and not
working on clip only
2019-09-24 Dan Dennedy <[email protected]>
* presets/consumer/avformat/intermediate/ProRes,
presets/consumer/avformat/intermediate/ProRes-Kostya: add write_colr to
prores presets
2019-09-23 Dan Dennedy <[email protected]>
* presets/consumer/avformat/intermediate/ProRes,
presets/consumer/avformat/intermediate/ProRes-Kostya,
src/modules/core/consumer_multi.c: change the vendor ID for ProRes
2019-09-22 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: refactor process_frei0r_item() to
mlt_position
* src/modules/frei0r/factory.c, src/modules/frei0r/filter_frei0r.c,
src/modules/frei0r/frei0r_helper.h, src/modules/frei0r/producer_frei0r.c,
src/modules/frei0r/transition_frei0r.c: add my copyright to frei0r for 10
years of maintenance
* src/modules/frei0r/factory.c, src/modules/frei0r/frei0r_helper.c: cleanup
formatting
2019-09-21 Dan Dennedy <[email protected]>
* src/swig/python/build, src/swig/python/codecs.py,
src/swig/python/getimage.py, src/swig/python/play.py,
src/swig/python/switcher.py, src/swig/python/test_animation.py,
src/swig/python/waveforms.py, src/swig/python/webvfx_generator.py: switch to
python3 by default patch by Patrick Matthäi
2019-09-08 Dan Dennedy <[email protected]>
* src/modules/frei0r/filter_cairoblend_mode.c,
src/modules/frei0r/frei0r_helper.c, src/modules/frei0r/frei0r_helper.h,
src/modules/frei0r/transition_frei0r.c: fix cairoblend_mode filter breaks
transition state
2019-08-31 Dan Dennedy <[email protected]>
* src/modules/frei0r/filter_cairoblend_mode.c,
src/modules/frei0r/filter_cairoblend_mode.yml: add cairoblend_mode filter
* src/modules/frei0r/Makefile, src/modules/frei0r/factory.c,
src/modules/frei0r/transition_frei0r.c: add cairoblend_mode filter
* src/modules/vmfx/filter_mono.c, src/modules/vmfx/filter_mono.yml: Add
animation to threshold filter.
2019-08-20 Dan Dennedy <[email protected]>
* src/modules/vmfx/filter_shape.c, src/modules/vmfx/producer_pgm.c: Refactor
pgm producer and shape filter to use mlt_luma_map.
* src/modules/core/transition_composite.c,
src/modules/core/transition_luma.c: Refactor composite and luma transitions
to use mlt_luma_map.
* src/modules/lumas/Makefile, src/modules/lumas/configure,
src/modules/lumas/create_lumas, src/modules/lumas/luma.c: Refactor
lumas/luma.c to use mlt_luma_map. This module is now disabled by default in
configure and must be explicitly enabled. It also fixes pgm file output on
Windows.
* src/framework/Makefile, src/framework/mlt.vers,
src/framework/mlt_luma_map.c, src/framework/mlt_luma_map.h: Add mlt_luma_map.
Several services across a few modules use this functionality. So, it made
sense to centralize it. However, the main motivation for this was to remove
the need to generate luma files in the luma module and let these images be
generated just-in-time. This removes a large amount of data from install and
makes them more flexible to image resolution and aspect ratio.
2019-07-29 Dan Dennedy <[email protected]>
* src/modules/plus/transition_affine.c, src/modules/vmfx/filter_shape.c: Fix
crash combining affine with shape.
2019-07-28 Dan Dennedy <[email protected]>
* src/mlt++/mlt++.vers, src/modules/vid.stab/filter_vidstab.cpp,
src/modules/vid.stab/filter_vidstab.yml: Add analyze property to vidstab
filter.
* src/mlt++/MltFilter.cpp, src/mlt++/MltFilter.h, src/mlt++/MltProducer.cpp,
src/mlt++/MltProducer.h, src/mlt++/MltProperties.cpp,
src/mlt++/MltProperties.h, src/mlt++/MltService.cpp, src/mlt++/MltService.h,
src/mlt++/MltTransition.cpp, src/mlt++/MltTransition.h, src/mlt++/mlt++.vers:
Add more default/const ctors and copy operators.
* src/framework/mlt_consumer.c, src/framework/mlt_filter.c,
src/framework/mlt_service.c, src/framework/mlt_transition.c,
src/tests/test_service/test_service.cpp,
src/tests/test_service/test_service.pro, src/tests/tests.pro: Fix #454
mlt_service_identify() not reliable.
* src/modules/avformat/blacklist.txt, src/modules/avformat/filter_avfilter.c:
Fix #345 subtitles not using the source position.
* src/modules/avformat/factory.c, src/modules/avformat/filter_avfilter.c: Add
position property to avfilter (#345). "frame" (default) is the position of
the frame within the composition. This corresponds to the consumer's render
position. "filter" is relative to the the filter's in point. "producer" is
relative to the producer's in point (producer here could be a playlist or
multitrack). "source" is the position from the original producer that
generated this frame (i.e. absolute).
2019-07-20 Dan Dennedy <[email protected]>
* src/modules/gtk2/producer_pango.yml, src/modules/plus/filter_text.yml,
src/modules/qt/producer_qtext.yml: Improve docs for text producers and
filter.
2019-07-06 Dan Dennedy <[email protected]>
* src/modules/vid.stab/filter_deshake.cpp,
src/modules/vid.stab/filter_vidstab.cpp: Fix vid.stab and deshake default
values for locale. These properties were initialized using numeric strings
with a decimal, which does not interpret correctly depending on MLT locale.
2019-06-28 Dan Dennedy <[email protected]>
* src/modules/xml/consumer_xml.c, src/modules/xml/producer_xml.c: Fix
serializing +INVALID.txt as a text producer.
https://forum.shotcut.org/t/invalid-error-message-fix-needed/11713/
2019-06-24 Dan Dennedy <[email protected]>
* docs/melt.1, docs/melt.txt, src/melt/melt.c: Add -repository option to melt
command. Fixes #459 If you are also using both -repository and -query
options, repository should come before query.
2019-05-31 Dan Dennedy <[email protected]>
* src/modules/frei0r/frei0r_helper.c, src/modules/frei0r/producer_frei0r.c:
Fix filters on frei0r generators.
https://forum.shotcut.org/t/color-bars-not-completely-shown-and-
destroyed-by-effects/10999
* src/modules/opengl/Makefile, src/modules/opengl/factory.c,
src/modules/opengl/filter_movit_flip.cpp,
src/modules/opengl/filter_movit_flip.yml: Add movit.flip filter.
2019-05-20 Dan Dennedy <[email protected]>
* src/modules/sdl/consumer_sdl.c, src/modules/sdl/consumer_sdl_audio.c,
src/modules/sdl/consumer_sdl_still.c: Fix data races in the sdl(1) module.
* src/modules/sdl2/consumer_sdl2.c, src/modules/sdl2/consumer_sdl2_audio.c:
Fix more thread data races in sdl2.
* src/tests/test_events/test_events.cpp,
src/tests/test_events/test_events.pro, src/tests/tests.pro: Add unit tests
for Mlt::Event. Currently fails in checkOwner() due to #445.
2019-05-07 Dan Dennedy <[email protected]>
* configure, src/framework/mlt_version.h: Set the interim version to 6.17.0
* 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]>