forked from mltframework/mlt
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathChangeLog
9267 lines (7137 loc) · 431 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
2013-06-02 Dan Dennedy <[email protected]>
* Doxyfile, configure, docs/melt.1, src/framework/mlt_version.h: Set version
to 0.9.0.
* src/modules/opengl/filter_glsl_manager.cpp,
src/modules/opengl/glsl_manager.h: Fix tiny memory leak in GlslManager
(coverity-1026795).
* src/framework/mlt.h, src/framework/mlt_animation.c,
src/framework/mlt_animation.h, src/framework/mlt_geometry.c,
src/framework/mlt_geometry.h: Indicate mlt_geometry is deprecated in API
docs.
2013-06-01 Dan Dennedy <[email protected]>
* src/modules/opengl/filter_movit_rect.cpp,
src/modules/opengl/filter_movit_rect.yml,
src/modules/opengl/filter_movit_resize.cpp: Convert movit.rect to mlt_rect.
2013-05-31 Dan Dennedy <[email protected]>
* .../opengl/filter_deconvolution_sharpen.cpp,
.../opengl/filter_deconvolution_sharpen.yml,
src/modules/opengl/filter_lift_gamma_gain.cpp,
src/modules/opengl/filter_lift_gamma_gain.yml,
src/modules/opengl/filter_movit_diffusion.cpp,
src/modules/opengl/filter_movit_diffusion.yml,
src/modules/opengl/filter_movit_glow.cpp,
src/modules/opengl/filter_movit_glow.yml,
src/modules/opengl/filter_movit_opacity.cpp,
src/modules/opengl/filter_movit_opacity.yml,
src/modules/opengl/filter_movit_saturation.cpp,
src/modules/opengl/filter_movit_saturation.yml,
src/modules/opengl/filter_movit_vignette.cpp,
src/modules/opengl/filter_movit_vignette.yml,
src/modules/opengl/filter_white_balance.cpp,
src/modules/opengl/filter_white_balance.yml,
src/modules/opengl/transition_movit_mix.cpp,
src/modules/opengl/transition_movit_mix.yml: Add property animation to the
other movit services.
* presets/filter/movit.blur/blur_in, presets/filter/movit.blur/blur_in_out,
presets/filter/movit.blur/blur_out: Add animated movit.blur presets.
* src/modules/opengl/filter_movit_blur.cpp,
src/modules/opengl/filter_movit_blur.yml: Add property animation to
movit.blur filter.
* src/framework/mlt_properties.c, src/framework/mlt_property.c: Compile fixes
for Windows after merging animation branch.
* src/framework/mlt_properties.c, src/mlt++/mlt++.vers: Compile fixes for
Linux after merging animation branch.
2013-05-30 Dan Dennedy <[email protected]>
* src/framework/mlt_animation.c, src/framework/mlt_animation.h,
src/framework/mlt_frame.c, src/framework/mlt_frame.h,
src/framework/mlt_properties.c, src/framework/mlt_properties.h,
src/framework/mlt_property.c, src/framework/mlt_property.h,
src/framework/mlt_types.h: Various documentation and copyright fixes and
updates.
* src/framework/mlt_animation.c, src/framework/mlt_animation.h: Document the
new mlt_animation API.
* src/framework/mlt_properties.c, src/framework/mlt_property.c,
src/framework/mlt_types.h: Document the property animation, rect, and color
additions.
* 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/framework/mlt_types.h: Add
mlt_properties_get_animation(); it might come in handy.
* src/framework/mlt_properties.c, src/framework/mlt_properties.h,
src/mlt++/MltProperties.cpp, src/mlt++/MltProperties.h, src/mlt++/mlt++.vers,
src/tests/test_properties/test_properties.cpp: Add
mlt_properties_set_color().
2013-05-29 Dan Dennedy <[email protected]>
* src/framework/mlt_properties.c, src/framework/mlt_properties.h,
src/framework/mlt_property.c, src/framework/mlt_property.h,
src/mlt++/MltProperties.cpp, src/tests/test_properties/test_properties.cpp:
Reorder some property anim parameters for consistency.
* src/framework/Makefile, src/framework/mlt_animation.c,
src/framework/mlt_profile.c, src/framework/mlt_property.c,
src/mlt++/MltProperties.h, src/tests/test_properties/test_properties.cpp:
Make animation length optional. It is only really needed when using negative
time values. With some fixes for parsing negatives in time code/clock values.
2013-05-27 Dan Dennedy <[email protected]>
* src/framework/mlt_properties.c, src/framework/mlt_properties.h,
src/framework/mlt_types.h, src/mlt++/MltProperties.cpp,
src/mlt++/MltProperties.h, src/tests/test_properties/test_properties.cpp: Add
mlt_color and mlt_properties_get_color().
* src/framework/mlt_properties.c, src/framework/mlt_properties.h,
src/framework/mlt_property.c, src/framework/mlt_property.h,
src/mlt++/MltProperties.cpp, src/mlt++/MltProperties.h,
src/tests/test_properties/test_properties.cpp: Add
mlt_properties_anim_set/get() for string.
* src/framework/mlt_properties.c, src/framework/mlt_properties.h,
src/framework/mlt_property.c, src/mlt++/MltProperties.cpp,
src/mlt++/MltProperties.h, src/tests/test_properties/test_properties.cpp: Add
mlt_properties_anim_set/get_double().
* src/framework/mlt_properties.c, src/framework/mlt_properties.h,
src/framework/mlt_property.c, src/framework/mlt_property.h,
src/mlt++/MltProperties.cpp, src/mlt++/MltProperties.h,
src/tests/test_properties/test_properties.cpp: Rename functions with _pos to
anim_.
* src/framework/mlt_animation.c, src/framework/mlt_properties.c,
src/framework/mlt_properties.h, src/framework/mlt_property.c,
src/framework/mlt_property.h, src/mlt++/MltProperties.cpp,
src/mlt++/MltProperties.h, src/tests/test_properties/test_properties.cpp: Add
mlt_properties_set/get_rect_pos for rect animation.
2013-05-26 Dan Dennedy <[email protected]>
* src/framework/mlt_properties.c, src/framework/mlt_properties.h,
src/framework/mlt_property.c, src/framework/mlt_property.h,
src/framework/mlt_types.h, src/mlt++/MltProperties.cpp,
src/mlt++/MltProperties.h, src/tests/test_properties/test_properties.cpp: Add
mlt_rect and mlt_properties_set/get_rect.
2013-05-22 Dan Dennedy <[email protected]>
* src/framework/mlt_properties.c, src/framework/mlt_properties.h,
src/framework/mlt_property.c, src/mlt++/MltProperties.cpp,
src/mlt++/MltProperties.h, src/tests/test_properties/test_properties.cpp: Add
mlt_properties_set/get_int_pos and Properties::set/get_int.
2013-05-19 Dan Dennedy <[email protected]>
* src/framework/mlt_property.c,
src/tests/test_properties/test_properties.cpp: Interpret % after numeric
string.
* src/framework/mlt_property.c, src/framework/mlt_property.h,
src/framework/mlt_types.h, src/tests/test_properties/test_properties.cpp: Add
mlt_property_set_double_pos() and mlt_property_set_int_pos().
2013-05-18 Dan Dennedy <[email protected]>
* src/framework/mlt_animation.c, src/framework/mlt_animation.h,
src/framework/mlt_property.c, src/framework/mlt_property.h,
src/framework/mlt_types.h, src/tests/test_properties/test_properties.cpp: Add
Catmull-Rom spline smooth animation interpolation.
2013-05-17 Dan Dennedy <[email protected]>
* src/framework/mlt_property.c, src/framework/mlt_property.h,
src/tests/test_properties/test_properties.cpp: Add
mlt_property_get_double_pos() and mlt_property_get_int_pos().
2013-05-16 Dan Dennedy <[email protected]>
* src/framework/mlt_animation.c, src/framework/mlt_animation.h,
src/framework/mlt_property.c, src/tests/test_properties/test_properties.cpp:
Add support for discrete animation including strings.
* src/framework/Makefile, src/framework/mlt_animation.c,
src/framework/mlt_animation.h, src/framework/mlt_property.c,
src/framework/mlt_property.h, src/tests/test_properties/test_properties.cpp:
Add mlt_animation and mlt_property_interpolate(). mlt_property_interpolate()
only works on a scalar double property at this time.
2013-05-14 Maksym Veremeyenko <[email protected]>
* src/framework/mlt_consumer.c, src/framework/mlt_frame.c,
src/framework/mlt_types.h, src/modules/avformat/producer_avformat.c,
src/modules/avsync/consumer_blipflash.c, src/modules/core/filter_luma.c,
src/modules/dgraft/filter_telecide.c, src/modules/gtk2/producer_count.c,
src/modules/kdenlive/producer_framebuffer.c,
src/modules/xine/filter_deinterlace.c: make mlt_position type double
2013-05-22 Dan Dennedy <[email protected]>
* src/modules/avformat/producer_avformat.c,
src/modules/avformat/producer_avformat.yml: Add exit_on_disconnect property
to avformat producer.
2013-05-21 Dan Dennedy <[email protected]>
* src/modules/frei0r/Makefile, src/modules/frei0r/factory.c,
src/modules/frei0r/param_name_map.yaml,
src/modules/frei0r/param_name_map.yml: Rename frei0r param_name_map filename
and install it.
* src/modules/avformat/producer_avformat.c,
src/modules/avformat/producer_avformat.yml: Add reconnect property to
avformat producer.
2013-05-07 Dan Dennedy <[email protected]>
* src/modules/core/producer_melt.c, src/modules/rtaudio/RtAudio.cpp,
src/modules/xine/deinterlace.c, src/modules/xml/producer_xml.c: Fix some
compile warnings raised by clang.
* src/framework/mlt_consumer.c, src/framework/mlt_consumer.h: Make a bunch of
fields of mlt_consumer_s truly private.
2013-05-03 Dan Dennedy <[email protected]>
* src/framework/mlt_properties.c,
src/tests/test_properties/test_properties.cpp: Add more properties unit
tests.
2013-05-02 Dan Dennedy <[email protected]>
* src/tests/test_properties/test_properties.cpp,
src/tests/test_properties/test_properties.pro: Add more unit tests for
mlt_property.
2013-04-30 Dan Dennedy <[email protected]>
* src/tests/common.pri, src/tests/test_properties/test_properties.cpp,
src/tests/test_properties/test_properties.pro,
src/tests/test_repository/test_repository.cpp,
src/tests/test_repository/test_repository.pro, src/tests/tests.pro: Add the
start of a unit test suite using QtTest.
* src/tests/Makefile, src/tests/README, src/tests/charlie.c, src/tests/dan.c,
src/tests/dissolve.c, src/tests/hello.c, src/tests/io.c, src/tests/io.h,
src/tests/luma.c, src/tests/pango.c, src/tests/pixbuf.c, src/tests/test.png:
Remove old files in src/tests to make way for new ones.
2013-04-27 Dan Dennedy <[email protected]>
* src/framework/mlt_consumer.c, src/modules/sdl/consumer_sdl_preview.c: Fix
race condition in mlt_consumer_stop().
2013-04-25 Dan Dennedy <[email protected]>
* configure, src/framework/mlt_consumer.c, src/framework/mlt_consumer.h,
src/modules/sdl/consumer_sdl.c, src/modules/sdl/consumer_sdl_audio.c,
src/modules/sdl/consumer_sdl_preview.c: Make mlt_consumer_purge() more
thorough. (SF-187) This is applied to SDL consumers only at the moment since
that is what most applications are using. Needs to be extended to other
consumers.
2013-04-12 Dan Dennedy <[email protected]>
* configure, src/framework/mlt_version.h: Set interim version 0.8.9.
2013-04-07 Brian Matherly <[email protected]>
* src/modules/gtk2/producer_count.yml, src/modules/oldfilm/filter_dust.yml,
src/modules/oldfilm/filter_grain.yml, src/modules/oldfilm/filter_oldfilm.yml:
Misc YAML fixes
2013-04-06 Dan Dennedy <[email protected]>
* src/framework/mlt.vers, src/framework/mlt_service.c,
src/framework/mlt_service.h, src/mlt++/MltService.cpp,
src/mlt++/MltService.h, src/mlt++/mlt++.vers: Add mlt_service_move_filter()
and Mlt::Service::move_filter().
2013-04-04 Brian Matherly <[email protected]>
* src/modules/gtk2/Makefile, src/modules/gtk2/factory.c,
src/modules/gtk2/producer_count.c, src/modules/gtk2/producer_count.yml: Add
new count producer
2013-03-21 Dan Dennedy <[email protected]>
* src/modules/avformat/factory.c, src/modules/avformat/filter_avresample.c:
Restore avresample filter when build against FFmpeg. This provides a LGPL
audio resampler, but it is using deprecated APIs. Support for swresample or
libav avresampler is another project.
2013-03-20 Dan Dennedy <[email protected]>
* src/modules/avformat/consumer_avformat.c,
src/modules/avformat/producer_avformat.c: Add support for libavformat and
libavcodec major version 55.
2013-03-18 Dan Dennedy <[email protected]>
* src/modules/avformat/Makefile, src/modules/avformat/configure,
src/modules/avformat/consumer_avformat.c, 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: Drop support for FFmpeg v0.5 and
v0.6 and require swscale. This is cleanup work to make way for more version
handling to handle current git master of libav that removes deprecated APIs.
2013-03-23 Dan Dennedy <[email protected]>
* src/modules/avformat/filter_avcolour_space.c,
src/modules/core/consumer_multi.c, src/modules/core/producer_loader.c,
src/modules/opengl/filter_movit_convert.cpp: Make the arg to avcolor_space
filter a pointer. Instead of passing an int cast as pointer.
2013-03-21 Dan Dennedy <[email protected]>
* src/modules/frei0r/factory.c, src/modules/frei0r/frei0r_helper.c,
src/modules/frei0r/param_name_map.yml: Add a frei0r param name mapping
system. For apps that set frei0r parameters by their name, this provides
backwards compatibility when a frei0r parameter name changes.
2013-03-17 Dan Dennedy <[email protected]>
* src/modules/frei0r/factory.c, src/modules/frei0r/frei0r_helper.c: Switch to
indexed propery names for frei0r params. Properties supplied by frei0r param
name are supported for backwards compatibility.
2013-03-13 Dan Dennedy <[email protected]>
* src/modules/core/loader.dict, src/modules/core/producer_loader.c: Tell
loader how to use WebVfx. With my latest (merged) patches to WebVfx, one can
load plain old HTML and QML files. They do not need webvfx script to
initialize rendering - with some caveats about the meaning of
document-loaded. However, without this loader change, plain resources need
to prefaced with "plain:". The loader producer can now do that and instead
"webvfx:" is needed to tell webvfx to wait for script in the content to call
WebVfx.renderReady(true) (unless you use "webvfx:plain:..."). Also, WebVfx
can also now load HTML over HTTP. This is especially handy if your content is
updating itself with data from a web service. Otherwise, you will run into
cross-site-scripting errors.
2013-03-07 Dan Dennedy <[email protected]>
* src/modules/opengl/filter_movit_crop.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/transition_movit_mix.cpp,
src/modules/opengl/transition_movit_overlay.cpp: Add locking to opengl
services for thread protection.
* src/modules/opengl/filter_glsl_manager.cpp,
src/modules/opengl/glsl_manager.h: Make opengl filters support attach,
detach, and disable.
2013-03-03 Dan Dennedy <[email protected]>
* src/framework/mlt.vers, src/framework/mlt_service.c,
src/framework/mlt_service.h, src/mlt++/MltService.cpp,
src/mlt++/MltService.h, src/mlt++/mlt++.vers: Add mlt_service_filter_count
and Mlt::Service::filter_count.
2013-02-25 Brian Matherly <[email protected]>
* src/modules/avsync/Makefile, src/modules/avsync/consumer_blipflash.c,
src/modules/avsync/consumer_blipflash.yml, src/modules/avsync/factory.c,
src/modules/avsync/producer_blipflash.c,
src/modules/avsync/producer_blipflash.yml: Add new avsync module
2013-02-24 Dan Dennedy <[email protected]>
* src/framework/mlt_frame.c, src/modules/core/consumer_multi.c: Let qglsl
multi consumer work with more consumers. Works with sdl and decklink
consumers.
* src/framework/mlt_consumer.c, src/modules/core/producer_loader.c: Fix crash
on missing NULL at end of mlt_events_fire().
2013-02-23 Dan Dennedy <[email protected]>
* src/melt/melt.c, src/modules/opengl/mlt_movit_input.cpp,
src/modules/qimage/consumer_qglsl.cpp: Fix OpenGL context cleanup on Windows.
Would crash at end of melt with qglsl.
* src/modules/opengl/filter_glsl_manager.cpp,
src/modules/qimage/consumer_qglsl.cpp: Some minor logging cleanup.
2013-02-20 Dan Dennedy <[email protected]>
* src/modules/opengl/consumer_xgl.c,
src/modules/opengl/filter_glsl_manager.cpp,
src/modules/opengl/filter_movit_convert.cpp: Cleanup some logging from work
in opengl branch.
* src/melt/melt.c, src/modules/xml/producer_xml.c: Let melt and xml producer
use qglsl consumer (opengl branch).
* src/modules/qimage/Makefile, src/modules/qimage/configure,
src/modules/qimage/consumer_qglsl.cpp, src/modules/qimage/factory.c: Add
qglsl multi consumer (opengl branch).
* src/framework/mlt_profile.c, src/modules/avformat/filter_avcolour_space.c,
src/modules/avformat/filter_swscale.c,
src/modules/avformat/producer_avformat.c, src/modules/core/consumer_multi.c,
src/modules/core/filter_crop.c, src/modules/core/filter_fieldorder.c,
src/modules/core/filter_imageconvert.c, src/modules/core/loader.ini,
src/modules/core/producer_loader.c: Let loader producer use new GLSL
normalizing filters (opengl branch).
* src/modules/opengl/Makefile, src/modules/opengl/configure,
src/modules/opengl/consumer_xgl.c, src/modules/opengl/factory.c,
src/modules/opengl/fbo_input.cpp, src/modules/opengl/fbo_input.h,
.../opengl/filter_deconvolution_sharpen.cpp,
.../opengl/filter_deconvolution_sharpen.yml,
src/modules/opengl/filter_glsl_manager.cpp,
src/modules/opengl/filter_lift_gamma_gain.cpp,
src/modules/opengl/filter_lift_gamma_gain.yml,
src/modules/opengl/filter_movit_blur.cpp,
src/modules/opengl/filter_movit_blur.yml,
src/modules/opengl/filter_movit_convert.cpp,
src/modules/opengl/filter_movit_crop.cpp,
src/modules/opengl/filter_movit_diffusion.cpp,
src/modules/opengl/filter_movit_diffusion.yml,
src/modules/opengl/filter_movit_glow.cpp,
src/modules/opengl/filter_movit_glow.yml,
src/modules/opengl/filter_movit_mirror.cpp,
src/modules/opengl/filter_movit_mirror.yml,
src/modules/opengl/filter_movit_opacity.cpp,
src/modules/opengl/filter_movit_opacity.yml,
src/modules/opengl/filter_movit_rect.cpp,
src/modules/opengl/filter_movit_rect.yml,
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_saturation.yml,
src/modules/opengl/filter_movit_vignette.cpp,
src/modules/opengl/filter_movit_vignette.yml,
src/modules/opengl/filter_white_balance.cpp,
src/modules/opengl/filter_white_balance.yml,
src/modules/opengl/glsl_manager.h, src/modules/opengl/mlt_flip_effect.h,
src/modules/opengl/mlt_movit_input.cpp, src/modules/opengl/mlt_movit_input.h,
src/modules/opengl/transition_movit_mix.cpp,
src/modules/opengl/transition_movit_mix.yml,
src/modules/opengl/transition_movit_overlay.cpp,
src/modules/opengl/transition_movit_overlay.yml: Add the new opengl module
(opengl branch).
* src/framework/mlt_consumer.c, src/framework/mlt_consumer.h: Add
consumer-thread-started and -stopped events (opengl branch).
* src/framework/mlt_frame.c, src/framework/mlt_types.h: Add mlt_image_glsl
and _glsl_texture (opengl branch).
* src/mlt++/MltDeque.cpp, src/mlt++/MltDeque.h, src/mlt++/mlt++.vers: Add
Mlt::Deque::peek() (opengl branch).
2013-02-15 Brian Matherly <[email protected]>
* src/modules/jackrack/Makefile, src/modules/jackrack/factory.c,
src/modules/jackrack/plugin_desc.c, src/modules/jackrack/plugin_desc.h,
src/modules/jackrack/plugin_mgr.c, src/modules/jackrack/process.c,
src/modules/jackrack/producer_ladspa.c,
src/modules/jackrack/producer_ladspa.yml: Add ladspa producer
2013-02-13 Cristian Morales Vega <[email protected]>
* src/framework/Makefile, src/mlt++/Makefile: Fix OSX buld which broke when
adding Linux symbols versioning
2013-02-10 Dan Dennedy <[email protected]>
* src/modules/sdl/consumer_sdl.c, src/modules/sdl/consumer_sdl_still.c:
Remove local references to SDL_Surface. (SF-186) Why bother when
SDL_GetVideoSurface() is available?
2013-02-07 Cristian Morales Vega <[email protected]>
* src/framework/Makefile, src/framework/mlt.vers, src/mlt++/Makefile,
src/mlt++/config.h, src/mlt++/mlt++.vers: Use symbol versioning
2013-02-08 Cristian Morales Vega <[email protected]>
* Makefile, configure, src/melt/Makefile: Make the versioning opt-in
2013-02-07 Cristian Morales Vega <[email protected]>
* Makefile, configure, profiles/Makefile, src/framework/Makefile,
src/framework/mlt_factory.c, src/melt/Makefile, src/melt/configure,
src/modules/Makefile, src/modules/avformat/Makefile,
src/modules/core/Makefile, src/modules/decklink/Makefile,
src/modules/dgraft/Makefile, src/modules/dv/Makefile,
src/modules/effectv/Makefile, src/modules/feeds/Makefile,
src/modules/frei0r/Makefile, src/modules/gtk2/Makefile,
src/modules/jackrack/Makefile, src/modules/kdenlive/Makefile,
src/modules/kino/Makefile, src/modules/linsys/Makefile,
src/modules/lumas/Makefile, src/modules/motion_est/Makefile,
src/modules/normalize/Makefile, src/modules/oldfilm/Makefile,
src/modules/plus/Makefile, src/modules/qimage/Makefile,
src/modules/resample/Makefile, src/modules/rotoscoping/Makefile,
src/modules/rtaudio/Makefile, src/modules/sdl/Makefile,
src/modules/sox/Makefile, src/modules/swfdec/Makefile,
src/modules/videostab/Makefile, src/modules/vmfx/Makefile,
src/modules/vorbis/Makefile, src/modules/xine/Makefile,
src/modules/xml/Makefile: Version modules and data directories, and melt
Allow the "extras" of binary incompatible versions of MLT to be installed
simultaneously. I don't like the idea of versioning the melt binary. But
kdenlive is the main user of MLT and it expects the same formats support from
both the libmltX it is linked to, and the melt binary it uses to do the
actual work.
2013-01-20 Dan Dennedy <[email protected]>
* Doxyfile, configure, docs/melt.1, src/framework/mlt_version.h,
src/melt/melt.c: Set version to 0.8.8.
2012-12-31 Dan Dennedy <[email protected]>
* src/modules/avformat/consumer_avformat.c,
src/modules/avformat/producer_avformat.c: Fix build against FFmepg 0.5 and
0.6.
2012-12-26 Niv Sardi <[email protected]>
* src/modules/gtk2/producer_pixbuf.c, src/modules/gtk2/producer_pixbuf.yml:
pixbuf producer: loop option to loop sequence selectively
2012-12-22 Dan Dennedy <[email protected]>
* src/framework/mlt_consumer.c, src/framework/mlt_frame.c,
src/framework/mlt_types.h, src/modules/avformat/consumer_avformat.c,
src/modules/avformat/producer_avformat.c,
src/modules/core/filter_audiochannels.c,
src/modules/core/filter_audioconvert.c,
src/modules/core/filter_channelcopy.c, src/modules/core/filter_mono.c: Add
mlt_audio_u8 (sourceforce-182). It should support planar libavutil
AV_SAMPLE_FMT_U8P, but it is untested due to lacking a sample.
2012-12-12 Dan Dennedy <[email protected]>
* src/modules/avformat/producer_avformat.c,
src/modules/resample/filter_resample.c: Fix possible divide by zero
exceptions.
2012-11-27 Dan Dennedy <[email protected]>
* src/modules/avformat/factory.c, src/modules/avformat/filter_avresample.c,
src/modules/avformat/producer_avformat.c: Fix decoding audio with planar
formats.
* src/modules/decklink/consumer_decklink.cpp,
src/modules/decklink/producer_decklink.cpp: Fix mlt_profile to DeckLink
DisplayMode matching.
2012-11-17 Dan Dennedy <[email protected]>
* src/modules/gtk2/producer_pixbuf.c, src/modules/qimage/producer_qimage.c:
Fix crash on invalid image sequence.
* configure, src/framework/mlt_version.h: set to interim version 0.8.7
* src/modules/qimage/kdenlivetitle_wrapper.cpp,
src/modules/videostab/stab/klt/error.c: Remove exit()s that cause unexpected
app failures. An app can register a mlt_log callback, trap errors, and do
something more graceful than abort as perhaps some of these are not really as
fatal as they claim to be (a different patch can change the levels as
needed).
2012-11-14 Dan Dennedy <[email protected]>
* Doxyfile, NEWS, configure, docs/melt.1, src/framework/mlt_version.h: Set
version to 0.8.6
2012-11-13 Dan Dennedy <[email protected]>
* Doxyfile, configure, docs/melt.1, src/framework/mlt_version.h,
src/modules/avformat/configure: Set version to 0.8.4
2012-11-11 Dan Dennedy <[email protected]>
* src/modules/core/factory.c, src/modules/normalize/Makefile,
src/modules/normalize/factory.c, src/modules/normalize/filter_audiolevel.c,
src/modules/normalize/filter_audiolevel.yml: Add audiolevel filter.
* src/modules/avformat/producer_avformat.c,
src/modules/avformat/producer_avformat.yml, src/modules/core/filter_resize.c:
More fixes for force_full_luma (kdenlive-2799). This change lets the image
converter downstream of the avformat producer perform utilize the range
as-needed. Then, when the rescale filter sees that the force_full_range is
set on the frame but has not yet been applied, forces a conversion to RGB to
enforce it. In addition, the recently added force_full_luma property on the
avformat producer is removed because it is redundant with AVOption
color_range=2.
* presets/consumer/avformat/Sony-PSP,
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_wide/D10,
presets/consumer/avformat/dv_ntsc_wide/DV,
presets/consumer/avformat/dv_ntsc_wide/DVCPRO50,
presets/consumer/avformat/dv_pal/D10, presets/consumer/avformat/dv_pal/DV,
presets/consumer/avformat/dv_pal/DVCPRO50,
presets/consumer/avformat/dv_pal_wide/D10,
presets/consumer/avformat/dv_pal_wide/DV,
presets/consumer/avformat/dv_pal_wide/DVCPRO50,
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,
presets/consumer/avformat/lossless/FFV1,
presets/consumer/avformat/lossless/H.264,
presets/consumer/avformat/lossless/MPEG-4: Add more descriptions to encoding
presets.
2012-11-05 Dan Dennedy <[email protected]>
* src/modules/qimage/producer_qimage.c,
src/modules/qimage/producer_qimage.yml: qimage: let begin property be passed
as a query string parameter
* src/modules/gtk2/producer_pixbuf.c, src/modules/gtk2/producer_pixbuf.yml:
pixbuf: support alt. query syntax begin:value for melt
2012-11-04 Dan Dennedy <[email protected]>
* src/modules/gtk2/producer_pixbuf.c, src/modules/gtk2/producer_pixbuf.yml:
pixbuf: let begin property be passed as a query string parameter
2012-10-23 Dan Dennedy <[email protected]>
* src/modules/avformat/producer_avformat.c,
src/modules/avformat/producer_avformat.yml: Fix force_full_luma
(kdenlive-2799).
2012-10-19 Dan Dennedy <[email protected]>
* src/framework/mlt_geometry.c, src/modules/videostab/filter_videostab.c,
src/modules/videostab/filter_videostab2.c: Let vector property of
videostab(2) be read directly as mlt_geometry.
2012-10-19 Jean-Baptiste Mardelle <[email protected]>
* src/modules/qimage/Makefile, src/modules/qimage/configure,
src/modules/qimage/producer_qimage.c, src/modules/qimage/qimage_wrapper.cpp,
src/modules/qimage/qimage_wrapper.h: Fix loading of extra image formats using
Kdelibs (xcf, ...)
2012-10-09 Dan Dennedy <[email protected]>
* src/swig/Makefile, src/swig/csharp/build, src/swig/java/build,
src/swig/lua/build, src/swig/perl/Makefile.PL, src/swig/perl/build,
src/swig/php/build, src/swig/python/build, src/swig/ruby/build,
src/swig/tcl/build: Build the SWIG bindings with the CXXFLAGS (3554425)
Based on patch by Cristian Morales Vega
* src/modules/core/producer_colour.c, src/modules/core/producer_noise.c,
src/modules/frei0r/producer_frei0r.c: fix aspect ratio of generators when set
via consumer property
2012-09-23 Dan Dennedy <[email protected]>
* presets/consumer/avformat/MJPEG, presets/consumer/avformat/lossless/FFV1,
presets/consumer/avformat/lossless/MJPEG: indicate in some presets codecs
which do not support multithread
2012-09-16 Dan Dennedy <[email protected]>
* src/framework/Makefile, src/framework/configure,
src/framework/mlt_property.h: cleanup sys/param.h include on FreeBSD
Assisted by Albert Villa who says it is safe to assume sys/param.h is
available, which is needed for FreeBSD version check on whether to include
xlocale.h in mlt_property.h.
2012-09-13 Dan Dennedy <[email protected]>
* src/modules/sdl/consumer_sdl_audio.c,
src/modules/sdl/consumer_sdl_preview.c: sdl_audio and sdl_preview also do not
care about field order Also, have sdl_preview pass top_field_first to its
children.
* src/framework/mlt_consumer.h, src/modules/core/filter_fieldorder.c,
src/modules/sdl/consumer_sdl.c: add ability to ignore field order as used by
sdl consumer
2012-09-09 Dan Dennedy <[email protected]>
* src/mlt++/MltProfile.cpp, src/mlt++/MltProfile.h: add
Mlt::Profile::colorspace()
2012-09-08 Dan Dennedy <[email protected]>
* configure, src/framework/configure, src/modules/avformat/configure,
src/modules/frei0r/configure: allow env CC to override hard-coded gcc in
configure scripts patch by Alberto Villa
* src/modules/avformat/producer_avformat.c,
src/modules/gtk2/producer_pango.c, src/modules/gtk2/producer_pixbuf.c,
src/modules/qimage/producer_qimage.c, src/modules/qimage/qimage_wrapper.cpp,
src/modules/swfdec/producer_swfdec.c, src/modules/vorbis/producer_vorbis.c:
change producers to use mlt_frame_original_position()
* src/framework/mlt_frame.c, src/framework/mlt_frame.h: add
mlt_frame_original_position()
2012-09-03 Dan Dennedy <[email protected]>
* src/mlt++/MltService.cpp, src/mlt++/MltService.h: add
Mlt::Service::set_profile()
* src/framework/mlt_service.c, src/framework/mlt_service.h: add
mlt_service_set_profile()
* src/mlt++/MltProfile.cpp, src/mlt++/MltProfile.h: add
Mlt::Profile::is_explicit()
2012-08-31 Dan Dennedy <[email protected]>
* src/swig/mlt.i, src/swig/ruby/playlist.rb: extend Ruby API with
PlaylistNextListner and show how to use it
* src/framework/mlt_playlist.c, src/framework/mlt_playlist.h: add
playlist-next event to mlt_playlist
2012-08-30 Dan Dennedy <[email protected]>
* configure, src/framework/mlt_version.h: set interim version to 0.8.3
2012-08-28 Dan Dennedy <[email protected]>
* ChangeLog, presets/consumer/avformat/MPEG-4 ASP,
presets/consumer/avformat/MPEG-4-ASP, presets/consumer/avformat/webm: add
acodec to webm preset and rename MPEG-4 ASP preset
* Doxyfile, configure, docs/melt.1, src/framework/mlt_version.h: set version
to 0.8.2
2012-08-26 Dan Dennedy <[email protected]>
* presets/consumer/avformat/stills/BMP, presets/consumer/avformat/stills/DPX,
presets/consumer/avformat/stills/JPEG, presets/consumer/avformat/stills/PNG,
presets/consumer/avformat/stills/PPM, presets/consumer/avformat/stills/TGA,
presets/consumer/avformat/stills/TIFF: add meta.preset.extension to image
sequence presets
* presets/consumer/avformat/AAC, presets/consumer/avformat/Flash,
presets/consumer/avformat/MJPEG, presets/consumer/avformat/MP3,
presets/consumer/avformat/MPEG-2, 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/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/DVD,
presets/consumer/avformat/dv_ntsc_wide/D10,
presets/consumer/avformat/dv_ntsc_wide/DVD,
presets/consumer/avformat/dv_pal/D10, presets/consumer/avformat/dv_pal/DVD,
presets/consumer/avformat/dv_pal_wide/D10,
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,
presets/consumer/avformat/lossless/FFV1,
presets/consumer/avformat/lossless/H.264,
presets/consumer/avformat/lossless/HuffYUV,
presets/consumer/avformat/lossless/MJPEG,
presets/consumer/avformat/lossless/MPEG-2,
presets/consumer/avformat/lossless/MPEG-4,
presets/consumer/avformat/lossless/ProRes, presets/consumer/avformat/webm,
presets/consumer/avformat/x264-medium,
presets/consumer/avformat/x264-medium-baseline,
presets/consumer/avformat/x264-medium-main,
presets/consumer/avformat/x264-medium-pass1: add preset metadata such as
alternate name, filename extension, note.
* presets/consumer/avformat/Sony-PSP, presets/consumer/avformat/webm,
presets/consumer/avformat/x264-medium-baseline,
presets/consumer/avformat/x264-medium-main: change profile to vprofile in
presets
* presets/consumer/avformat/Vorbis,
presets/consumer/avformat/lossless/ProRes: add vorbis and prores encode
presets
2012-08-25 Dan Dennedy <[email protected]>
* presets/consumer/avformat/AAC, presets/consumer/avformat/Flash,
presets/consumer/avformat/MJPEG, presets/consumer/avformat/MP3,
presets/consumer/avformat/MPEG-2, presets/consumer/avformat/MPEG-4,
presets/consumer/avformat/MPEG-4 ASP, presets/consumer/avformat/WAV,
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,
presets/consumer/avformat/lossless/FFV1,
presets/consumer/avformat/lossless/H.264,
presets/consumer/avformat/lossless/HuffYUV,
presets/consumer/avformat/lossless/MJPEG,
presets/consumer/avformat/lossless/MPEG-2,
presets/consumer/avformat/lossless/MPEG-4,
presets/consumer/avformat/stills/BMP, presets/consumer/avformat/stills/DPX,
presets/consumer/avformat/stills/JPEG, presets/consumer/avformat/stills/PNG,
presets/consumer/avformat/stills/PPM, presets/consumer/avformat/stills/TGA,
presets/consumer/avformat/stills/TIFF,
presets/consumer/avformat/x264-medium-pass1: add a bunch of new encoding
presets
2012-08-24 Dan Dennedy <[email protected]>
* src/modules/avformat/producer_avformat.c,
src/modules/avformat/producer_avformat.yml: the recent A/V sync overhaul
needed some additional work
2012-08-11 Dan Dennedy <[email protected]>
* src/melt/io.c, src/melt/melt.c: fix melt progress display on Windows
2012-08-01 Mikko Rapeli <[email protected]>
* src/modules/videostab/filter_videostab.c,
src/modules/videostab/filter_videostab2.c: videostab/filter_videostab*.c:
check return value from mlt_filter_new() Fixes Coverity CID 709365 and
709366: Dereference null return value (NULL_RETURNS) Function
"mlt_filter_new" returns null (checked 50 out of 52 times). [show details]
Assigning: "parent" = null return value from "mlt_filter_new". 201
mlt_filter parent = mlt_filter_new(); Dereferencing a null pointer
"parent". 202 parent->child = self;
* src/modules/videostab/filter_videostab.c,
src/modules/videostab/filter_videostab2.c: videostab/filter_videostab*.c:
check for null Fixes Coverity CID 709404: Dereference before null check
(REVERSE_INULL) Dereferencing pointer "g". [show details] 85 if (
!mlt_geometry_parse( g, vectors, length, -1, -1 ) ) ... Dereferencing "g"
before a null check. 104 if ( g ) mlt_geometry_close( g );
2012-08-04 Dan Dennedy <[email protected]>
* src/modules/avformat/producer_avformat.c,
src/modules/avformat/producer_avformat.yml: add image cache size property to
avformat producer
2012-08-03 Marco Gittler <[email protected]>
* src/modules/oldfilm/filter_lines.c, src/modules/oldfilm/filter_lines.yml:
fix width output of filter in xml
2012-07-25 Mikko Rapeli <[email protected]>
* src/framework/mlt_field.c, src/framework/mlt_frame.c,
src/framework/mlt_multitrack.c, src/framework/mlt_playlist.c,
src/framework/mlt_properties.c, src/framework/mlt_repository.c,
src/framework/mlt_service.c, src/framework/mlt_tractor.c,
src/modules/core/filter_audioconvert.c, src/modules/core/filter_crop.c,
src/modules/core/filter_imageconvert.c, src/modules/core/filter_panner.c,
src/modules/core/filter_resize.c, src/modules/core/producer_ppm.c,
src/modules/core/transition_composite.c, src/modules/core/transition_mix.c,
src/modules/dv/producer_libdv.c, src/modules/gtk2/producer_pango.c,
src/modules/gtk2/producer_pixbuf.c, src/modules/kino/producer_kino.c,
src/modules/linsys/consumer_SDIstream.c,
src/modules/normalize/filter_volume.c,
src/modules/qimage/producer_kdenlivetitle.c,
src/modules/qimage/producer_qimage.c, src/modules/rtaudio/RtAudio.cpp,
src/modules/sdl/consumer_sdl.c, src/modules/sdl/consumer_sdl_audio.c,
src/modules/sdl/consumer_sdl_preview.c, src/modules/sdl/consumer_sdl_still.c,
src/modules/xml/consumer_xml.c, src/modules/xml/producer_xml.c: Fix calloc()
parameter ordering First parameter to calloc() is the count and second the
amount of bytes for each item. Likely this has no run time effect since the
resulting buffer size is the same.
2012-07-23 Dan Dennedy <[email protected]>
* src/modules/gtk2/producer_pixbuf.c, src/modules/qimage/qimage_wrapper.cpp:
fix crash when switching image formats with alpha This happens when
switching from image format with distinct alpha channel (yuv422) to one with
embedded alpha channel (rgb24a). Reported-by: j-b-m
2012-07-22 Dan Dennedy <[email protected]>
* src/modules/videostab/stabilize.c, src/modules/videostab/stabilize.h:
remove unused function (coverity-709390)
* src/mlt++/MltService.cpp, src/mlt++/MltService.h: add
Service::get_profile() returns mlt_profile
* src/framework/mlt_consumer.c, src/framework/mlt_consumer.h: fix memory leak
(coverity-709375)
2012-07-20 Dan Dennedy <[email protected]>
* AUTHORS, src/modules/core/Makefile,
src/modules/core/composite_line_yuv_sse2_simple.c,
src/modules/core/transition_composite.c: improve compatibility to compile
composite sse2 (macports-35243)
2012-07-12 Dan Dennedy <[email protected]>
* src/modules/core/producer_loader.c, src/modules/xml/producer_xml.c: accept
file:// prefix on MLT XML file
2012-06-23 Dan Dennedy <[email protected]>
* src/framework/mlt_playlist.c, src/framework/mlt_playlist.h,
src/mlt++/MltPlaylist.cpp, src/mlt++/MltPlaylist.h,
src/modules/core/producer_melt.c, src/modules/xml/producer_xml.c: add support
for time string to playlist blanks
* src/modules/jackrack/consumer_jack.c,
src/modules/jackrack/consumer_jack.yml,
src/modules/rtaudio/consumer_rtaudio.cpp,
src/modules/rtaudio/consumer_rtaudio.yml,
src/modules/sdl/consumer_sdl_audio.c, src/modules/sdl/consumer_sdl_audio.yml:
add support for audio scrubbing to audio-only consumers
2012-06-19 Dan Dennedy <[email protected]>
* src/framework/mlt_producer.c, src/framework/mlt_producer.h,
src/mlt++/MltProducer.cpp, src/mlt++/MltProducer.h: add
mlt_producer_seek_time and mlt_producer_frame_time
* src/mlt++/MltFilteredConsumer.cpp, src/mlt++/MltFilteredConsumer.h,
src/mlt++/MltFilteredProducer.cpp, src/mlt++/MltFilteredProducer.h,
src/mlt++/MltPushConsumer.cpp, src/mlt++/MltPushConsumer.h: add const-ness to
some strings in specialized service classes
2012-06-18 Dan Dennedy <[email protected]>
* src/modules/rotoscoping/filter_rotoscoping.c,
src/modules/vmfx/filter_shape.c, src/modules/xine/vf_yadif_template.h,
src/modules/xine/yadif.c: fix clang errors
2012-06-16 Dan Dennedy <[email protected]>
* src/modules/avformat/producer_avformat.c,
src/modules/avformat/producer_avformat.yml: overhaul a/v sync and seeking in
avformat producer The new_seek property changed to use_pts. This
consolidates old seek and new seek code, improves a/v sync for more files,
and improves seek performance for AVCHD in general (including libav).
2012-06-04 Dan Dennedy <[email protected]>
* NEWS, configure, src/framework/mlt_version.h: set interim version to 0.8.1
2012-06-01 Dan Dennedy <[email protected]>
* Doxyfile, configure, docs/melt.1, src/framework/mlt_version.h,
src/modules/avformat/configure: set version to 0.8.0
2012-05-29 Dan Dennedy <[email protected]>
* src/framework/mlt_cache.c, src/framework/mlt_cache.h: add
mlt_cache_put_frame and mlt_cache_get_frame
* src/modules/gtk2/Makefile, src/modules/gtk2/configure,
src/modules/gtk2/scale_line_22_yuv_mmx.S, src/modules/jackrack/Makefile,
src/modules/jackrack/configure: fix cross-compiling gtk2 and jackrack modules
for windows
2012-05-26 Dan Dennedy <[email protected]>
* configure, src/mlt++/configure, src/modules/qimage/configure,
src/modules/swfdec/Makefile, src/modules/videostab/stab/estimate.c: add
configure options and fixes for cross-compiling
2012-05-19 Dan Dennedy <[email protected]>
* src/modules/decklink/DeckLinkAPI.h,
src/modules/decklink/DeckLinkAPIDispatch.cpp,
src/modules/decklink/DeckLinkAPI_h.h, src/modules/decklink/DeckLinkAPI_i.cpp,
src/modules/decklink/LinuxCOM.h, src/modules/decklink/Makefile,
src/modules/decklink/common.cpp, src/modules/decklink/common.h,
src/modules/decklink/consumer_decklink.cpp,
src/modules/decklink/darwin/DeckLinkAPI.h,
.../decklink/darwin/DeckLinkAPIDispatch.cpp,
src/modules/decklink/linux/DeckLinkAPI.h,