forked from mltframework/mlt
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathChangeLog
13956 lines (9914 loc) · 591 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
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
* NEWS: add release notes for v0.8.0
* src/modules/avformat/producer_avformat.c: fix image format regression in
avformat caching
* src/modules/avformat/producer_avformat.c: remove unused alpha_cache member
* src/modules/avformat/producer_avformat.c: fix video_delay when using
new_seek (AVCHD)
* src/modules/avformat/producer_avformat.c: fix a/v sync after recent change
for faster AVCHD seeking
2012-05-31 Dan Dennedy <[email protected]>
* src/modules/gtk2/scale_line_22_yuv_mmx.S: fix regression in build on 32-bit
linux gcc 4.6.1
2012-06-01 Dan Dennedy <[email protected]>
* src/modules/avformat/producer_avformat.c: fix image format regression in
avformat caching
* src/modules/avformat/producer_avformat.c: remove unused alpha_cache member
* src/modules/avformat/producer_avformat.c: fix video_delay when using
new_seek (AVCHD)
* src/modules/avformat/producer_avformat.c: fix a/v sync after recent change
for faster AVCHD seeking
2012-05-31 Dan Dennedy <[email protected]>
* src/modules/gtk2/scale_line_22_yuv_mmx.S: fix regression in build on 32-bit
linux gcc 4.6.1
2012-05-31 Jean-Baptiste Mardelle <[email protected]>
* src/modules/kdenlive/filter_freeze.c: Fix indentation
2012-05-30 eddrog <[email protected]>
* src/modules/jackrack/filter_jackrack.c: fix initialize status to zero
2012-05-29 Dan Dennedy <[email protected]>
* src/modules/avformat/producer_avformat.c: convert avformat producer to use
the new mlt_cache_put_frame
* src/modules/decklink/producer_decklink.cpp: fix decklink producer dropping
frames after few hours mlt_cache_put() was not scalable when using position
as a key into the cache. Its reliance upon mlt_properties for
reference-counting cache items caused its hash tabe to grow too large after a
few hundred thousand frames. This version uses the new mlt_cache_put_frame,
which is simpler and more scalable by only using the cache arrays and copying
data.
* 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-22 Jean-Baptiste Mardelle <[email protected]>
* src/modules/kdenlive/filter_freeze.c: Fix filter freeze problem with clip
cuts
2012-05-22 eddrog <[email protected]>
* src/modules/jackrack/filter_jackrack.c: fix unique name problem in
filter_jackrack when several filter instances are loaded within one process
on evaluating the jack status JackNameNotUnique
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,
src/modules/decklink/linux/DeckLinkAPIDispatch.cpp,
src/modules/decklink/linux/LinuxCOM.h,
src/modules/decklink/producer_decklink.cpp,
src/modules/decklink/win/DeckLinkAPI_h.h,
src/modules/decklink/win/DeckLinkAPI_i.cpp: fix decklink build for OS X
2012-04-18 Dan Dennedy <[email protected]>
* src/modules/decklink/consumer_decklink.cpp,
src/modules/decklink/producer_decklink.cpp: fix decklink build on Windows
2012-04-11 Dan Dennedy <[email protected]>
* src/modules/plus/filter_affine.c, src/modules/plus/interp.h,
src/modules/plus/transition_affine.c: fix distortion handling alpha channel
in affine transition Reported-by: j-b-m
2012-04-10 Dan Dennedy <[email protected]>
* demo/mlt_ticker, src/modules/plus/filter_affine.c: fix background alpha
channel of affine filter broke when black producer was changed to opaque
like other colors
* src/modules/plus/interp.h: remove remap functions and document
interpolation parameters in English
2012-04-07 Dan Dennedy <[email protected]>
* src/modules/core/producer_colour.c: fix color:black
* src/modules/core/transition_luma.c: fix regression due to alpha channels of
A and B swapped
* src/modules/core/producer_colour.c: fix the alpha channel to be opaque on
empty string
* src/modules/plus/transition_affine.c,
src/modules/qimage/qimage_wrapper.cpp: fix regressions during refactorization
2012-04-02 Dan Dennedy <[email protected]>
* src/modules/jackrack/filter_jackrack.c: fix jack-stopped event with some
JACK clients It appears that JackTransportStopped is not received in
JackSyncCallback unless the client that calls jack_transport_stop() also
calls jack_transport_locate().
* src/framework/mlt_property.c: fix build for OS X
2012-03-31 Dan Dennedy <[email protected]>
* src/modules/xml/producer_xml.c: add support for parsing time(code) values
to xml producer
* src/modules/xml/consumer_xml.c, src/modules/xml/consumer_xml.yml: add
time_format property to xml consumer Now you can save the in, out, and
length properties as timecode or clock values. Default unit it still in frame
count.
* src/framework/mlt_producer.c, src/framework/mlt_producer.h,
src/mlt++/MltProducer.cpp, src/mlt++/MltProducer.h: add
mlt_producer_get_length_time() More functions that return time strings will
be added later.
* configure, 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: add support for timecode and clock time strings to
the framework
2012-04-01 Dan Dennedy <[email protected]>
* src/modules/avformat/producer_avformat.c: make speed of editing AVCHD
tolerable This only works for FFmpeg v0.9.1 or newer but not yet for libav.
This uses the image scaling interpolation mode as a hint to perform less
(nearest) or more (bilinear or bicubic) diligent seeking. Since most editors
are using the SDL consumer with rescale=nearest, this makes scrubbing and
cuts/transitions faster. Then, upon encoding, since the avformat consumer
uses bilinear by default, it will use the slower, more accurate seeking to
ensure the integrity of cuts with an in point. This change has some quirks:
frame-stepping backwards sometimes does not update the image, and sometimes a
big jump forward shows artifacts.
2012-03-27 Dan Dennedy <[email protected]>
* GPLv3, configure, src/modules/qimage/Makefile,
src/modules/qimage/configure, src/modules/qimage/factory.c: require configure
--enable-gpl3 for GPLv3 services (currently only vqm)
2012-03-25 Dan Dennedy <[email protected]>
* src/modules/gtk2/producer_pixbuf.c, src/modules/qimage/producer_qimage.c:
fix resource leak regression in image producers
2012-03-19 Dan Dennedy <[email protected]>
* src/modules/decklink/consumer_decklink.cpp,
src/modules/decklink/producer_decklink.cpp: enumerate DeckLink devices when
list_devices property is set
2012-03-19 Maksym Veremeyenko <[email protected]>
* src/modules/decklink/consumer_decklink.cpp,
src/modules/decklink/producer_decklink.cpp: Initialize all decklink interface
pointers and reset them upon release. Also, add a couple of missing
releases.
2012-03-18 Brian Matherly <[email protected]>
* src/modules/avformat/consumer_avformat.c,
src/modules/avformat/producer_avformat.c: Fix incorrect precompiler
conditionals for libav/ffmpeg versions. Needed to support ffmpeg 0.9 and
0.10 releases.
2012-03-17 Dan Dennedy <[email protected]>
* src/modules/gtk2/configure: add gdk-pixbuf-2.0 dependency to pango producer
* src/framework/configure: fix build on OS X 10.6
2012-03-14 Dan Dennedy <[email protected]>
* src/modules/decklink/consumer_decklink.cpp,
src/modules/decklink/consumer_decklink.yml,
src/modules/decklink/producer_decklink.cpp,
src/modules/decklink/producer_decklink.yml: enumerate available devices in
decklink module
* src/modules/avformat/producer_avformat.c: fix segfault on failure to decode
with multi-threaded decoding self->got_picture was somewhat redundant with
self->av_frame, but not synchronized and not ever really reset. So, just
remove that state and use the state of self->av_frame and local got_picture.
2012-03-12 Maksym Veremeyenko <[email protected]>
* src/modules/avformat/producer_avformat.c: fix playing audio with 0 channels
2012-03-11 Brian Matherly <[email protected]>
* src/modules/gtk2/producer_pixbuf.yml,
src/modules/qimage/producer_qimage.yml: Fix broken pixbuf and qimage producer
metadata.
2012-03-07 Dan Dennedy <[email protected]>
* src/modules/gtk2/producer_pango.c, src/modules/gtk2/producer_pixbuf.c,
src/modules/qimage/producer_qimage.c: indicate image producers seekable
2012-03-06 Dan Dennedy <[email protected]>
* src/modules/gtk2/producer_pixbuf.yml,
src/modules/qimage/producer_qimage.yml: update service metadata for pixbuf
and qimage
2012-03-05 Dan Dennedy <[email protected]>
* src/modules/gtk2/producer_pixbuf.c, src/modules/qimage/producer_qimage.c:
allow %u in image sequence pattern containing begin value
* src/modules/gtk2/producer_pixbuf.c, src/modules/qimage/producer_qimage.c:
add image sequences where scanf format contains begin value For example, if
an image sequence begins with the file foo1234.png, you can use the resource
string "foo%1234d.png" to load it.
* src/modules/qimage/producer_qimage.c: refactor load_filenames in qimage
* src/modules/gtk2/producer_pixbuf.c: refactor load_filenames in pixbuf
2012-03-04 Dan Dennedy <[email protected]>
* src/modules/decklink/producer_decklink.cpp,
src/modules/qimage/qimage_wrapper.cpp: remove a couple more remnants of
legacy real_width and _height
* src/modules/avformat/producer_avformat.c, src/modules/dv/producer_libdv.c:
remove deprecated source_fps property
* src/framework/mlt_tractor.c, src/modules/avformat/producer_avformat.c,
src/modules/core/consumer_multi.c, src/modules/core/filter_crop.c,
src/modules/core/filter_rescale.c, src/modules/core/filter_resize.c,
src/modules/core/producer_colour.c, src/modules/core/producer_consumer.c,
src/modules/core/producer_loader.c, src/modules/core/transition_composite.c,
src/modules/dv/producer_libdv.c, src/modules/gtk2/producer_pango.c,
src/modules/gtk2/producer_pixbuf.c,
src/modules/kdenlive/producer_framebuffer.c,
src/modules/plus/transition_affine.c, src/modules/sdl/producer_sdl_image.c,
src/modules/swfdec/producer_swfdec.c,
src/modules/videostab/filter_videostab2.c, src/modules/vmfx/producer_pgm.c:
replace legacy real_width and _height with meta.media.width and .height This
takes advantage of mlt_producer copying all meta properties from producer to
frame so we do not have to remember to do it everywhere it is needed.
2012-02-29 Dan Dennedy <[email protected]>
* src/framework/mlt_consumer.c, src/framework/mlt_frame.c,
src/framework/mlt_profile.c, src/framework/mlt_tractor.c,
src/framework/mlt_transition.c, src/modules/core/filter_crop.c,
src/modules/core/filter_watermark.c, src/modules/kdenlive/filter_freeze.c,
src/modules/kdenlive/producer_framebuffer.c,
src/modules/oldfilm/filter_dust.c, src/modules/plus/filter_affine.c,
src/modules/plus/transition_affine.c: remove consumer_aspect_ratio property -
use profile instead
* src/framework/mlt_tractor.c, src/modules/core/filter_watermark.c,
src/modules/core/transition_composite.c,
src/modules/kdenlive/filter_freeze.c: remove output_ratio property - use
profile instead
* src/modules/core/filter_crop.c, src/modules/core/filter_obscure.c,
src/modules/core/filter_rescale.c, src/modules/core/filter_resize.c,
src/modules/core/filter_watermark.c, src/modules/core/transition_composite.c,
src/modules/plus/filter_affine.c, src/modules/plus/transition_affine.c:
remove usage of normalised_width and _height properties from services
* src/modules/plus/transition_affine.c: rename this to transition and affine
* src/modules/core/transition_composite.c: rename this to self in composite
transition
* src/modules/core/filter_resize.c: rename this to frame and filter
* src/modules/core/filter_rescale.c: rename this to frame and filter
* src/modules/core/filter_obscure.c: rename this to filter
* src/modules/core/filter_crop.c: rename this to frame and filter
* src/framework/mlt_frame.c, src/framework/mlt_tractor.c: remove
normalised_width and _height properties from framework
2012-03-04 Dan Dennedy <[email protected]>
* src/modules/gtk2/producer_pixbuf.c, src/modules/qimage/qimage_wrapper.cpp:
fix regression with adding image conversion to image producers
2012-03-02 Dan Dennedy <[email protected]>
* src/modules/qimage/producer_qimage.c,
src/modules/qimage/qimage_wrapper.cpp, src/modules/qimage/qimage_wrapper.h:
convert to and cache requested format in qimage
2012-03-01 Dan Dennedy <[email protected]>
* src/modules/qimage/producer_qimage.c,
src/modules/qimage/qimage_wrapper.cpp, src/modules/qimage/qimage_wrapper.h:
split refresh_qimage() into refresh_qiamge() and refresh_image()
* src/modules/gtk2/producer_pixbuf.c: fix regression in pixbuf setting
_real_width and _height for loader
* src/modules/qimage/qimage_wrapper.cpp: factorize out exif reorientation in
qimage producer
* src/modules/qimage/qimage_wrapper.cpp: remove the cache property from
qimage This is removed in the course of refactorizing to make the code more
maintainable for improvements. If you really need to cache an entire image
sequence in memory use a ramdisk.
2012-02-29 Dan Dennedy <[email protected]>
* src/modules/qimage/kdenlivetitle_wrapper.cpp: fix QObject::connect of type
QTextCursor errors
2012-02-28 Dan Dennedy <[email protected]>
* src/modules/gtk2/producer_pixbuf.c: fix regressions caused by refactoring
and format conversion
* src/modules/gtk2/producer_pixbuf.c: convert to and cache requested format
in pixbuf Original idea for patch came from Maksym Veremeyenko.
2012-02-27 Dan Dennedy <[email protected]>
* src/modules/gtk2/producer_pixbuf.c: split refresh_image() into
refresh_pixbuf() and refresh_image()
* src/modules/core/transition_composite.yml,
src/modules/gtk2/producer_pixbuf.yml: couple of small service metadata fixes
2012-02-26 Dan Dennedy <[email protected]>
* src/modules/gtk2/producer_pixbuf.c: factorize out exif reorientation
* src/modules/gtk2/producer_pixbuf.c: remove the cache property from pixbuf
This is removed in the course of refactorizing to make the code more
maintainable for improvements. If you really need to cache an entire image
sequence in memory use a ramdisk.
2012-02-28 Dan Dennedy <[email protected]>
* src/modules/core/loader.dict: change priority of producers for swf files
(3494517)
2012-02-26 Dan Dennedy <[email protected]>
* src/modules/sdl/consumer_sdl_audio.c: the audio also stutters on Linux when
paused
2012-02-25 j-b-m <[email protected]>
* src/modules/avformat/consumer_avformat.c: fix some audio codecs not
detected with newer libavcodec
2012-02-22 Dan Dennedy <[email protected]>
* src/mlt++/MltProfile.cpp: fix Mlt::Profile::set_frame_rate setting
incorrect fields
* src/modules/avformat/consumer_avformat.c: fix segfault on stop in avformat
consumer
* src/modules/avformat/producer_avformat.c: add meta.media.codec.width and
.height
* src/modules/decklink/producer_decklink.cpp,
src/modules/decklink/producer_decklink.yml: fix regression when using
producer 'consumer' with decklink This feature now requires one to set the
preview property on this producer to support special preview mode when the
speed is 0.
* src/modules/core/composite_line_yuv_sse2_simple.c: fix asm compilation on
some versions of gcc
2012-02-20 Maksym Veremeyenko <[email protected]>
* src/modules/decklink/producer_decklink.cpp: allow start decklink producer
from pause
2012-02-20 Dan Dennedy <[email protected]>
* src/framework/mlt_frame.c, src/modules/avformat/filter_avcolour_space.c,
src/modules/core/filter_crop.c, src/modules/core/filter_resize.c,
src/modules/core/transition_region.c: let mlt_frame_set_alpha clear the
get_alpha_mask function pointer
* src/modules/avformat/producer_avformat.c: fix avformat build on older
versions (YUVA444P is new)
2012-02-17 Maksym Veremeyenko <[email protected]>
* src/modules/avformat/producer_avformat.c: alpha extracting from planar
formats
2012-02-16 Maksym Veremeyenko <[email protected]>
* src/framework/mlt_frame.c: clone alpha on whan cloning image
2012-02-19 Dan Dennedy <[email protected]>
* src/modules/sdl/consumer_sdl_audio.c: prevent audio from stuttering when
paused on Windows
* src/modules/sdl/consumer_sdl_audio.c: rename this to self
* configure, src/framework/mlt_version.h: set interim version 0.7.9
2012-02-16 Dan Dennedy <[email protected]>
* src/modules/core/transition_luma.c: refactor dissolve_yuv() to use
composite_line_yuv()
* src/modules/core/transition_composite.c,
src/modules/core/transition_composite.h: make composite_line_yuv() available
to other services
2012-02-16 Maksym Veremeyenko <[email protected]>
* src/modules/core/transition_composite.c: fix rounding causes by -ffast-math
* src/modules/core/composite_line_yuv_sse2_simple.c,
src/modules/core/transition_composite.c: use sse2 instruction for line
compositing
2012-02-13 Dan Dennedy <[email protected]>
* ChangeLog: update ChangeLog for v0.7.8
* Doxyfile, configure, docs/melt.1, src/framework/mlt_version.h,
src/melt/melt.c: set version to 0.7.8
* NEWS: add release notes for v0.7.8
2012-02-12 Brian Matherly <[email protected]>
* src/modules/avformat/consumer_avformat.c: Detect video codecs that use the
new libavcodec "encode2" method.
2012-02-12 Dan Dennedy <[email protected]>
* Makefile, src/modules/core/loader.dict,
src/modules/sdl/producer_sdl_image.yml: deprecate sdl_image
* src/modules/qimage/producer_qimage.c: rename this to self
* src/modules/gtk2/producer_pixbuf.c: rename this to self
* src/mlt++/MltFrame.cpp, src/mlt++/MltFrame.h: make Frame::get_position()
retrun type consistent
2012-02-12 Simon A. Eugster <[email protected]>
* src/mlt++/MltFrame.cpp, src/mlt++/MltFrame.h: Add get_position to
Mlt::Frame
2012-02-11 Dan Dennedy <[email protected]>
* src/modules/qimage/transition_vqm.cpp: fix transition vqm build on mingw32
* src/modules/core/producer_loader.c: support non-explicit abnormal producer
usage Non-explicit means the factory was not supplied with a specific
service ID but rather an "abnormal:" prefix to the resource value.
2012-01-27 Ryan Rix <[email protected]>
* src/modules/qimage/qimage_wrapper.cpp: Patch to build with GCC 4.7 Built
and tested downstream in RPMFusion. This addresses some changes in how GCC
4.7 no longer uses unistd by default to keep the global namespace sane.
2012-02-10 Dan Dennedy <[email protected]>
* src/modules/avformat/consumer_avformat.c: Ensure thread cleanup upon stop
when an error occurs. Also, use event consumer-fatal-error to let melt fail
with proper exit status.
2012-02-09 Dan Dennedy <[email protected]>
* src/modules/xml/consumer_xml.c: fix possible mem corruption in
filter_restricted()
* src/modules/qimage/transition_vqm.cpp: scale size and position of rendered
text with resolution
* src/modules/qimage/transition_vqm.cpp: add vqm metrics to frame properties
* src/modules/qimage/transition_vqm.cpp: fix build warning in vqm
* src/modules/swfdec/configure: fix swfdec/configure appending to config.mak
2012-02-09 Brian Matherly <[email protected]>
* Makefile: Exit make with error if any yml validation fails.
2012-02-08 Dan Dennedy <[email protected]>
* src/modules/qimage/factory.c, src/modules/qimage/transition_vqm.cpp,
src/modules/qimage/transition_vqm.yml: add rendering to vqm and yaml service
metadata
2012-02-06 Dan Dennedy <[email protected]>
* src/modules/qimage/Makefile, src/modules/qimage/factory.c,
src/modules/qimage/transition_vqm.cpp: add vqm transition
2012-02-07 Dan Dennedy <[email protected]>
* src/modules/avformat/consumer_avformat.c: fix race condition stopping
avformat consumer Reported-by: Maksym Veremeyenko
2012-02-06 Dan Dennedy <[email protected]>
* src/modules/avformat/consumer_avformat.c: only automatically set
strict=experimental when acodec=aac (3485119)
2012-02-05 Dan Dennedy <[email protected]>
* src/modules/avformat/consumer_avformat.c,
src/modules/avformat/filter_avcolour_space.c,
src/modules/avformat/producer_avformat.c: fix color problem with libav
(3483629)
2012-02-04 Dan Dennedy <[email protected]>
* src/modules/avformat/filter_avdeinterlace.c: fix crash on private symbol
when mmx disabled on libav 0.8 (3483629)
* src/modules/avformat/consumer_avformat.c,
src/modules/avformat/producer_avformat.c: fix AVOption processing on ffmpeg
0.8
* src/modules/avformat/consumer_avformat.c: add null pointer check on return
from mlt_frame_get_audio
* src/modules/core/producer_consumer.c: initialize audio_position so first
call to get_audio works
2012-02-02 Dan Dennedy <[email protected]>
* src/modules/avformat/producer_avformat.c: fix getting sample_fmt name
crashing on some versions when av_get_sample_fmt_name exists but not
avcodec_get_sample_fmt_name
2012-01-30 Dan Dennedy <[email protected]>
* src/modules/avformat/consumer_avformat.c,
src/modules/avformat/producer_avformat.c: fix AVOption processing on libav
0.7.3 Patch for consumer by j-b-m and extended to producer by me.
2012-01-28 Dan Dennedy <[email protected]>
* src/modules/avformat/consumer_avformat.c: fix build on ffmpeg 0.6
* src/modules/avformat/consumer_avformat.c,
src/modules/avformat/filter_avresample.c,
src/modules/avformat/producer_avformat.c: fix SAMPLE_FMT support for v0.6 and
less of libav/ffmpeg
* src/modules/avformat/filter_avresample.c,
src/modules/avformat/producer_avformat.c: convert all SAMPLE_FMT_16 to
AV_SAMPLE_FMT_16
* src/modules/xml/consumer_xml.c: fix invalid free when making absolute path
relative Patch by j-b-m and reformatted by me.
* src/modules/xml/consumer_xml.c: fix string allocation length
* src/framework/mlt_service.c: correct documentation of
mlt_service_disconnect
2012-01-22 Brian Matherly <[email protected]>
* src/modules/xml/producer_xml.c: Print useful information for xml parse
errors and warnings. Skip second pass if first pass fails.
2012-01-25 Dan Dennedy <[email protected]>
* src/modules/avformat/consumer_avformat.c: increase sample format support to
audio encoding This also fixes the latest aac encoder, which accepts
interleaved float input only.
* src/modules/core/filter_audiochannels.c,
src/modules/core/filter_channelcopy.c, src/modules/core/filter_mono.c: add
s32le and f32le format to core audio filters
* src/framework/mlt_types.h, src/modules/core/filter_audioconvert.c: add
support for converting between all audio sample formats
2012-01-24 Dan Dennedy <[email protected]>
* src/modules/avformat/consumer_avformat.c: default to strict=experimental
for painless aac encoding
2012-01-23 Brian Matherly <[email protected]>
* src/modules/xml/producer_xml.c: Convert producer_xml.c to use
mlt_log_warning()
2012-01-22 Brian Matherly <[email protected]>
* src/modules/xml/producer_xml.c: Print useful information for xml parse
errors.
2012-01-23 Dan Dennedy <[email protected]>
* src/modules/xml/consumer_xml.c: remove old 8-bit only version of xml char
filter
2012-01-22 Dan Dennedy <[email protected]>
* src/modules/xml/consumer_xml.c: switch to working wchar version of xml char
filter I want to ensure this works on more platforms before removing the
non-
* src/modules/xml/consumer_xml.c: quick fix for xml containing bad characters
Per the XML standard only the following characters are permitted: Char
::= #x9 | #xA | #xD | [#x20-#xD7FF] | [#xE000-#xFFFD] |
[#x10000-#x10FFFF] /* any Unicode character, excluding the surrogate
blocks, FFFE, and FFFF. */ This fix does not properly handle the ranges for
multi-byte characters, but it does remove the invalid single-byte "control
characters."
2012-01-21 Dan Dennedy <[email protected]>
* src/modules/avformat/consumer_avformat.c, src/modules/avformat/factory.c,
src/modules/avformat/producer_avformat.c: remove global avformat mutex and
add a local one to the producer for open/close coherency
2012-01-17 Marco Gittler <[email protected]>
* src/modules/videostab/filter_videostab2.c: fixed bug when resizing in
consumer
2012-01-21 Dan Dennedy <[email protected]>
* src/framework/mlt_producer.h, src/framework/mlt_service.h: update doc on
service-change and producer-changed events
* src/framework/mlt_service.c: fix property-changed becoming a
service-changed event (kdenlive-2468)
2012-01-19 j-b-m <[email protected]>
* src/modules/kdenlive/filter_freeze.c: fix freeze filter not retrieving
image of frame not within in-out
2012-01-18 Brian Matherly <[email protected]>
* src/modules/avformat/factory.c: Add use of av_lockmgr_register in addition
to the existing mutex for avformat services.
2012-01-17 Dan Dennedy <[email protected]>
* src/modules/gtk2/producer_pango.yml, src/modules/gtk2/producer_pixbuf.yml:
document force_aspect_ratio on pango and pixbuf producers
2012-01-14 Maksym Veremeyenko <[email protected]>
* src/modules/gtk2/producer_pango.c: fix pango's producer force_aspect_ratio
property handling
* docs/mlt-xml.txt: fix tag closing
2012-01-16 Dan Dennedy <[email protected]>
* src/modules/avformat/consumer_avformat.c: fix segfault accessing possible
null frame (only when real_time > 0?) Patch-by: Maksym Veremeyenko
2012-01-15 Dan Dennedy <[email protected]>
* src/modules/avformat/consumer_avformat.c,
src/modules/avformat/producer_avformat.c: enable codec- and format-specific
options for v0.7 releases of ffmpeg (but not libav, which uses v53 of
libavformat and libavcodec in its 0.7 releases)
2012-01-14 Dan Dennedy <[email protected]>
* src/modules/avformat/consumer_avformat.c, src/modules/avformat/factory.c,
src/modules/avformat/producer_avformat.c: drop deprecated APIs of
libavformat/codec v53
* src/modules/core/producer_melt.c: fix melt parsing URL with query string
when not followed by -consumer, -profile, or -serialise
2012-01-12 Dan Dennedy <[email protected]>
* src/modules/jackrack/Makefile: fix typo in previous fix for jackrack on
Fedora 16 (3468312)
* src/modules/jackrack/Makefile: fix segfault loading jackrack on Fedora 16
(3468312)
2012-01-02 Dan Dennedy <[email protected]>
* src/modules/videostab/Makefile: fix videostab sse2 build cont'd
2012-01-02 gmarco <[email protected]>
* src/modules/videostab/filter_videostab.c,
src/modules/videostab/stab/resample.c, src/modules/videostab/stab/resample.h,
src/modules/videostab/stab/utils.c, src/modules/videostab/stab/utils.h: do
not use lanc_kernels as global var. moved to filter struct
2012-01-01 Dan Dennedy <[email protected]>
* src/modules/videostab/Makefile: fix videostab build with sse2
2011-12-28 gmarco <[email protected]>
* src/modules/videostab/transform_image.c: fixed wrong parameter order
2011-12-27 Dan Dennedy <[email protected]>
* src/modules/avformat/factory.c: call avformat_network_init()
2011-12-22 gmarco <[email protected]>
* src/modules/videostab/transform_image.c: use interpolation type from filter
also in rgb
* src/modules/videostab/filter_videostab.c: fixed wrong image format
2011-12-16 gmarco <[email protected]>
* src/modules/videostab/filter_videostab2.c,
src/modules/videostab/stabilize.c, src/modules/videostab/stabilize.h,
src/modules/videostab/transform_image.c,
src/modules/videostab/transform_image.h: use calloc insteadt of malloc/memset
use struct for instance data small cleanup use PIX(n) dont use instable
yuv420 use stabilize on grayimage (converted from yuv422)
2011-11-21 Marco Gittler <[email protected]>
* src/modules/videostab/stabilize.c, src/modules/videostab/transform_image.c:
sse2 updates
2011-12-16 gmarco <[email protected]>
* src/modules/videostab/filter_videostab.c: image format error fix
2011-12-15 gmarco <[email protected]>
* src/modules/videostab/filter_videostab2.c: fixed bug, resulting in crash at
end and wrong first image
2011-12-22 gmarco <[email protected]>
* src/modules/videostab/transform_image.c: use interpolation type from filter
also in rgb
2011-12-21 Dan Dennedy <[email protected]>
* configure, src/mlt++/configure: add configure support for GNU Hurd Patches
provided by Patrick Matthäi.
* src/modules/rtaudio/RtAudio.cpp, src/modules/rtaudio/configure: only build
rtaudio for Linux, Windows, or OS X
* src/framework/Makefile, src/framework/configure,
src/framework/mlt_property.h: add support for xlocale.h on FreeBSD with
assistance from Gleb Smirnoff
2011-12-22 gmarco <[email protected]>
* src/modules/videostab/filter_videostab.c: fixed wrong image format
2011-12-16 gmarco <[email protected]>
* src/modules/videostab/filter_videostab2.c,
src/modules/videostab/stabilize.c, src/modules/videostab/stabilize.h,
src/modules/videostab/transform_image.c,
src/modules/videostab/transform_image.h: use calloc insteadt of malloc/memset
use struct for instance data small cleanup use PIX(n) dont use instable
yuv420 use stabilize on grayimage (converted from yuv422)
2011-12-18 Dan Dennedy <[email protected]>
* src/modules/jackrack/factory.c: fix memory leaks in jackrack/ladspa
registration
* src/modules/jackrack/plugin_mgr.c: fix crash at process exit on ladspa
plugins (3458967)
* src/modules/core/producer_noise.c: fix producer noise indicating its audio
format
2011-11-21 Marco Gittler <[email protected]>
* src/modules/videostab/stabilize.c, src/modules/videostab/transform_image.c:
sse2 updates
2011-12-16 gmarco <[email protected]>
* src/modules/videostab/filter_videostab.c: image format error fix
2011-12-15 gmarco <[email protected]>
* src/modules/videostab/filter_videostab2.c: fixed bug, resulting in crash at
end and wrong first image
2011-12-14 Dan Dennedy <[email protected]>
* src/modules/core/producer_consumer.c: fix infinite loop regression with
consumer producer on xml (3458967)
2011-12-11 Dan Dennedy <[email protected]>
* src/modules/xml/producer_xml.c: add trimming whitespace to some xml values
(debian-651604)
* src/modules/xml/producer_xml.c: stop using this for a variable name
* src/modules/xml/producer_xml.c: fix crash when fail to load filter or
transition (debian-651604)
2011-12-10 Dan Dennedy <[email protected]>
* src/modules/core/producer_colour.c, src/modules/core/producer_noise.c,
src/modules/dv/producer_libdv.c, src/modules/frei0r/producer_frei0r.c,
src/modules/gtk2/producer_pango.c, src/modules/gtk2/producer_pixbuf.c,
src/modules/qimage/producer_qimage.c, src/modules/sdl/producer_sdl_image.c:
add mlt_image_none support to producers
* src/modules/avformat/producer_avformat.c: if requested image format is
none, pick the most suitable mlt format
* src/framework/mlt_frame.c: do not try to convert image or audio if
requested format is none
* src/framework/mlt_consumer.c, src/framework/mlt_consumer.h: add consumer
properties mlt_image_format and mlt_audio_format
2011-12-09 Dan Dennedy <[email protected]>
* src/modules/core/filter_fieldorder.c,
src/modules/core/filter_fieldorder.yml: add meta.swap_fields to the
fieldorder filter
2011-12-08 Dan Dennedy <[email protected]>
* src/modules/core/Makefile, src/modules/core/factory.c,
src/modules/core/filter_fieldorder.c, src/modules/core/filter_fieldorder.yml,
src/modules/core/filter_resize.c, src/modules/core/filter_resize.yml,
src/modules/core/loader.ini: refactor field order correction into new filter
2011-12-05 Dan Dennedy <[email protected]>
* src/modules/rtaudio/consumer_rtaudio.yml: add metadata yaml for rtaudio
consumer
* src/modules/rtaudio/RtAudio.cpp, src/modules/rtaudio/RtAudio.h,
src/modules/rtaudio/consumer_rtaudio.cpp: improve selecting rtaudio device by
name
2011-12-04 Dan Dennedy <[email protected]>
* src/modules/rtaudio/RtAudio.cpp: fix multiple rtaudio consumers on OSX
* src/modules/rtaudio/consumer_rtaudio.cpp: fix setting playing member var in
rtaudio
2011-12-03 Dan Dennedy <[email protected]>
* src/modules/rtaudio/RtAudio.cpp: revert ALSA default PCM
* src/modules/rtaudio/RtAudio.cpp: fix rtaudio on mingw
2011-11-28 Dan Dennedy <[email protected]>
* src/modules/rtaudio/Makefile, src/modules/rtaudio/RtAudio.cpp,
src/modules/rtaudio/RtAudio.h, src/modules/rtaudio/RtError.h,
src/modules/rtaudio/consumer_rtaudio.cpp: add rtaudio consumer
* src/modules/core/consumer_multi.c: support consumers that use constructor
arg instead of target property
* src/modules/core/consumer_multi.c: drain nested consumers of multi consumer
* src/modules/core/consumer_multi.c: fix stopping in multi consumer
2011-11-27 Dan Dennedy <[email protected]>
* src/modules/avformat/producer_avformat.c, src/modules/avformat/vdpau.c: fix
VDPAU state issues Patch by Christophe Thommeret
2011-11-25 Dan Dennedy <[email protected]>
* src/modules/decklink/consumer_decklink.cpp: fix decklink compile on mingw
2011-11-23 Dan Dennedy <[email protected]>
* src/modules/jackrack/plugin_mgr.c: fix attempt to construct LADSPA plugin
with no _init.
* src/modules/jackrack/plugin_mgr.c: fix loading LADSPA plugins with broken
constructor
2011-11-04 Dan Dennedy <[email protected]>
* src/framework/mlt_factory.c, src/modules/frei0r/factory.c,
src/modules/jackrack/plugin_mgr.c: fix frei0r and ladspa loading for
relocatable builds
2011-11-22 Dan Dennedy <[email protected]>
* src/modules/core/consumer_multi.c: default multi consumer to real_time=-1
This defaults command line and XML usage most suitable for use with avformat
consumer. We still need a way to change multi consumer properties when using
more than one -consumer with melt.
2011-11-20 Dan Dennedy <[email protected]>
* src/modules/core/producer_consumer.c: let 'mlt_profile' be a synonym for
'profile' to be consistent with consumer property name for setting profile
* src/modules/core/consumer_multi.yml: add YAML metadata for multi consumer
* src/modules/videostab/filter_videostab2.yml: fix parameter type on
videostab2 yaml
* src/modules/core/producer_consumer.yml: document profile=auto for producer
consumer
* src/modules/core/filter_resize.c: fix video glitch seen with multi consumer
* src/modules/core/consumer_multi.c: add framerate adaption to multi consumer
* src/framework/mlt_frame.c: make deep mlt_frame_clone more robust
* src/melt/melt.c: fix using a preset with multi consumer and avformat:file
2011-11-19 Dan Dennedy <[email protected]>
* src/modules/xml/producer_xml.c: add support for more than one consumer
element in xml
* src/melt/melt.c, src/modules/core/consumer_multi.c: change property
'consumer' to 'mlt_service' consistent with xml
* src/melt/melt.c: fix using multi consumer only when more than one -consumer
arg
* src/melt/melt.c: add support for multiple -consumer arguments
* src/modules/core/consumer_multi.c: add support for app-supplied properties
objects on multi consumer
* src/modules/decklink/producer_decklink.cpp: use mlt_frame_clone() instead
of local method
* src/framework/mlt_frame.c, src/framework/mlt_frame.h,
src/modules/core/consumer_multi.c: enhance mlt_frame_clone with a
deep/shallow parameter
* src/modules/decklink/producer_decklink.cpp: add caching to decklink