forked from mltframework/mlt
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathChangeLog
10968 lines (8481 loc) · 509 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
2015-07-29 Dan Dennedy <[email protected]>
* Doxyfile, configure, docs/melt.1, src/framework/mlt_version.h: Set version
to 0.9.8.
2015-06-10 Dan Dennedy <[email protected]>
* src/swig/python/test_animation.py,
src/tests/test_animation/test_animation.cpp, src/tests/tests.pro: Add tests
for new Mlt::Animation API.
* src/mlt++/MltAnimation.cpp, src/mlt++/MltAnimation.h, src/mlt++/mlt++.vers:
Add Mlt::Animation::key_count() and key_get(). Also adds
Mlt::Animation::key_get_frame() and Mlt::Animation::key_get_type(), which are
useful for scripting/managed languages that cannot pass arguments by
reference.
* src/framework/mlt.vers, src/framework/mlt_animation.c,
src/framework/mlt_animation.h: Add mlt_animation_key_count() and
mlt_animation_key_get().
2015-06-09 Dan Dennedy <[email protected]>
* src/mlt++/Makefile, src/mlt++/Mlt.h, src/mlt++/MltAnimation.cpp,
src/mlt++/MltAnimation.h, src/mlt++/MltProperties.cpp,
src/mlt++/MltProperties.h, src/mlt++/mlt++.vers, src/swig/mlt.i: Add
Mlt::Animation C++ API.
2015-07-27 Dan Dennedy <[email protected]>
* src/modules/frei0r/factory.c, src/modules/frei0r/not_thread_safe.txt: Make
frei0r thread-safe check plugin version. Now, the frei0r MLT services will
compare the plugin version to the version in the data file to see if they
have been fixed yet. Also, update the data file to include versions that have
the latest frei0r change to remove needless, non-parallel-safe state from
frei0r.hpp.
2015-06-25 Dan Dennedy <[email protected]>
* src/framework/mlt.vers, src/framework/mlt_transition.c,
src/framework/mlt_transition.h, src/mlt++/MltTransition.cpp,
src/mlt++/MltTransition.h, src/mlt++/mlt++.vers: Add
Transition::set_tracks(). As well as mlt_transition_set_tracks().
2015-06-24 Dan Dennedy <[email protected]>
* src/modules/jackrack/factory.c, src/modules/jackrack/filter_ladspa.c: Add
property animation to ladspa filter.
2015-06-20 Dan Dennedy <[email protected]>
* src/framework/mlt.vers, src/framework/mlt_multitrack.c,
src/framework/mlt_multitrack.h, src/framework/mlt_service.c,
src/framework/mlt_service.h, src/framework/mlt_tractor.c,
src/framework/mlt_tractor.h, src/mlt++/MltMultitrack.cpp,
src/mlt++/MltMultitrack.h, src/mlt++/MltService.cpp, src/mlt++/MltService.h,
src/mlt++/MltTractor.cpp, src/mlt++/MltTractor.h, src/mlt++/mlt++.vers: Add
Mlt::Tractor::insert_track(). As well as Mlt::Multitrack::insert(),
Mlt::Service::insert_producer(), mlt_tractor_insert_track(),
mlt_multitrack_insert(), and mlt_service_insert_producer().
2015-06-19 Dan Dennedy <[email protected]>
* src/modules/avformat/consumer_avformat.yml, src/modules/avformat/factory.c:
Fix valid YAML for avformat parameter default string.
2015-06-08 Maksym Veremeyenko <[email protected]>
* src/modules/core/Makefile, src/modules/core/factory.c,
src/modules/core/filter_audiomap.c, src/modules/core/filter_audiomap.yml:
Implement audiomap filter.
2015-06-14 Dan Dennedy <[email protected]>
* src/modules/decklink/darwin/DeckLinkAPI.h,
src/modules/decklink/linux/DeckLinkAPI.h,
src/modules/decklink/win/DeckLinkAPI_h.h: Add 2K DCI and 4K modes to DeckLink
headers.
2015-06-08 Maksym Veremeyenko <[email protected]>
* src/modules/gtk2/producer_pango.c, src/modules/gtk2/producer_pango.yml:
Implement text rotation in pango producer
2015-05-25 Dan Dennedy <[email protected]>
* src/modules/avformat/producer_avformat.c,
src/modules/oldfilm/filter_lines.c, src/modules/plus/transition_affine.c,
src/modules/plusgpl/filter_telecide.c, src/modules/sox/filter_sox.c: Fix
clang warnings about abs functions.
* src/modules/frei0r/producer_frei0r.c, src/modules/plus/filter_dance.c:
Remove some more unusued variables.
* src/framework/mlt.vers, src/framework/mlt_multitrack.c,
src/framework/mlt_multitrack.h, src/framework/mlt_service.c,
src/framework/mlt_service.h, src/framework/mlt_tractor.c,
src/framework/mlt_tractor.h, src/mlt++/MltMultitrack.cpp,
src/mlt++/MltMultitrack.h, src/mlt++/MltService.cpp, src/mlt++/MltService.h,
src/mlt++/MltTractor.cpp, src/mlt++/MltTractor.h, src/mlt++/mlt++.vers: Add
Mlt::Tractor::remove_track(). As well as Mlt::Multitrack::disconnect,
Mlt::Service::disconnect_producer(), mlt_tractor_remove_track(),
mlt_multitrack_disconnect(), and mlt_service_disconnect_producer().
2015-05-22 Dan Dennedy <[email protected]>
* src/framework/mlt_profile.c, src/modules/core/filter_resize.c: Fix heap
corruption on auto-profile if yuv420p. mlt_image_none asks the producer for
a MLT image format closest to the source video. If that yields yuv420p, which
is very common, then filter_resize does not know how to pad that format. But,
filter_resize would try anyways, get bpp=1 from mlt_image_format_size(), and
not allocate enough memory for the new image.
2015-05-16 Dan Dennedy <[email protected]>
* src/modules/decklink/Makefile, src/modules/decklink/common.cpp: Fix crash
listing DeckLink devices on MinGW-x64. It is incorrect to free() a BSTR;
must use SysFreeString() instead.
* src/modules/motion_est/sad_sse.h, src/modules/xine/vf_yadif_template.h,
src/modules/xine/yadif.c: Fix assembly for MinGW-x64.
2015-05-03 Bernhard Frauendienst <[email protected]>
* src/swig/csharp/build, src/swig/java/build, src/swig/lua/build,
src/swig/php/build, src/swig/python/build, src/swig/tcl/build: Allow build
system to specify the name of g++ This is already possible in most places,
but missing for most of the bindings (except for perl and ruby)
2015-04-19 Brian Matherly <[email protected]>
* src/modules/opengl/filter_movit_rect.cpp,
src/modules/opengl/filter_movit_rect.yml: Add distort property to rect
filter.
2015-04-18 Brian Matherly <[email protected]>
* src/modules/qt/Makefile, src/modules/qt/configure,
src/modules/qt/factory.c, src/modules/qt/filter_lightshow.cpp,
src/modules/qt/filter_lightshow.yml: Add lightshow filter.
2015-04-16 Brian Matherly <[email protected]>
* src/modules/plus/filter_dance.c, src/modules/plus/filter_dance.yml: Cleanup
dance filter.
2015-04-13 Brian Matherly <[email protected]>
* src/modules/plus/filter_dance.c, src/modules/plus/filter_dance.yml: Set
default zoom to 0.
2015-04-07 Brian Matherly <[email protected]>
* src/modules/plus/Makefile, src/modules/plus/configure,
src/modules/plus/factory.c, src/modules/plus/filter_dance.c,
src/modules/plus/filter_dance.yml, src/modules/plus/filter_fft.c,
src/modules/plus/filter_fft.yml: Add fft and dance filters.
2015-03-19 Dan Dennedy <[email protected]>
* configure, src/framework/mlt_version.h: Set interim version to 0.9.7.
2015-03-13 Brian Matherly <[email protected]>
* src/modules/qt/filter_audiowaveform.cpp,
src/modules/qt/filter_audiowaveform.yml: Multiple improvements. * Don't
mirror the gradient. * Fix waveform when horizontal resolution exceeds the
number of audio samples. * Only use a single color by default.
2015-03-12 Brian Matherly <[email protected]>
* src/modules/qt/filter_audiowaveform.cpp,
src/modules/qt/filter_audiowaveform.yml: Add gradient orientation parameter.
* src/modules/qt/filter_audiowaveform.cpp,
src/modules/qt/filter_audiowaveform.yml: Add fill parameter.
2015-03-04 Brian Matherly <[email protected]>
* src/framework/metaschema.yaml, src/modules/qt/Makefile,
src/modules/qt/common.cpp, src/modules/qt/common.h, src/modules/qt/factory.c,
src/modules/qt/filter_audiowaveform.cpp,
src/modules/qt/filter_audiowaveform.yml: Add audiowaveform filter.
2015-03-01 Dan Dennedy <[email protected]>
* Doxyfile, configure, docs/melt.1, src/framework/mlt_version.h: Set version
to 0.9.6.
2015-02-25 Brian Matherly <[email protected]>
* src/modules/avformat/producer_avformat.c,
src/modules/avformat/producer_avformat.yml: Add mute_on_pause property.
Default behavior is to mute the audio if a frame is requested twice. This
matches the previous behavior.
2015-02-18 Dan Dennedy <[email protected]>
* src/framework/mlt_consumer.c, src/modules/sdl/consumer_sdl.c: Fix deadlock
with sdl_preview seeking/playing near end. Found while investigating
https://bugs.kde.org/show_bug.cgi?id=343326
2015-02-17 Dan Dennedy <[email protected]>
* configure, src/framework/mlt_version.h: Set interim version to 0.9.5.
2015-02-15 Dan Dennedy <[email protected]>
* Doxyfile, configure, docs/melt.1, src/framework/mlt_version.h: Set version
to 0.9.4.
2015-02-14 Dan Dennedy <[email protected]>
* src/framework/mlt_factory.c, src/framework/mlt_types.h,
src/modules/opengl/filter_glsl_manager.cpp: Some fixes for building on
Windows. Noticed while working on 64-bit build, but they do not appear to be
64- toolchain (4.8.2).
2015-02-08 Brian Matherly <[email protected]>
* src/mlt++/MltFilter.cpp, src/mlt++/MltFilter.h, src/mlt++/mlt++.vers,
src/tests/test_filter/test_filter.cpp, src/tests/test_filter/test_filter.pro,
src/tests/tests.pro: Add Mlt::Filter::process(Frame&) and an appropriate
test.
2015-02-08 Dan Dennedy <[email protected]>
* src/mlt++/Mlt.h, src/mlt++/MltConsumer.cpp, src/mlt++/MltConsumer.h,
src/mlt++/MltDeque.cpp, src/mlt++/MltDeque.h, src/mlt++/MltEvent.cpp,
src/mlt++/MltEvent.h, src/mlt++/MltFactory.cpp, src/mlt++/MltFactory.h,
src/mlt++/MltField.cpp, src/mlt++/MltField.h, src/mlt++/MltFilter.cpp,
src/mlt++/MltFilter.h, src/mlt++/MltFilteredConsumer.cpp,
src/mlt++/MltFilteredConsumer.h, src/mlt++/MltFilteredProducer.cpp,
src/mlt++/MltFilteredProducer.h, src/mlt++/MltFrame.cpp,
src/mlt++/MltFrame.h, src/mlt++/MltGeometry.cpp, src/mlt++/MltGeometry.h,
src/mlt++/MltMultitrack.cpp, src/mlt++/MltMultitrack.h,
src/mlt++/MltParser.cpp, src/mlt++/MltParser.h, src/mlt++/MltPlaylist.cpp,
src/mlt++/MltPlaylist.h, src/mlt++/MltProducer.cpp, src/mlt++/MltProducer.h,
src/mlt++/MltProperties.cpp, src/mlt++/MltProperties.h,
src/mlt++/MltPushConsumer.cpp, src/mlt++/MltPushConsumer.h,
src/mlt++/MltService.cpp, src/mlt++/MltService.h, src/mlt++/MltTokeniser.cpp,
src/mlt++/MltTokeniser.h, src/mlt++/MltTractor.cpp, src/mlt++/MltTractor.h,
src/mlt++/MltTransition.cpp, src/mlt++/MltTransition.h, src/mlt++/config.h,
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,
src/swig/mlt.i: Transfer copyright of mlt++ and swig/mlt.i to Meltytech, LLC.
Also, update Charles' email address.
2015-02-03 Maksym Veremeyenko <[email protected]>
* src/modules/avformat/filter_avcolour_space.c,
src/modules/avformat/filter_swscale.c, src/modules/core/filter_crop.c,
src/modules/core/filter_rescale.c: Replace some mlt_frame_get_alpha_mask with
mlt_frame_get_alpha.
* src/framework/mlt_tractor.c, src/modules/core/filter_resize.c,
src/modules/core/transition_composite.c, src/modules/gtk2/producer_pango.c,
src/modules/gtk2/producer_pixbuf.c: Use mlt_frame_get_alpha() instead of
mlt_frame_get_alpha_mask().
* src/framework/mlt.vers, src/framework/mlt_frame.c,
src/framework/mlt_frame.h: implement mlt_frame_get_alpha
2015-02-02 Maksym Veremeyenko <[email protected]>
* src/modules/gtk2/factory.c, src/modules/gtk2/producer_pango.c,
src/modules/gtk2/producer_pango.yml: implement caching images
* src/modules/gtk2/factory.c, src/modules/gtk2/producer_pixbuf.yml: introduce
environment variable MLT_PIXBUF_PRODUCER_CACHE to increase/override number of
cached converted images
2015-02-02 Brian Matherly <[email protected]>
* src/mlt++/MltFrame.cpp, src/mlt++/MltFrame.h, src/mlt++/mlt++.vers,
src/tests/test_frame/test_frame.cpp: Add default constructor, const copy
constructor and copy operator=. The default constructor is useful to define
frame objects that will be assigned at a later time. In Mlt++, some objects
have a default constructor that initializes the underlying MLT type while
others create an invalid object. The Frame copy constructor creates an
invalid object so that empty frames can be predeclared without the expense of
initializing an empty frame only to destroy it all when it is actually
assigned to a frame. The const copy constructor duplicates the non-const
constructor, but is useful so that frames can be initialized from tempory
variables. The copy operator= is necessary so that frames can be stored in
containers. Additionally, with this change, Mlt::Frame implements "the big
three" which is a good practice.
2015-01-31 Dan Dennedy <[email protected]>
* src/modules/gtk2/producer_pixbuf.c, src/modules/qt/qimage_wrapper.cpp:
Remove unusused variable image_key.
2015-01-29 Dan Dennedy <[email protected]>
* src/mlt++/MltTractor.cpp, src/mlt++/MltTractor.h, src/mlt++/mlt++.vers: Add
Mlt::Tractor constructor that applies a Mlt::Profile.
2015-01-15 Dan Dennedy <[email protected]>
* presets/consumer/avformat/x265-medium,
presets/consumer/avformat/x265-medium-pass1: Add a couple of x265 presets.
2015-01-04 Kevin Deldycke <[email protected]>
* profiles/qhd_1440p_2398, profiles/qhd_1440p_24, profiles/qhd_1440p_25,
profiles/qhd_1440p_2997, profiles/qhd_1440p_30, profiles/qhd_1440p_50,
profiles/qhd_1440p_5994, profiles/qhd_1440p_60, profiles/uhd_2160p_2398,
profiles/uhd_2160p_24, profiles/uhd_2160p_25, profiles/uhd_2160p_2997,
profiles/uhd_2160p_30, profiles/uhd_2160p_50, profiles/uhd_2160p_5994,
profiles/uhd_2160p_60: Add 4K and 2.5K profiles.
2014-12-19 Brian Matherly <[email protected]>
* src/modules/plus/producer_count.c, src/modules/plus/producer_count.yml: Add
non-drop-frame support. Also, use mlt_properties_get_time() instead of
calculating the timecode manually.
2014-12-16 Brian Matherly <[email protected]>
* src/modules/qt/Makefile, src/modules/qt/configure,
src/modules/qt/factory.c: Allow building qt module without OpenGL.
2014-12-16 Brian Matherly <[email protected]>
* src/modules/core/Makefile, src/modules/core/factory.c,
src/modules/core/producer_tone.c, src/modules/core/producer_tone.yml: Add new
audio tone producer.
2014-12-12 Brian Matherly <[email protected]>
* src/modules/xml/consumer_xml.c, src/modules/xml/consumer_xml.yml: Add
support for smpte_ndf to consumer_xml.
* src/framework/mlt_property.c, src/framework/mlt_types.h,
src/mlt++/MltProducer.h, src/mlt++/MltProperties.h,
src/modules/core/filter_data_show.c, src/modules/plus/filter_dynamictext.c,
src/modules/plus/filter_dynamictext.yml, src/modules/xml/consumer_xml.c,
src/tests/test_properties/test_properties.cpp: Add support for non-drop-frame
timecode.
2014-12-08 Dan Dennedy <[email protected]>
* src/framework/mlt_tractor.c, src/modules/avformat/producer_avformat.c,
src/modules/core/producer_consumer.c: Fix audio and huge memory leak using
consumer producer. (SF-221) This would occur when the output frame rate is
less than the project frame rate. The problem was that the avformat producer
would not produce enough samples to fulfill the consumer producer's request.
Then, the consumer producer would skip frames to reduce frame rate. That
resulted in some audio being skipped and choppy output. This also caused a
massive audio underflow in the avformat consumer. Next, while the avformat
consumer is trying maintain audio/video sync, it would accumulate video
frames in its queue causing the memory utilization to rise quickly.
2014-12-05 Brian Matherly <[email protected]>
* src/modules/core/filter_watermark.c, src/modules/plus/filter_dynamictext.c:
Second Try: Fix filters with encapsulated transitions corrupting frame
position. Filters that use an encapsulated transition were modifying the
frame position. Other filters that rely on the frame position would get an
incorrect value. Test case: melt -producer frei0r.test_pat_B -filter wave
-filter watermark:"+hi.txt" in=200 out=400 At frame 200 the wave would "jump"
because the wave phase is calculated from frame position which gets modified
by the watermark filter.
2014-12-02 Brian Matherly <[email protected]>
* src/modules/core/filter_watermark.c, src/modules/plus/filter_dynamictext.c:
Fix filters with encapsulated transitions corrupting frame position. Filters
that use an encapsulated transition were modifying the frame position. Other
filters that rely on the frame position would get an incorrect value. Test
case: melt -producer frei0r.test_pat_B -filter wave -filter
watermark:"+hi.txt" in=200 out=400 At frame 200 the wave would "jump" because
the wave phase is calculated from frame position which gets modified by the
watermark filter.
2014-11-24 Maksym Veremeyenko <[email protected]>
* src/framework/mlt.vers, src/framework/mlt_pool.c, src/framework/mlt_pool.h:
Implement mlt_pool_stat.
2014-11-15 Dan Dennedy <[email protected]>
* src/modules/xml/consumer_xml.c, src/modules/xml/consumer_xml.yml: Add an
option to not output the root attribute.
2014-11-04 Dan Dennedy <[email protected]>
* src/modules/oldfilm/filter_dust.yml, src/modules/oldfilm/filter_grain.yml,
src/modules/oldfilm/filter_oldfilm.yml, src/swig/ruby/metadata.rb: Changes to
YAML and metadata.rb to make ruby 1.9.3 happy. The Ruby YAML parser does not
like percent sign in double-quotes - probably trying to expand it or
something.
2014-11-03 Dan Dennedy <[email protected]>
* README, docs/framework.txt, docs/melt.1, docs/melt.txt, docs/mlt-xml.txt,
src/framework/mlt.h, src/framework/mlt_animation.c,
src/framework/mlt_animation.h, src/framework/mlt_cache.c,
src/framework/mlt_cache.h, src/framework/mlt_consumer.c,
src/framework/mlt_consumer.h, src/framework/mlt_deque.c,
src/framework/mlt_deque.h, src/framework/mlt_events.c,
src/framework/mlt_events.h, src/framework/mlt_factory.c,
src/framework/mlt_factory.h, src/framework/mlt_field.c,
src/framework/mlt_field.h, src/framework/mlt_filter.c,
src/framework/mlt_filter.h, src/framework/mlt_frame.c,
src/framework/mlt_frame.h, src/framework/mlt_geometry.c,
src/framework/mlt_geometry.h, src/framework/mlt_log.c,
src/framework/mlt_log.h, src/framework/mlt_multitrack.c,
src/framework/mlt_multitrack.h, src/framework/mlt_parser.c,
src/framework/mlt_parser.h, src/framework/mlt_playlist.c,
src/framework/mlt_playlist.h, src/framework/mlt_pool.c,
src/framework/mlt_pool.h, src/framework/mlt_producer.c,
src/framework/mlt_producer.h, src/framework/mlt_profile.c,
src/framework/mlt_profile.h, src/framework/mlt_properties.c,
src/framework/mlt_properties.h, src/framework/mlt_property.c,
src/framework/mlt_property.h, src/framework/mlt_repository.c,
src/framework/mlt_repository.h, src/framework/mlt_service.c,
src/framework/mlt_service.h, src/framework/mlt_tokeniser.c,
src/framework/mlt_tokeniser.h, src/framework/mlt_tractor.c,
src/framework/mlt_tractor.h, src/framework/mlt_transition.c,
src/framework/mlt_transition.h, src/framework/mlt_types.h,
src/framework/mlt_version.c, src/framework/mlt_version.h, src/melt/io.c,
src/melt/io.h, src/melt/melt.c, src/modules/avformat/consumer_avformat.c,
src/modules/avformat/consumer_avformat.yml, src/modules/avformat/factory.c,
src/modules/avformat/filter_avcolour_space.c,
src/modules/avformat/filter_avdeinterlace.c,
src/modules/avformat/filter_avresample.c,
src/modules/avformat/filter_swscale.c,
src/modules/avformat/producer_avformat.c,
src/modules/avformat/producer_avformat.yml, src/modules/avformat/vdpau.c,
src/modules/core/composite_line_yuv_sse2_simple.c,
src/modules/core/consumer_multi.c, src/modules/core/consumer_multi.yml,
src/modules/core/consumer_null.c, src/modules/core/factory.c,
src/modules/core/filter_audiochannels.c,
src/modules/core/filter_audioconvert.c, src/modules/core/filter_audiowave.c,
src/modules/core/filter_audiowave.yml, src/modules/core/filter_brightness.c,
src/modules/core/filter_brightness.yml,
src/modules/core/filter_channelcopy.c,
src/modules/core/filter_channelcopy.yml, src/modules/core/filter_crop.c,
src/modules/core/filter_crop.yml, src/modules/core/filter_data_feed.c,
src/modules/core/filter_data_show.c, src/modules/core/filter_data_show.yml,
src/modules/core/filter_fieldorder.c, src/modules/core/filter_fieldorder.yml,
src/modules/core/filter_gamma.c, src/modules/core/filter_gamma.yml,
src/modules/core/filter_greyscale.c, src/modules/core/filter_greyscale.yml,
src/modules/core/filter_imageconvert.c, src/modules/core/filter_luma.c,
src/modules/core/filter_luma.yml, src/modules/core/filter_mirror.c,
src/modules/core/filter_mirror.yml, src/modules/core/filter_mono.c,
src/modules/core/filter_mono.yml, src/modules/core/filter_obscure.c,
src/modules/core/filter_obscure.yml, src/modules/core/filter_panner.c,
src/modules/core/filter_panner.yml, src/modules/core/filter_region.c,
src/modules/core/filter_region.yml, src/modules/core/filter_rescale.c,
src/modules/core/filter_rescale.yml, src/modules/core/filter_resize.c,
src/modules/core/filter_resize.yml, src/modules/core/filter_transition.c,
src/modules/core/filter_transition.yml, src/modules/core/filter_watermark.c,
src/modules/core/filter_watermark.yml, src/modules/core/producer_colour.c,
src/modules/core/producer_colour.yml, src/modules/core/producer_consumer.c,
src/modules/core/producer_consumer.yml, src/modules/core/producer_hold.c,
src/modules/core/producer_hold.yml, src/modules/core/producer_loader.c,
src/modules/core/producer_loader.yml, src/modules/core/producer_melt.c,
src/modules/core/producer_melt.yml, src/modules/core/producer_melt_file.yml,
src/modules/core/producer_noise.c, src/modules/core/producer_noise.yml,
src/modules/core/transition_composite.c,
src/modules/core/transition_composite.h,
src/modules/core/transition_composite.yml,
src/modules/core/transition_luma.c, src/modules/core/transition_luma.yml,
src/modules/core/transition_matte.c, src/modules/core/transition_matte.yml,
src/modules/core/transition_mix.c, src/modules/core/transition_mix.yml,
src/modules/core/transition_region.c, src/modules/core/transition_region.h,
src/modules/core/transition_region.yml, src/modules/dv/consumer_libdv.c,
src/modules/dv/consumer_libdv.yml, src/modules/dv/factory.c,
src/modules/dv/producer_libdv.c, src/modules/dv/producer_libdv.yml,
src/modules/gtk2/consumer_gtk2.c, src/modules/gtk2/consumer_gtk2_preview.yml,
src/modules/gtk2/factory.c, src/modules/gtk2/filter_rescale.c,
src/modules/gtk2/filter_rescale.yml, src/modules/gtk2/pixops.c,
src/modules/gtk2/pixops.h, src/modules/gtk2/producer_pango.c,
src/modules/gtk2/producer_pango.yml, src/modules/gtk2/producer_pixbuf.c,
src/modules/gtk2/producer_pixbuf.yml,
src/modules/gtk2/scale_line_22_yuv_mmx.S,
src/modules/jackrack/consumer_jack.c, src/modules/jackrack/consumer_jack.yml,
src/modules/jackrack/factory.c, src/modules/jackrack/filter_jackrack.c,
src/modules/jackrack/filter_jackrack.yml,
src/modules/jackrack/filter_ladspa.c, src/modules/jackrack/filter_ladspa.yml,
src/modules/jackrack/jack_rack.c, src/modules/jackrack/jack_rack.h,
src/modules/jackrack/lock_free_fifo.c, src/modules/jackrack/lock_free_fifo.h,
src/modules/jackrack/plugin.c, src/modules/jackrack/plugin.h,
src/modules/jackrack/plugin_desc.c, src/modules/jackrack/plugin_desc.h,
src/modules/jackrack/plugin_mgr.c, src/modules/jackrack/plugin_mgr.h,
src/modules/jackrack/plugin_settings.c,
src/modules/jackrack/plugin_settings.h, src/modules/jackrack/process.c,
src/modules/jackrack/process.h, src/modules/jackrack/producer_ladspa.c,
src/modules/jackrack/producer_ladspa.yml, src/modules/kino/factory.c,
src/modules/kino/kino_wrapper.cc, src/modules/kino/kino_wrapper.h,
src/modules/kino/producer_kino.c, src/modules/lumas/luma.c,
src/modules/normalize/factory.c, src/modules/normalize/filter_volume.c,
src/modules/normalize/filter_volume.yml, src/modules/plus/factory.c,
src/modules/plus/filter_affine.c, src/modules/plus/filter_affine.yml,
src/modules/plus/filter_charcoal.c, src/modules/plus/filter_charcoal.yml,
src/modules/plus/filter_dynamictext.c,
src/modules/plus/filter_dynamictext.yml, src/modules/plus/filter_invert.c,
src/modules/plus/filter_invert.yml, src/modules/plus/filter_sepia.c,
src/modules/plus/filter_sepia.yml, src/modules/plus/transition_affine.c,
src/modules/plus/transition_affine.yml, src/modules/resample/factory.c,
src/modules/resample/filter_resample.c,
src/modules/resample/filter_resample.yml, src/modules/sdl/consumer_sdl.c,
src/modules/sdl/consumer_sdl.yml, src/modules/sdl/consumer_sdl_audio.c,
src/modules/sdl/consumer_sdl_audio.yml, src/modules/sdl/consumer_sdl_osx.h,
src/modules/sdl/consumer_sdl_osx.m, src/modules/sdl/consumer_sdl_preview.c,
src/modules/sdl/consumer_sdl_preview.yml,
src/modules/sdl/consumer_sdl_still.c, src/modules/sdl/consumer_sdl_still.yml,
src/modules/sdl/factory.c, src/modules/sdl/producer_sdl_image.c,
src/modules/sdl/producer_sdl_image.yml, src/modules/sox/factory.c,
src/modules/sox/filter_sox.c, src/modules/sox/filter_sox.yml,
src/modules/sox/filter_sox_effect.yml, src/modules/vorbis/factory.c,
src/modules/vorbis/producer_vorbis.c, src/modules/vorbis/producer_vorbis.yml,
src/modules/xine/factory.c, src/modules/xine/filter_deinterlace.c,
src/modules/xml/consumer_xml.c, src/modules/xml/consumer_xml.yml,
src/modules/xml/factory.c, src/modules/xml/producer_xml-nogl.yml,
src/modules/xml/producer_xml-string.yml, src/modules/xml/producer_xml.c,
src/modules/xml/producer_xml.yml, src/win32/win32.c: Transfer Ushodaya
copyrights to Meltytech, LLC. On September 30, 2014, Ushodaya Enterprises
Limited assigned copyright to Daniel Dennedy, acting on behalf of Meltytech,
LLC.
2014-11-02 Jean-Baptiste Mardelle <[email protected]>
* src/modules/gtk2/configure, src/modules/qt/configure: print message when
libexif is missing on configure
2014-10-30 Dan Dennedy <[email protected]>
* src/modules/plus/filter_dynamictext.c,
src/modules/plus/filter_dynamictext.yml: Add localtime keyword to dynamictext
filter.
2014-10-20 Janne Liljeblad <[email protected]>
* src/modules/plus/Makefile, src/modules/plus/factory.c,
src/modules/plus/filter_lumakey.c, src/modules/plus/filter_lumakey.yml: Add
Luma Key filter
2014-10-04 Dan Dennedy <[email protected]>
* src/modules/avformat/Makefile, src/modules/avformat/producer_avformat.c:
Revert 279ebd to prevent integer overflow for duration calculation. The
integer math could easily overflow with large number for profile-
auto-profile. To address the Maksym's concern, rounding was added.
2014-10-02 Dan Dennedy <[email protected]>
* src/framework/mlt_factory.c, src/framework/mlt_factory.h: Ignore
MLT_REPOSITORY env var on Windows and RELOCATABLE Darwin builds.
2014-10-01 Markus Elfring <[email protected]>
* coccinelle/delete_if4.cocci, src/framework/mlt_pool.c: Remove an
unnecessary null check in mlt_pool. (SF-216)
2014-09-27 Dan Dennedy <[email protected]>
* src/modules/avformat/consumer_avformat.c,
src/modules/avformat/producer_avformat.c: Use av_frame_alloc() instead of
deprecated avcodec_alloc_frame().
* src/modules/avformat/consumer_avformat.c, src/modules/avformat/factory.c,
src/modules/avformat/filter_avresample.c,
src/modules/avformat/producer_avformat.c: Drop support for FFmpeg < v1.0 and
Libav < v9.
2014-09-22 Dan Dennedy <[email protected]>
* src/modules/avformat/consumer_avformat.c,
src/modules/avformat/producer_avformat.c: Fix a couple of compiler warnings
in avformat unrelated to API.
2014-09-22 Jean-Baptiste Mardelle <[email protected]>
* src/modules/qt/kdenlivetitle_wrapper.cpp,
src/modules/qt/producer_kdenlivetitle.c: Fix initialization of aspect ratio
and meta.media.width/height
2014-09-21 Dan Dennedy <[email protected]>
* presets/consumer/avformat/MJPEG, presets/consumer/avformat/lossless/MJPEG:
threads=1 is no longer needed for MJPEG.
* src/mlt++/Mlt.h, src/mlt++/MltConsumer.h, src/mlt++/MltDeque.h,
src/mlt++/MltEvent.h, src/mlt++/MltFactory.h, src/mlt++/MltField.h,
src/mlt++/MltFilter.h, src/mlt++/MltFilteredConsumer.h,
src/mlt++/MltFilteredProducer.h, src/mlt++/MltFrame.h,
src/mlt++/MltGeometry.h, src/mlt++/MltMultitrack.h, src/mlt++/MltParser.h,
src/mlt++/MltPlaylist.h, src/mlt++/MltProducer.h, src/mlt++/MltProfile.h,
src/mlt++/MltProperties.h, src/mlt++/MltRepository.h, src/mlt++/MltService.h,
src/mlt++/MltTokeniser.h, src/mlt++/MltTractor.h, src/mlt++/MltTransition.h,
src/mlt++/config.h: Fix reserved identifiers for include guards in mlt++.
(SF-215)
* src/framework/mlt.h, src/framework/mlt_cache.h,
src/framework/mlt_consumer.h, src/framework/mlt_deque.h,
src/framework/mlt_events.h, src/framework/mlt_factory.h,
src/framework/mlt_field.h, src/framework/mlt_filter.h,
src/framework/mlt_frame.h, src/framework/mlt_geometry.h,
src/framework/mlt_multitrack.h, src/framework/mlt_parser.h,
src/framework/mlt_playlist.h, src/framework/mlt_pool.h,
src/framework/mlt_producer.h, src/framework/mlt_profile.h,
src/framework/mlt_properties.h, src/framework/mlt_property.h,
src/framework/mlt_repository.h, src/framework/mlt_service.h,
src/framework/mlt_tokeniser.h, src/framework/mlt_tractor.h,
src/framework/mlt_transition.h, src/framework/mlt_types.h,
src/framework/mlt_version.h: Fix reserved identifiers for include guards in
framework. (SF-215)
2014-09-20 Dan Dennedy <[email protected]>
* Doxyfile, src/framework/mlt_factory.c, src/framework/mlt_factory.h,
src/framework/mlt_profile.h: Add a dedicated page to doxygen docs for
environment variables.
* src/framework/mlt_factory.c, src/framework/mlt_properties.c,
src/framework/mlt_repository.c: Refactor handling MLT_PRESETS_PATH
environment var.
2014-09-20 Markus Elfring <[email protected]>
* src/modules/kino/filehandler.cc, src/modules/qt/qimage_wrapper.cpp: Bug
#MLT-216: Removal of unnecessary checks before a few calls of the C++ delete
operator The C++ delete operator can also handle passed null pointers on its
own without unexpected side effects.
http://www.parashift.com/c++-faq/delete-handles-null.html It is therefore
not needed to keep additional safety checks directly before such function
calls.
* src/framework/mlt_animation.c, src/framework/mlt_consumer.c,
src/framework/mlt_geometry.c, src/framework/mlt_profile.c,
src/framework/mlt_properties.c, src/framework/mlt_property.c,
src/melt/melt.c, src/modules/avformat/producer_avformat.c,
src/modules/avformat/vdpau.c, src/modules/core/consumer_multi.c,
src/modules/gtk2/producer_pixbuf.c, src/modules/linsys/consumer_SDIstream.c,
src/modules/plus/transition_affine.c, src/modules/plusgpl/cJSON.c,
src/modules/videostab/filter_videostab.c,
src/modules/videostab/filter_videostab2.c, src/modules/videostab/stabilize.c,
src/modules/videostab/tlist.c, src/modules/vorbis/producer_vorbis.c,
src/modules/xml/producer_xml.c: Bug #MLT-216: Deletion of unnecessary checks
before specific function calls A couple of functions perform input parameter
validation before their implementations will try further actions with side
effects. Some calling functions perform similar safety checks. Functions
which release a system resource are occasionally documented in the way that
they tolerate the passing of a null pointer for example. There is not a need
because of this fact that a function caller repeats a corresponding check. A
previously added semantic patch approach suggested the changes that are shown
here.
2014-09-08 Dan Dennedy <[email protected]>
* src/framework/mlt_playlist.c, src/framework/mlt_producer.c: Fix LC_NUMERIC
for a couple of nested services (shotcut-36)
2014-09-07 Dan Dennedy <[email protected]>
* src/mlt++/MltProfile.cpp, src/mlt++/MltProfile.h, src/mlt++/mlt++.vers: Add
Mlt::Profile::set_display_aspect().
2014-09-03 Brian Matherly <[email protected]>
* src/modules/core/filter_brightness.yml,
src/modules/core/filter_watermark.yml, src/modules/core/producer_loader.yml,
src/modules/core/transition_composite.yml,
src/modules/normalize/filter_volume.yml, src/modules/plus/filter_rgblut.c,
src/modules/plus/filter_rgblut.yml: Don't use "unset" for parameters that are
not set by default. Exclude the "default" tag altogether instead.
2014-09-02 Brian Matherly <[email protected]>
* src/modules/normalize/filter_volume.c,
src/modules/normalize/filter_volume.yml: Change level parameter to be in
units of dB.
2014-09-01 Dan Dennedy <[email protected]>
* src/modules/avformat/factory.c, src/modules/avformat/producer_avformat.yml:
Add MLT_AVFORMAT_PRODUCER_CACHE environment variable.
2014-08-27 Dan Dennedy <[email protected]>
* src/framework/mlt_factory.c, src/framework/mlt_factory.h: Improve dox for
mlt_factory_producer().
2014-08-25 Andreas Cadhalpun <[email protected]>
* src/modules/avformat/Makefile, src/modules/avformat/configure: Use
pkg-config to determine FFmpeg linker flags. Use 'pkg-config --libs' instead
of 'pkg-config --libs-only-L'.
2014-08-24 Dan Dennedy <[email protected]>
* src/modules/core/filter_brightness.c,
src/modules/core/filter_brightness.yml: Add keyframable alpha property to
brightness filter.
2014-08-19 Dan Dennedy <[email protected]>
* presets/consumer/avformat/WMA, presets/consumer/avformat/WMV: Add WMV and
WMA encode presets for Windows Media Player.
* src/modules/plus/transition_affine.c,
src/modules/plus/transition_affine.yml: Add halign and valign properties to
affine.
2014-08-17 Dan Dennedy <[email protected]>
* src/modules/plus/transition_affine.c,
src/modules/plus/transition_affine.yml: Add fill property to affine.
* src/modules/plus/filter_affine.yml, src/modules/plus/transition_affine.yml:
Document the affine filter and transition.
2014-07-24 Dan Dennedy <[email protected]>
* src/modules/avformat/consumer_avformat.c,
src/modules/avformat/producer_avformat.c,
src/modules/avformat/producer_avformat.yml: Add support for color_trc
handling to avformat module.
* src/framework/mlt_consumer.c, src/framework/mlt_frame.h,
src/framework/mlt_tractor.c, src/framework/mlt_transition.c,
src/modules/core/consumer_multi.c: Add support for color_trc (transfer
characteristic) to framework. Frames and consumers can now have a color_trc
property. Setting color_trc on the consumer propogates to a
consumer_color_trc property on the frame.
2014-07-20 Dan Dennedy <[email protected]>
* src/modules/avformat/filter_avcolour_space.c,
src/modules/avformat/producer_avformat.c: Cleanup full range YUV handling.
In FFmpeg v2.3, calling sws_setColorspaceDetails() after sws_getContext() for
YUV conversions works as desired. Now, we can also get rid of the swscale
deprecated pixel format warnings. Based on patches by Loic Guibert <lfdummy-
2014-07-13 Dan Dennedy <[email protected]>
* configure, src/framework/mlt_version.h: Set interim version to 0.9.3.
2014-06-29 Dan Dennedy <[email protected]>
* Doxyfile, configure, docs/melt.1, src/framework/mlt_version.h: Set version
to 0.9.2.
2014-06-27 Maksym Veremeyenko <[email protected]>
* src/modules/core/Makefile, src/modules/core/factory.c,
src/modules/core/transition_matte.c, src/modules/core/transition_matte.yml:
Add matte transition.
2014-06-02 Dan Dennedy <[email protected]>
* src/modules/videostab/filter_videostab.yml,
src/modules/videostab/filter_videostab2.yml: Document the videostab module as
deprecated. This does not remove from the build process because we want to
continue to support legacy projects especially Kdenlive. However, now
documentation lets people know to use vidstab instead.
* src/modules/Makefile, src/modules/configure,
src/modules/dv/consumer_libdv.yml, src/modules/dv/deprecated,
src/modules/dv/producer_libdv.yml, src/modules/kino/deprecated,
src/modules/vorbis/deprecated, src/modules/vorbis/producer_vorbis.yml:
Deprecate the dv, kino, and vorbis modules. They are removed from the normal
configure & make build process, but they are still easy to build manually if
needed, e.g.: make -C src/
* src/modules/core/Makefile, src/modules/core/factory.c,
src/modules/core/producer_ppm.c: Remove the ppm pipe producer. No one uses
this, and it is problematic to support. It was mainly used in very early
development before avformat module was any good and smilutils was still
maintained and in use.
* src/modules/core/filter_transition.yml, src/modules/core/producer_hold.yml,
src/modules/core/producer_melt_file.yml: Finish documenting transition filter
and hold and melt file producers.
* src/modules/core/consumer_null.c, src/modules/core/filter_mirror.c,
src/modules/core/producer_consumer.c, src/modules/core/producer_hold.c,
src/modules/core/producer_noise.c, src/modules/core/producer_ppm.c,
src/modules/core/transition_luma.c, src/modules/core/transition_mix.c: Remove
usage of "this" as a variable name in core module.
2014-05-24 Dan Dennedy <[email protected]>
* src/modules/gtk2/producer_pango.c, src/modules/qt/producer_kdenlivetitle.c,
src/modules/qt/producer_qtext.cpp: Fix file names with ext. chars on Windows
for text producers.
* src/modules/core/transition_composite.c,
src/modules/core/transition_luma.c: Fix file names with ext. chars on Windows
for luma files.
2014-05-18 Dan Dennedy <[email protected]>
* src/modules/xml/consumer_xml.c, src/modules/xml/producer_xml.c: Fix file
names with ext. chars on Windows for xml module.
* src/framework/mlt_properties.c, src/mlt++/MltProperties.cpp: Fix file names
with exts chars on Windows for mlt_properties.
* src/framework/Makefile, src/framework/mlt.vers,
src/framework/mlt_properties.c, src/framework/mlt_properties.h,
src/framework/mlt_util.c, src/framework/mlt_util.h,
src/modules/avformat/producer_avformat.c: Move from_utf8 function into
mlt_properties; remove mlt_util.
* src/framework/Makefile, src/framework/mlt.vers, src/framework/mlt_util.c,
src/framework/mlt_util.h, src/win32/win32.c: Add mlt_util API with
mlt_util_from_utf8(). This will be used for converting a text encoding from
a standard MLT internal string encoding of UTF-8 into other encodings - on
Windows only initially.
2014-05-07 Dan Dennedy <[email protected]>
* src/modules/plusgpl/Makefile, src/modules/plusgpl/consumer_cbrts.c: Fix
cbrts build on Windows.
2014-05-06 Dan Dennedy <[email protected]>
* src/modules/plusgpl/Makefile, src/modules/plusgpl/consumer_cbrts.c,
src/modules/plusgpl/consumer_cbrts.yml, src/modules/plusgpl/factory.c: Add
cbrts consumer. See
http://www.mltframework.org/bin/view/MLT/ConsumerCbrtsMore
2014-04-26 Janne Liljeblad <[email protected]>
* src/modules/core/filter_channelcopy.c, src/modules/core/filter_data_feed.c,
src/modules/core/filter_data_show.c: Clean up channel_copy, data_feed and
data_show
2014-04-16 Dan Dennedy <[email protected]>
* src/modules/kdenlive/filter_boxblur.yml,
src/modules/kdenlive/filter_wave.yml: Improve service metadata/documentation
for boxblur filter.
2014-04-15 Janne Liljeblad <[email protected]>
* src/modules/kdenlive/filter_boxblur.c, src/modules/kdenlive/filter_wave.c:
Add animated property wave to filter wave, minor boxblur cleanups
* src/modules/kdenlive/filter_boxblur.c,
src/modules/kdenlive/filter_boxblur.yml: Add animated property blur to
boxblur
* src/modules/core/filter_panner.c, src/modules/core/filter_panner.yml: Add
animated property split to panner
2014-04-08 Dan Dennedy <[email protected]>
* src/modules/core/filter_brightness.yml,
src/modules/normalize/filter_volume.yml,
src/modules/plusgpl/filter_lumaliftgaingamma.yml: Fix YAML validation errors:
double => float.
2014-04-08 Janne Liljeblad <[email protected]>
* src/modules/normalize/filter_volume.c,
src/modules/normalize/filter_volume.yml: Add animated property level to
filter volume
2014-04-08 Steinar H. Gunderson <[email protected]>
* src/modules/opengl/filter_movit_convert.cpp,
src/modules/opengl/mlt_movit_input.cpp, src/modules/opengl/mlt_movit_input.h:
Convert on CPU if we are asked to finalize an empty Movit chain. This fixes
an issue with interlaced content and no resize or other normalizers in actual
use.
2014-04-05 Dan Dennedy <[email protected]>
* src/modules/opengl/filter_movit_blur.cpp,
src/modules/opengl/filter_movit_convert.cpp,
src/modules/opengl/filter_movit_crop.cpp,
.../opengl/filter_movit_deconvolution_sharpen.cpp,
src/modules/opengl/filter_movit_diffusion.cpp,
src/modules/opengl/filter_movit_glow.cpp,
src/modules/opengl/filter_movit_lift_gamma_gain.cpp,
src/modules/opengl/filter_movit_opacity.cpp,
src/modules/opengl/filter_movit_resample.cpp,
src/modules/opengl/filter_movit_resize.cpp,
src/modules/opengl/filter_movit_saturation.cpp,
src/modules/opengl/filter_movit_vignette.cpp,
src/modules/opengl/filter_movit_white_balance.cpp,
src/modules/opengl/transition_movit_luma.cpp,
src/modules/opengl/transition_movit_mix.cpp: Hide the movit.parms properties
from serialization. These properties were adding unncessary noise in the XML
output.
2014-04-04 Dan Dennedy <[email protected]>
* src/framework/mlt_frame.c, src/modules/core/producer_colour.c,
src/modules/gtk2/producer_pixbuf.c, src/modules/opengl/filter_movit_crop.cpp,
src/modules/qt/qimage_wrapper.cpp: Fix crashing when using opengl services
with wrapper producers. Steinar reported crashing in Kdenlive when using the
framebuffer producer due to movit.crop changing the format to mlt_image_none.
Removing that required making other components handle requests with format =
mlt_image_none.
2014-04-01 Dan Dennedy <[email protected]>
* src/modules/qt/Makefile, src/modules/qt/common.cpp,
src/modules/qt/common.h, src/modules/qt/consumer_qglsl.cpp,
src/modules/qt/kdenlivetitle_wrapper.cpp, src/modules/qt/producer_qtext.cpp,
src/modules/qt/qimage_wrapper.cpp, src/modules/qt/transition_vqm.cpp:
Refactor QApplication creation and fix lifetime of its args.
2014-03-27 Brian Matherly <[email protected]>
* src/modules/gtk2/Makefile, src/modules/gtk2/configure,
src/modules/gtk2/factory.c, src/modules/gtk2/producer_pixbuf.c,
src/modules/kino/Makefile, src/modules/kino/avi.cc,
src/modules/kino/configure, src/modules/kino/filehandler.cc,
src/modules/kino/kino_wrapper.cc, src/modules/kino/riff.cc,
src/modules/opengl/Makefile, src/modules/qt/Makefile,
src/modules/qt/configure, src/modules/qt/qimage_wrapper.h: Avoid unnecessary
compilation when running "./configure; make; make install" multiple times.
2014-03-25 Brian Matherly <[email protected]>
* src/modules/plus/Makefile, src/modules/plus/factory.c,
src/modules/plus/filter_lift_gamma_gain.c,
src/modules/plus/filter_lift_gamma_gain.yml: Add lift_gamma_gain filter.
This filter is equivalent to the movit.lift_gamma_gain filter but does not
depend on opengl/movit.
2014-03-25 Dan Dennedy <[email protected]>
* src/modules/opengl/Makefile, src/modules/opengl/factory.c,
src/modules/opengl/filter_glsl_manager.cpp,
src/modules/opengl/filter_glsl_manager.h,
src/modules/opengl/filter_movit_convert.cpp,
src/modules/opengl/transition_movit_luma.cpp,
src/modules/opengl/transition_movit_luma.yml: Add movit.luma transition.
This can be improved by adding an invert parameter to the Movit effect and by
supplying full 16-bit PGM to the Movit input, but it is a start.
2014-03-24 Dan Dennedy <[email protected]>
* src/modules/core/transition_composite.c,
src/modules/core/transition_luma.c, src/modules/dv/consumer_libdv.c,
src/modules/vmfx/producer_pgm.c, src/modules/vorbis/producer_vorbis.c: Fix
reading binary files on Windows.
2014-03-22 Dan Dennedy <[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 mlt_playlist_mix_in() and
mlt_playlist_mix_out(). These are new alternatives to mlt_playlist_mix()
that Shotcut is using.
2014-03-17 Janne Liljeblad <[email protected]>
* src/modules/core/filter_brightness.c,
src/modules/core/filter_brightness.yml: Add animated level parameter to
brightness
2014-02-26 Dan Dennedy <[email protected]>
* src/framework/mlt_properties.c, src/framework/mlt_property.c,
src/framework/mlt_property.h: Implement LC_NUMERIC handling for non-glibc and
non-Darwin OS.
2014-02-24 Dan Dennedy <[email protected]>
* presets/filter/movit.opacity/fade_in,
presets/filter/movit.opacity/fade_in_out,
presets/filter/movit.opacity/fade_out: Add some movit.opacity presets for
fading.
* src/modules/opengl/filter_movit_opacity.cpp,
src/modules/opengl/filter_movit_opacity.yml: Add alpha property to
movit.opacity filter.
2014-02-24 Janne Liljeblad <[email protected]>
* src/modules/plusgpl/Makefile, src/modules/plusgpl/factory.c,
src/modules/plusgpl/filter_lumaliftgaingamma.c,
src/modules/plusgpl/filter_lumaliftgaingamma.yml: Add lumaliftgaingamma
filter to plusgpl
2014-02-19 Dan Dennedy <[email protected]>
* src/modules/avformat/filter_avcolour_space.c,
src/modules/avformat/producer_avformat.c: Fix YUV to RGB conversion when
profile colorspace not 601. The non-default coefficients for RGB cause
incorrect conversion. Reported by Claus R. F. Overbeck on the kdenlive-devel
mailing list.
2014-02-17 Dan Dennedy <[email protected]>
* src/modules/decklink/consumer_decklink.cpp,
src/modules/decklink/producer_decklink.cpp: Fix compiler warnings due to
non-virtual destructors.
2014-02-16 Dan Dennedy <[email protected]>