This repository has been archived by the owner on Aug 11, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 27
/
Copy pathChangeLog
6664 lines (4876 loc) · 304 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
2009-04-14 Dan Dennedy <[email protected]>
* src/modules/avformat/configure: Fix build for --avformat-svn to use FFmpeg
v0.5 and HEAD build to not use --enable-swscale.
2009-04-15 ddennedy <ddennedy@d19143bc-622f-0410-bfdd-b5b2a6649095>
* ChangeLog, Makefile: Update ChangeLog and remove svn log from the make
install target.
* NEWS, configure, src/framework/mlt.h, src/modules/avformat/configure: bump
to version 0.3.8
2009-04-13 ddennedy <ddennedy@d19143bc-622f-0410-bfdd-b5b2a6649095>
* src/modules/fezzik.ini: fezzik.ini: workaround scaling resolution
limitation with swscale filter by making it the lowest priority
* src/modules/kdenlive/producer_framebuffer.c: producer_framebuffer.c:
interpret negative speed as reverse
2009-04-09 ddennedy <ddennedy@d19143bc-622f-0410-bfdd-b5b2a6649095>
* src/modules/avformat/producer_avformat.c: producer_avformat.c: bugfix
building on some older versions.
* src/modules/avformat/consumer_avformat.c: consumer_avformat: bugfix
(kdenlive-677) to make interlaced coding automatic if profile is not
progressive and coding not explicit by ildct and ilme properties.
2009-04-07 Ray Lehtiniemi <[email protected]>
* src/modules/kdenlive/filter_boxblur.c: Fix a 64-bit segfault in kdenlive
To reproduce: - create a new project - create a color clip - add clip to
timeline - set an in point on the clip - add the box blur effect The
segfault happens because we take the negative of an unsigned integer. This
works out to a signed 32 bit value on a 64 bit platform, which causes the rgb
array bounds to be exceeded.
* src/framework/mlt_consumer.c, src/miracle/miracle_connection.c,
src/modules/kino/riff.cc: Fix up a few ignored return values
* src/framework/mlt_pool.c: Fix warning: pointer of type ‘void *’ used in
arithmetic
* src/modules/avformat/consumer_avformat.c,
src/modules/core/filter_watermark.c, src/modules/core/transition_composite.c,
src/modules/core/transition_region.c, src/modules/westley/producer_westley.c:
Constness changes
* src/framework/mlt_properties.c, src/humperdink/client.c,
src/miracle/miracle_connection.c, src/modules/avformat/consumer_avformat.c,
src/modules/core/filter_data_show.c, src/modules/kino/filehandler.cc,
src/valerie/valerie_response.c, src/valerie/valerie_response.h: Constness
changes
* src/framework/mlt_tokeniser.c, src/framework/mlt_tokeniser.h,
src/miracle/miracle_server.c, src/miracle/miracle_server.h,
src/valerie/valerie.c, src/valerie/valerie.h: Constness changes
* src/humperdink/io.c, src/humperdink/io.h,
src/modules/core/transition_composite.c, src/modules/gtk2/producer_pango.c,
src/modules/westley/consumer_westley.c, src/valerie/valerie.c,
src/valerie/valerie.h, src/valerie/valerie_parser.c,
src/valerie/valerie_parser.h, src/valerie/valerie_socket.c,
src/valerie/valerie_socket.h: Constness changes
* src/framework/mlt_events.c, src/framework/mlt_events.h, src/inigo/inigo.c,
src/modules/avformat/factory.c, src/modules/plus/transition_affine.c,
src/modules/westley/producer_westley.c, src/modules/xine/deinterlace.c,
src/modules/xine/deinterlace.h: Constness changes
* src/miracle/miracle_local.c, src/valerie/valerie.c, src/valerie/valerie.h,
src/valerie/valerie_status.c, src/valerie/valerie_tokeniser.c,
src/valerie/valerie_tokeniser.h: Constness changes
* src/humperdink/client.c, src/humperdink/io.c, src/humperdink/io.h,
src/miracle/miracle_log.c, src/miracle/miracle_log.h, src/valerie/valerie.c,
src/valerie/valerie.h, src/valerie/valerie_response.c,
src/valerie/valerie_response.h: Constness changes
* src/framework/mlt_multitrack.c, src/modules/effectv/image.c,
src/modules/gtk2/producer_pango.c, src/modules/jackrack/jack_rack.c,
src/modules/motion_est/filter_motion_est.c, src/modules/xine/xineutils.h:
Constness changes
2009-03-31 Ray Lehtiniemi <[email protected]>
* src/framework/mlt_properties.c, src/modules/westley/consumer_westley.c,
src/modules/westley/producer_westley.c: Constness changes
2009-03-04 Ray Lehtiniemi <[email protected]>
* src/framework/mlt_events.c, src/framework/mlt_events.h,
src/framework/mlt_factory.c, src/framework/mlt_factory.h,
src/framework/mlt_repository.c, src/framework/mlt_repository.h,
src/valerie/valerie_response.c, src/valerie/valerie_response.h: Constness
changes
* .gitignore: Add a .gitignore file
2009-04-05 j-b-m <j-b-m@d19143bc-622f-0410-bfdd-b5b2a6649095>
* src/modules/westley/producer_westley.c: producer_westley.c: Don't prepend
westley document root to empty properties
2009-04-03 ddennedy <ddennedy@d19143bc-622f-0410-bfdd-b5b2a6649095>
* src/modules/core/filter_crop.c: filter_crop.c: bugfix chroma alignment
2009-03-17 ddennedy <ddennedy@d19143bc-622f-0410-bfdd-b5b2a6649095>
* src/modules/frei0r/factory.c: frei0r/factory.c: add /usr/lib64 to the
default frei0r plugin path
2009-03-15 j-b-m <j-b-m@d19143bc-622f-0410-bfdd-b5b2a6649095>
* src/modules/core/transition_composite.c: transition_composite.c: allow
removing of luma file by passing an empty name
2009-03-14 ddennedy <ddennedy@d19143bc-622f-0410-bfdd-b5b2a6649095>
* src/modules/core/transition_composite.c: transition_composite.c: make luma
and luma_invert properties mutable
2009-03-10 ddennedy <ddennedy@d19143bc-622f-0410-bfdd-b5b2a6649095>
* src/modules/avformat/producer_avformat.c: producer_avformat.c: add
backwards compatibility macro for PIX_FMT_YUYV422
* src/modules/avformat/consumer_avformat.c,
src/modules/avformat/filter_avcolour_space.c,
src/modules/avformat/filter_avdeinterlace.c,
src/modules/avformat/filter_swscale.c: avformat: fix compilation due to
recent PIX_FMT changes in libavutil v50.
2009-03-08 j-b-m <j-b-m@d19143bc-622f-0410-bfdd-b5b2a6649095>
* src/modules/kdenlive/producer_framebuffer.c: producer_framebuffer.c: Fix
producer out position
2009-03-06 ddennedy <ddennedy@d19143bc-622f-0410-bfdd-b5b2a6649095>
* src/framework/mlt_log.h: mlt_log.h: add convenience macros
2009-03-03 ddennedy <ddennedy@d19143bc-622f-0410-bfdd-b5b2a6649095>
* src/modules/kino/riff.cc: kino/riff.cc: suppress compiler warning
* src/modules/frei0r/factory.c, src/modules/frei0r/producer_frei0r.c:
frei0r/factory.c, producer_frei0r.c: suppress compiler warnings
* src/framework/mlt_property.c: mlt_property.c: suppress compiler warning
2009-02-24 ddennedy <ddennedy@d19143bc-622f-0410-bfdd-b5b2a6649095>
* src/modules/core/producer_colour.c: producer_colour.c: improve previous
patch
* src/modules/core/producer_colour.c: producer_colour.c: bugfix reading color
value after westley has prepended the document path to the resource property
2009-02-23 ddennedy <ddennedy@d19143bc-622f-0410-bfdd-b5b2a6649095>
* src/modules/sdl/consumer_sdl.c, src/modules/sdl/consumer_sdl_preview.c,
src/modules/sdl/consumer_sdl_still.c: consumer_sdl*.c: apply patch from
Jean-Baptiste Mardelle to add window_background property
2009-02-20 ddennedy <ddennedy@d19143bc-622f-0410-bfdd-b5b2a6649095>
* src/modules/vmfx/filter_chroma.c, src/modules/vmfx/filter_chroma_hold.c:
filter_chroma.c: update to use new property-based color value
* src/modules/vmfx/filter_chroma_hold.c: filter_chroma_hold.c: update to use
new property-based color value
* src/modules/core/producer_colour.c: producer_colour.c: update to use new
property-based color parsing.
* src/framework/mlt_property.c: mlt_property.c: interpret hex int as unsigned
* src/modules/frei0r/frei0r_helper.c: frei0r_helper.c: cleanup color parser
to use new code in mlt_property.c
* src/framework/mlt_property.c: mlt_property.c: added parsing for color
values beginning with #
2009-02-20 blendamedt <blendamedt@d19143bc-622f-0410-bfdd-b5b2a6649095>
* src/modules/frei0r/producer_frei0r.c: modules/frei0r: added missing
producer_frei0r.c -This line, and those below, will be ignored-- A
producer_frei0r.c
* src/modules/frei0r/Makefile, src/modules/frei0r/factory.c,
src/modules/frei0r/frei0r_helper.c: added frei0r producers (patch from jb)
thx to jb
2009-02-17 ddennedy <ddennedy@d19143bc-622f-0410-bfdd-b5b2a6649095>
* src/albino/Makefile, src/humperdink/Makefile, src/inigo/Makefile,
src/miracle/Makefile: albino/Makefile, inigo/Makefile, humperdink/Makefile,
miracle/Makefile: apply patch from Alberto Villa to fix underlinking on
FreeBSD
2009-02-16 ddennedy <ddennedy@d19143bc-622f-0410-bfdd-b5b2a6649095>
* src/modules/frei0r/factory.c, src/modules/frei0r/frei0r_helper.c:
frei0r/factory.c, frei0r_helper.c: add support for color parameter type with
whitespace cleanup courtesy of eclipse.
2009-02-14 ddennedy <ddennedy@d19143bc-622f-0410-bfdd-b5b2a6649095>
* src/modules/plus/filter_affine.c: filter_affine.c: remove silly default
rotate animation for new kdenlive pan and zoom effect (kdenlive-565)
* src/modules/core/Makefile, src/modules/core/factory.c,
src/modules/core/filter_crop.c, src/modules/fezzik.ini: filter_crop.c: add
cropping filter (kdenlive-509)
* configure: configure: relax optimization level slightly to improve debugger
backtraces in bug reports
* src/modules/plus/transition_affine.c: transition_affine.c: bugfix chroma
alignment
2009-02-13 ddennedy <ddennedy@d19143bc-622f-0410-bfdd-b5b2a6649095>
* src/modules/core/filter_brightness.c: filter_brightness.c: fix the
wonkiness by filtering chroma as well.
2009-02-12 ddennedy <ddennedy@d19143bc-622f-0410-bfdd-b5b2a6649095>
* profiles/cif_15, profiles/qcif_15, profiles/quarter_15: profiles/*_15: add
some 15fps profiles
* src/modules/qimage/configure: qimage/configure: let qimage first attempt to
use Qt4 through pkg-config (canonical) without having to specify directories
or QTDIR
* src/modules/sox/configure: sox/configure: give pkg-config priority over
libst-config
2009-02-10 ddennedy <ddennedy@d19143bc-622f-0410-bfdd-b5b2a6649095>
* src/modules/qimage/configure: qimage/configure: fix build on OS X
* src/modules/avformat/filter_avdeinterlace.c: filter_avdeinterlace.c: bugfix
(kdenlive-672) deinterlace only works on left half of image
* src/modules/qimage/producer_qimage.c,
src/modules/qimage/qimage_wrapper.cpp, src/modules/qimage/qimage_wrapper.h:
producer_qimage.c, qimage_wrapper.{h,cpp}: enhance qimage producer to use the
new mlt_cache (kdenlive-575)
* src/modules/gtk2/producer_pixbuf.c: producer_pixbuf.c: enhance pixbuf
producer to use new mlt_cache (kdenlive-575)
* src/modules/avformat/consumer_avformat.c,
src/modules/avformat/producer_avformat.c,
src/modules/vorbis/producer_vorbis.c: producer_vorbis.c, producer_avformat.c,
consumer_avformat.c: update headers in services for framework changes with
addition of mlt_cache
* configure, src/framework/Makefile, src/framework/mlt.h,
src/framework/mlt_cache.c, src/framework/mlt_cache.h,
src/framework/mlt_factory.c, src/framework/mlt_factory.h,
src/framework/mlt_service.c, src/framework/mlt_service.h,
src/framework/mlt_types.h: mlt_cache.[hc], mlt_types.h, mlt_service.[hc],
mlt_factory.[hc], mlt.h: add mlt_cache and related service functions
(kdenlive-575)
* Doxyfile: Doxyfile: set tab width to 4 spaces
* src/framework/mlt_properties.c: mlt_properties.c: update doxygen comments
for some out params
* src/framework/mlt_property.c: mlt_property.c: update a doxygen comment to
label param as out
2009-02-04 ddennedy <ddennedy@d19143bc-622f-0410-bfdd-b5b2a6649095>
* debian/changelog, debian/control, debian/copyright, debian/rules: remove
the debian package subdirectory (they provide their own)
2009-02-02 ddennedy <ddennedy@d19143bc-622f-0410-bfdd-b5b2a6649095>
* configure, src/framework/mlt.h, src/modules/avformat/configure: bump to
version 0.3.6
* NEWS: NEWS: add release notes for 0.3.6
2009-02-01 ddennedy <ddennedy@d19143bc-622f-0410-bfdd-b5b2a6649095>
* src/modules/frei0r/factory.c: frei0r/factory.c: add more default locations
for locating plugins including one for MacPorts
2009-01-30 ddennedy <ddennedy@d19143bc-622f-0410-bfdd-b5b2a6649095>
* src/inigo/inigo.c: inigo.c: make usage fit in 80 columns
2009-01-29 j-b-m <j-b-m@d19143bc-622f-0410-bfdd-b5b2a6649095>
* src/modules/avformat/filter_swscale.c: filter_swscale.c: Fix compilation
(typo introduced in rev. 1330)
2009-01-29 ddennedy <ddennedy@d19143bc-622f-0410-bfdd-b5b2a6649095>
* src/modules/fezzik/producer_fezzik.c: producer_fezzik.c: do not use the
swscale filter on images wider than 2048 loaded by the sdl_image producer.
* src/modules/gtk2/producer_pixbuf.c, src/modules/qimage/producer_qimage.c,
src/modules/sdl/producer_sdl_image.c: producer_pixbuf.c, producer_qimage.c,
producer_sdl_image.c: bugfix (kdenlive-575) large memory consumption loading
many pictures.
* src/modules/avformat/filter_swscale.c: filter_swscale.c: throw assert if
creation of swscale context fails.
* src/modules/avformat/factory.c: avformat/factory.c: set ffmpeg logging to
the same level as MLT's
2009-01-27 ddennedy <ddennedy@d19143bc-622f-0410-bfdd-b5b2a6649095>
* src/modules/gtk2/producer_pixbuf.c: producer_pixbuf.c: bugfix
(kdenlive-575) memory leak
* src/modules/gtk2/producer_pixbuf.c: producer_pixbuf.c: bugfix
(kdenlive-575) memory leak
2009-01-24 ddennedy <ddennedy@d19143bc-622f-0410-bfdd-b5b2a6649095>
* src/modules/avformat/producer_avformat.c: producer_avformat.c: add version
check to use AVCodec->long_name
2009-01-23 ddennedy <ddennedy@d19143bc-622f-0410-bfdd-b5b2a6649095>
* src/modules/sdl/consumer_sdl.c: consumer_sdl.c: bugfix segfault on
unchecked pointer
* src/modules/inigo/producer_inigo.c: producer_inigo.c: bugfix segfault on
unchecked pointer
2009-01-21 ddennedy <ddennedy@d19143bc-622f-0410-bfdd-b5b2a6649095>
* docs/inigo.txt: inigo.txt: update usage info
* docs/policies.txt: policies.txt: add instruction to update version in
mlt.h\!
* src/framework/mlt.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_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: Add doxygen
documentation for mlt_profile, mlt_pool, mlt_repository, and mlt_factory.
Update copyrights to 2009. Add cross references from files to data structures
in doxygen.
2009-01-14 ddennedy <ddennedy@d19143bc-622f-0410-bfdd-b5b2a6649095>
* src/inigo/inigo.c: inigo/inigo.c: add -debug and -verbose options to turn
on additional logging.
* src/modules/avformat/consumer_avformat.c: consumer_avformat.c: set consumer
buffer prefill to 1 by default.
* src/modules/avformat/consumer_avformat.c: consumer_avformat.c: bugfix
(kdenlive-450) bad timestamps in MPEG-2 Transport Stream and possibly quite a
few other formats.
* src/modules/avformat/consumer_avformat.c: consumer_avformat.c: add support
for an=1, vn=1, acodec=none, and vcodec=none options (kdenlive-533)
2009-01-13 ddennedy <ddennedy@d19143bc-622f-0410-bfdd-b5b2a6649095>
* docs/policies.txt: docs/policies.txt: Add policy about not using stdout,
messages, and recommending the new log API.
* src/framework/Makefile, src/framework/mlt.h, src/framework/mlt_consumer.c,
src/framework/mlt_events.c, src/framework/mlt_log.c, src/framework/mlt_log.h,
src/framework/mlt_pool.c, src/framework/mlt_producer.c,
src/framework/mlt_properties.c, src/framework/mlt_repository.c,
src/framework/mlt_tractor.c, src/framework/mlt_transition.c: mlt_log.[hc],
mlt_transition.c, mlt_tractor.c, mlt_repository.c, mlt_properties.c,
mlt_producer.c, mlt_pool.c, mlt_events.c, mlt_consumer.c, mlt.h, Makefile:
add logging system based on FFmpeg's.
* configure: configure: separate -march (suitable on x86) and -mcpu (suitable
on ppc, arm, and sparc)
2009-01-08 ddennedy <ddennedy@d19143bc-622f-0410-bfdd-b5b2a6649095>
* Doxyfile: Doxyfile: strip the path to the source files
* src/modules/core/producer_consumer.c: producer_consumer.c: bugfix setting
in point
* src/framework/mlt_frame.h, src/framework/mlt_multitrack.c,
src/framework/mlt_multitrack.h, src/framework/mlt_playlist.h,
src/framework/mlt_service.h, src/framework/mlt_tractor.c,
src/framework/mlt_tractor.h: mlt_tractor.[ch], mlt_multitrack.[ch]: improve
doxygen documentation for the tractor and mulitrack classes
2009-01-06 ddennedy <ddennedy@d19143bc-622f-0410-bfdd-b5b2a6649095>
* src/modules/avformat/producer_avformat.c,
src/modules/avformat/producer_avformat.yml: producer_avformat.{c,yml}:
support special constructor argument values to list available demuxers and
decoders: f-list[[,]acodec-list][[,]vcodec-list]
* src/inigo/inigo.c: inigo/inigo.c: fix the usage help within 80 characters
wide.
* src/modules/avformat/consumer_avformat.c: consumer_avformat.c: report list
of muxers when f=list and codecs when acodec=list or vcodec=list.
* src/framework/mlt_repository.c: mlt_repository.c: report reason when dlopen
fails.
2009-01-05 ddennedy <ddennedy@d19143bc-622f-0410-bfdd-b5b2a6649095>
* src/framework/mlt_consumer.c, src/framework/mlt_consumer.h,
src/framework/mlt_filter.c, src/framework/mlt_filter.h,
src/framework/mlt_frame.h, src/framework/mlt_multitrack.c,
src/framework/mlt_multitrack.h, src/framework/mlt_producer.c,
src/framework/mlt_service.c, src/framework/mlt_service.h,
src/framework/mlt_transition.c, src/framework/mlt_transition.h:
mlt_filter.[ch], mlt_transition.[ch], mlt_consumer.[ch]: improve doxygen for
filter, transition, and consumer
2009-01-02 ddennedy <ddennedy@d19143bc-622f-0410-bfdd-b5b2a6649095>
* src/modules/avformat/configure: avformat/configure: add -lbz2 automatically
for --avformat-svn
2008-12-31 ddennedy <ddennedy@d19143bc-622f-0410-bfdd-b5b2a6649095>
* configure, src/modules/avformat/producer_avformat.c: producer_avformat.c:
fix build on older versions of ffmpeg; whitespace cleanup by eclipse.
2008-12-30 ddennedy <ddennedy@d19143bc-622f-0410-bfdd-b5b2a6649095>
* Doxyfile: Doxyfile: bump version
2008-12-29 ddennedy <ddennedy@d19143bc-622f-0410-bfdd-b5b2a6649095>
* NEWS, configure: NEWS, configure: set version to 0.3.4 and add release
notes
* src/modules/avformat/consumer_avformat.c: consumer_avformat.c: further
analysis and testing reveals the DV encoder does not need the special aspect
ratio overrides. It expects a generic input. Only the DV decoder produces the
special, proper aspect ratios for which MLT is not yet prepared.
2008-12-28 j-b-m <j-b-m@d19143bc-622f-0410-bfdd-b5b2a6649095>
* src/modules/sox/filter_sox.c: filter_sox.c: fix crash when trying to create
a sox filter with wrong name
2008-12-28 ddennedy <ddennedy@d19143bc-622f-0410-bfdd-b5b2a6649095>
* src/modules/avformat/configure: avformat/configure: update the recommended
ffmpeg revision
* src/modules/avformat/producer_avformat.c,
src/modules/core/filter_rescale.c, src/modules/core/producer_consumer.c,
src/modules/dv/producer_libdv.c: filter_rescale.c, producer_avformat.c,
producer_libdv.c, producer_consumer.c: coerce a deinterlace when scaling an
interlaced source.
2008-12-27 ddennedy <ddennedy@d19143bc-622f-0410-bfdd-b5b2a6649095>
* mlt-config-template: mlt-config-template: send deprecation warning to
stderr to prevent breaking legacy scripts and makefiles
* src/modules/core/filter_luma.c: filter_luma.c: prevent the first
application of the nested luma transition from being applied to a test card
image. This makes slideshows start without a transition at the beginning,
which is nicer and more expected.
* src/modules/core/transition_luma.c: transition_luma.c: bugfix
(kdenlive-496) floating point exception when a slideshow using filter luma is
added to a multitrack.
2008-12-26 ddennedy <ddennedy@d19143bc-622f-0410-bfdd-b5b2a6649095>
* src/modules/westley/producer_westley.c: producer_westley.c: silence
compilation warning on uninitialized variable.
* src/modules/avformat/consumer_avformat.c,
src/modules/avformat/producer_avformat.c: producer_avformat.c,
consumer_avformat.c: use av_set_string3 where available (gets rid of
deprecation warning).
* src/modules/avformat/consumer_avformat.c: consumer_avformat.c: bugfix
rendering to widescreen PAL DV.
2008-12-22 ddennedy <ddennedy@d19143bc-622f-0410-bfdd-b5b2a6649095>
* src/modules/vorbis/producer_vorbis.c: producer_vorbis.c: add meta.media.
properties.
* src/modules/dv/producer_libdv.c: producer_libdv.c: add meta.media.
properties.
* src/modules/avformat/Makefile: avformat/Makefile: suppress error on
uninstall target
* src/modules/avformat/Makefile, src/modules/avformat/configure,
src/modules/avformat/factory.c: avformat/configure, avformat/Makfile,
avformat/factory.c: Add a --avformat-no-filters configure option to
facilitate building a codecs and muxers only module. Change the module
filename for a no-codecs build to libmltffmpeg.so to prevent a clash with a
no-filters module (libmltavformat.so).
2008-12-21 ddennedy <ddennedy@d19143bc-622f-0410-bfdd-b5b2a6649095>
* src/modules/avformat/producer_avformat.c: producer_avformat.c: add a bunch
of metadata about the media under the properties key prefix "meta.media."
2008-12-21 j-b-m <j-b-m@d19143bc-622f-0410-bfdd-b5b2a6649095>
* src/modules/sdl/producer_sdl_image.c: producer_sdl_image.c: Fix crash when
attempting to play a folder without images
2008-12-20 ddennedy <ddennedy@d19143bc-622f-0410-bfdd-b5b2a6649095>
* src/modules/sdl/consumer_sdl.c: consumer_sdl.c: let it work without
filter_avcolour_space
* src/modules/core/producer_consumer.c: producer_consumer.c: use parent
profile if none specified; accept real_time properties from parent producer.
* src/modules/core/producer_consumer.c: producer_consumer.c: set our length
from the length of the nested producer so we can terminate at the end of
rendering.
* src/framework/mlt_properties.c: mlt_properties.c: fix some documentation
* src/modules/core/Makefile, src/modules/core/factory.c,
src/modules/core/producer_consumer.c: core/Makefile, core/factory.c,
core/producer_consumer.c: add new producer_consumer that will consume from an
encapsulated producer under a different profile that the parent producer
(kdenlive-323).
* src/modules/core/transition_region.c: transition_region.c: bugfix
regression with in built circle region
* src/modules/avformat/filter_swscale.c: avformat/filter_swscale.c: add
support for scaling the alpha channel (needs further testing)
* src/modules/avformat/Makefile, src/modules/avformat/factory.c,
src/modules/avformat/filter_swscale.c, src/modules/fezzik.ini:
avformat/Makefile, avformat/factory.c, avformat/filter_swscale.c: add new
image scaler using FFmpeg libswcale. fezzik.ini: add swscale at higher
priority than gtk2/rescale.
2008-12-19 ddennedy <ddennedy@d19143bc-622f-0410-bfdd-b5b2a6649095>
* src/modules/fezzik.dict: fezzik.dict: let qimage be a producer for svg
2008-12-18 ddennedy <ddennedy@d19143bc-622f-0410-bfdd-b5b2a6649095>
* src/modules/avformat/Makefile, src/modules/avformat/configure,
src/modules/avformat/factory.c: avformat/configure, avformat/Makefile,
avformat/factory.c: add configure option --avformat-no-codecs, which will
build the avformat module without the producer and consumer - useful to
people who want to make a version entirely without including FFmpeg's codecs,
which present patent royalty licensing issues.
* src/modules/avformat/configure: avformat/configure: checkout
(--avformat-svn) or recommend (--help) a specific FFmpeg revision if this is
a release version of MLT (last field of version is even).
* configure: configure: --disable-mmx implies --disable-sse
* src/modules/avformat/Makefile, src/modules/avformat/factory.c,
src/modules/avformat/filter_avdeinterlace.c: avformat/Makefile,
avformat/factory.c, avformat/filter_avdeinterlace.c: Fix and enable the
avdeinterlace filter for a non-MMX configuration.
* src/modules/avformat/producer_avformat.c: producer_avformat.c: add support
for AVOptions as properties.
2008-12-16 ddennedy <ddennedy@d19143bc-622f-0410-bfdd-b5b2a6649095>
* src/framework/mlt_events.c, src/framework/mlt_field.c,
src/framework/mlt_playlist.c, src/framework/mlt_playlist.h,
src/framework/mlt_producer.c, src/framework/mlt_tractor.c: mlt_producer.c,
mlt_playlist.h, mlt_field.h, mlt_playlist.c, mlt_tractor.c, mlt_events.c: add
doxygen docs for events, field, and playlist.
2008-12-14 ddennedy <ddennedy@d19143bc-622f-0410-bfdd-b5b2a6649095>
* src/modules/avformat/producer_avformat.c: producer_avformat.c: bugfix
(kdenlive-432) segfault when reusing previous AVFrame (paused or idling on
last frame) but the previos AVFrame was invalid (not got_picture before
erroring out).
2008-12-12 ddennedy <ddennedy@d19143bc-622f-0410-bfdd-b5b2a6649095>
* src/modules/motion_est/filter_motion_est.c: motion_est/filter_motion_est.c:
the sse compilation flag logic was inverted
* src/modules/gtk2/Makefile, src/modules/gtk2/pixops.c: gtk2/pixops.c,
gtk2/Makefile: prevent MMX on all x86_64, not just OS X
* configure: configure: add make flag and define for ARCH_X86_64 for all OSes
* configure: configure: fix mmx/sse detection on OS X and add detection of
x86_64 to define ARCH_X86_64
* src/modules/xine/Makefile, src/modules/xine/configure,
src/modules/xine/deinterlace.c, src/modules/xine/xineutils.h: xine/Makefile,
xine/xineutils.h, xine/deinterlace.c: respect mmx compilation flag instead of
using own detection xine/configure: remove, no longer necessary
* src/modules/motion_est/filter_motion_est.c: filtedr_motion_est.c: respect
new --disable-sse configure flag and whitespace cleanup
* src/modules/gtk2/Makefile, src/modules/gtk2/configure,
src/modules/gtk2/pixops.c: gtk2/Makefile, gtk2/configure, gtk2/pixops.c:
disable MMX parts on OS X - does not build
* src/modules/kino/configure: kino/configure: automatically disable on OS X -
does not build due to missing headers
* configure: configure: add --disable-sse and add mmx/sse detection for OS X
2008-12-04 ddennedy <ddennedy@d19143bc-622f-0410-bfdd-b5b2a6649095>
* profiles/atsc_1080i_50: profiles/atsc_1080i_50: added new profile for
square pixel 1080i at a PAL-like rate
* Doxyfile: Doxyfile: add doxygen config file
* src/valerie/valerie_status.h: valerie_status.h: take stdio.h header from
system include path
* docs/install.txt: docs/install.txt: fix license info on humperdink and
valerie
* configure: configure: bump the version
* 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_field.c, src/framework/mlt_field.h,
src/framework/mlt_filter.h, src/framework/mlt_frame.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/*: improve the doxygen documentation
(work in progress). This also includes removal of superfluous white space.
2008-12-02 ddennedy <ddennedy@d19143bc-622f-0410-bfdd-b5b2a6649095>
* src/modules/gtk2/producer_pixbuf.c, src/modules/qimage/producer_qimage.c,
src/modules/sdl/producer_sdl_image.c: producer_pixbuf.c, producer_qimage.c,
producer_sdl_image.c: bugfix (kdenlive-422) not validating input file for
image producers.
* src/modules/inigo/producer_inigo.c: producer_inigo.c: display a warning
when failed to load a file.
* src/modules/avformat/consumer_avformat.c: consumer_avformat.c: clean up the
dual pass log at the end of the second pass.
2008-11-25 ddennedy <ddennedy@d19143bc-622f-0410-bfdd-b5b2a6649095>
* src/modules/avformat/producer_avformat.c: producer_avformat.c: bugfix r1242
segfault due to improper audio decoder memory allocation. Also fix logical
bug with resampling on channels > 2
* src/modules/avformat/audioconvert.h,
src/modules/avformat/producer_avformat.c: producer_avformat.c: bugfix
(kdenlive-297) audio distortion with audio formats other than signed 16-bit.
2008-11-24 ddennedy <ddennedy@d19143bc-622f-0410-bfdd-b5b2a6649095>
* src/modules/fezzik.dict: fezzik.dict: added support for .tif equivalent to
.tiff
2008-11-17 ddennedy <ddennedy@d19143bc-622f-0410-bfdd-b5b2a6649095>
* src/albino/albino.c: albino.c: fix playout with SDL on Mac OS X
* src/modules/sox/filter_sox.c: filter_sox.c: bugfix (2263114) build on sox
14.2.0.
2008-11-13 j-b-m <j-b-m@d19143bc-622f-0410-bfdd-b5b2a6649095>
* src/modules/kdenlive/filter_freeze.c: filter_freeze.c: fix detection of
current frame position in a playlist
2008-11-13 ddennedy <ddennedy@d19143bc-622f-0410-bfdd-b5b2a6649095>
* src/modules/avformat/producer_avformat.c: producer_avformat.c: bugfix
(kdenlive-347) segfault when resolution is not known until after first frame
is decoded. Also, bugfix segfault when video_index or audio_index are -1
(invalid).
2008-11-13 j-b-m <j-b-m@d19143bc-622f-0410-bfdd-b5b2a6649095>
* src/modules/kdenlive/filter_freeze.c: filter_freeze.c: update frozen frame
if freeze position is changed on the fly
2008-11-13 blendamedt <blendamedt@d19143bc-622f-0410-bfdd-b5b2a6649095>
* src/modules/oldfilm/filter_vignette.c,
src/modules/oldfilm/filter_vignette.yml: filter_vignette.{c,yml}: better
standard values and correct start param name
2008-11-11 ddennedy <ddennedy@d19143bc-622f-0410-bfdd-b5b2a6649095>
* NEWS, configure: configure, NEWS: bump to version 0.3.2 and update release
notes
2008-11-09 ddennedy <ddennedy@d19143bc-622f-0410-bfdd-b5b2a6649095>
* src/modules/plus/filter_affine.c: filter_affine.c: bugfix (kdenlive-235)
rendering when used inside a multitrack.
2008-11-08 ddennedy <ddennedy@d19143bc-622f-0410-bfdd-b5b2a6649095>
* profiles/hdv_720_50p: profiles/hdv_720_50p: fix frame rate in description
* profiles/atsc_1080p_2398, profiles/atsc_1080p_24, profiles/atsc_1080p_25,
profiles/atsc_1080p_2997, profiles/atsc_1080p_30, profiles/hdv_1080_25p,
profiles/hdv_1080_30p, profiles/hdv_720_50p, profiles/hdv_720_60p:
profiles/hdv_*, profiles/atsc_*: added more HD progressive mode profiles
* src/modules/oldfilm/filter_dust.yml: filter_dust.yml: apply description fix
patch from Mads Dydensborg.
* src/modules/kdenlive/producer_framebuffer.c: producer_framebuffer.c: bugfix
segfault in construction with null argument.
* src/modules/avformat/producer_avformat.c: producer_avformat.c: bugfix
detection of aspect ratio for DV AVI (applies to raw and quicktime files as
well).
* src/modules/avformat/producer_avformat.c: producer_avformat.c: rework the
aspect ratio detection to try to fetch it from the codec and/or the stream in
newer versions of ffmpeg. This fixes aspect handling for raw DV but still not
yet for DV AVIs without the vprp chunk.
2008-11-07 ddennedy <ddennedy@d19143bc-622f-0410-bfdd-b5b2a6649095>
* src/modules/frei0r/factory.c: frei0r/factory.c: fix build on BSD
* src/modules/core/transition_mix.c: transition_mix.c: prevent serializing
previous_mix and reset previous_mix on seeking.
* src/modules/normalize/filter_volume.c: filter_volume.c: prevent serializing
previous_gain and reset previous_gain on seeking.
2008-11-06 ddennedy <ddennedy@d19143bc-622f-0410-bfdd-b5b2a6649095>
* docs/services.txt: services.txt: minor corrections to documentation for
producer_avformat
2008-11-05 j-b-m <j-b-m@d19143bc-622f-0410-bfdd-b5b2a6649095>
* src/modules/kdenlive/Makefile, src/modules/kdenlive/factory.c,
src/modules/kdenlive/filter_freeze.c: kdenlive/filter_freeze.c: added simple
freeze filter
2008-10-30 blendamedt <blendamedt@d19143bc-622f-0410-bfdd-b5b2a6649095>
* src/modules/oldfilm/filter_vignette.c,
src/modules/oldfilm/filter_vignette.yml: oldfilm/filter_vignette*: filter is
now usable with keyframes
* src/modules/frei0r/factory.c: frei0r/factory.c: set min/max values in
metadata to defined min/max from frei0r.h
* src/modules/frei0r/frei0r_helper.c: frei0r/frei0r_helper.c: frei0r double
and bool params are now useable with keyframes (mlt_geometry)
* src/modules/frei0r/factory.c: frei0r/factory.c: yml files can be used now
for critical plugins
2008-10-30 ddennedy <ddennedy@d19143bc-622f-0410-bfdd-b5b2a6649095>
* profiles/Makefile: profiles/Makefile: fix removal of turd (*~) files on
install.
* docs/TODO: docs/TODO: refer to wiki page
* Makefile: Makefile: suppress warning on ldconfig failure.
2008-10-29 ddennedy <ddennedy@d19143bc-622f-0410-bfdd-b5b2a6649095>
* src/albino/albino.c, src/inigo/inigo.c: albino.c, inigo.c: disable realtime
scheduling (kdenlive-180).
2008-10-27 j-b-m <j-b-m@d19143bc-622f-0410-bfdd-b5b2a6649095>
* src/modules/avformat/producer_avformat.c: producer_avformat.c: Fix crash /
corruption when changing audio or video index
2008-10-27 ddennedy <ddennedy@d19143bc-622f-0410-bfdd-b5b2a6649095>
* src/modules/avformat/producer_avformat.c: producer_avformat.c: optimize
slightly the stream index bugfix and update the video informational
properties on the producer when the video index changes.
* src/modules/avformat/producer_avformat.c: producer_avformat.c: bugfix
regression with audio_index and video_index in last release when I added the
feature to close file on init with re-open on first use. Also, added some
exception handling around index values.
* src/modules/vmfx/filter_mono.c: filter_mono.c: cleanup code to made it more
consistent between cases (use_alpha).
* src/modules/vmfx/filter_mono.c: filter_mono.c: bugfix (kdenlive-234)
threshold filter inverting image and add invert property to revert to old
behavior.
2008-10-25 ddennedy <ddennedy@d19143bc-622f-0410-bfdd-b5b2a6649095>
* configure, src/modules/kino/endian_types.h, src/modules/kino/riff.cc,
src/modules/sox/configure: configure, kino/enadian_types.h, kino/riff.c,
sox/configure: apply patch from Alberto Villa to fix build on FreeBSD and to
fix a sh expression bug in sox/configure.
2008-10-24 ddennedy <ddennedy@d19143bc-622f-0410-bfdd-b5b2a6649095>
* src/modules/kdenlive/producer_framebuffer.c: producer_framebuffer.c:
improve delimiter parsing to allow '?' in filename argument
* mlt-config-template: mlt-config-template: add deprecation warning
* src/modules/sox/filter_sox.c: filter_sox.c: bugfix recent build regression
on older versions of sox
2008-10-23 ddennedy <ddennedy@d19143bc-622f-0410-bfdd-b5b2a6649095>
* src/inigo/inigo.c: inigo.c: improve the usage help and add -silent and
-progress options
* src/modules/inigo/producer_inigo.c: producer_inigo.c: bugfix (2164436)
processing unknown command line options causes infinite loop
* src/inigo/Makefile, src/inigo/inigo.c: inigo.c: added -version option
* src/modules/sox/filter_sox.c: filter_sox.c: bugfix (2040035) segfault with
libsox 14.1.0
* configure: configure: -O3 is the maximum optimization level, not -O4
2008-10-21 ddennedy <ddennedy@d19143bc-622f-0410-bfdd-b5b2a6649095>
* src/modules/avformat/consumer_avformat.c: consumer_avformat.c: fix
deprecated warning on av_set_string
* src/modules/avformat/consumer_avformat.c: consumer_avformat.c: fix build on
older libavformat versions
2008-10-20 ddennedy <ddennedy@d19143bc-622f-0410-bfdd-b5b2a6649095>
* src/modules/avformat/producer_avformat.c: producer_avformat.c: bugfix Ogg
Vorbis files and possibly others that report invalid pts on some packets
* src/modules/xine/configure: xine/configure: disable module on ppc64
* src/modules/xine/configure: xine/configure: disable module on ppc64
2008-10-08 j-b-m <j-b-m@d19143bc-622f-0410-bfdd-b5b2a6649095>
* src/modules/avformat/consumer_avformat.c: consumer_avformat.c: Fix crash
introduced by FFmpeg revision 15367 (check that muxer and encoder have same
aspect ratio)
2008-10-02 ddennedy <ddennedy@d19143bc-622f-0410-bfdd-b5b2a6649095>
* src/modules/avformat/producer_avformat.c: producer_avformat.c: bugfix
reading file over http.
2008-09-22 j-b-m <j-b-m@d19143bc-622f-0410-bfdd-b5b2a6649095>
* src/modules/gtk2/producer_pixbuf.c, src/modules/qimage/qimage_wrapper.cpp:
producer_pixbuf.c, qimage_wrapper.c: Add "force_reload" option to force image
reloading in the image producers
2008-09-12 ddennedy <ddennedy@d19143bc-622f-0410-bfdd-b5b2a6649095>
* src/modules/avformat/consumer_avformat.c: consumer_avformat.c: bugfix
(2106941) compilation against recent ffmpeg changes
2008-09-07 ddennedy <ddennedy@d19143bc-622f-0410-bfdd-b5b2a6649095>
* src/modules/kino/filehandler.cc: modules/kino/filehandler.cc: compilation
fix
2008-08-26 ddennedy <ddennedy@d19143bc-622f-0410-bfdd-b5b2a6649095>
* src/modules/sox/configure, src/modules/sox/filter_sox.c: sox/configure,
filter_sox.c: fix building against sox 14.1.0.
2008-08-12 ddennedy <ddennedy@d19143bc-622f-0410-bfdd-b5b2a6649095>
* configure, src/modules/sdl/consumer_sdl.c: consumer_sdl.c: added support
for fullscreen with no mouse through the "fullscreen" property.
2008-08-06 ddennedy <ddennedy@d19143bc-622f-0410-bfdd-b5b2a6649095>
* configure: bump versions for 0.3.0 release
* Makefile: improve make dist target
* AUTHORS: add AUTHORS file
* NEWS: Add release notes file
* demo/mlt_news: demo/mlt_news: small typo
2008-08-05 j-b-m <j-b-m@d19143bc-622f-0410-bfdd-b5b2a6649095>
* src/modules/kdenlive/producer_framebuffer.c:
kdenlive/producer_framebuffer.c: keep resource file in producer and use '?'
instead of ':' to separate filename from speed, because it caused some
problems with other MLT functions
2008-08-03 j-b-m <j-b-m@d19143bc-622f-0410-bfdd-b5b2a6649095>
* src/framework/mlt_playlist.c: framework/mlt_playlist.c: check length before
inserting blank, which fixes one frame blanks that were sometimes inserted
where not needed.
2008-07-31 blendamedt <blendamedt@d19143bc-622f-0410-bfdd-b5b2a6649095>
* src/modules/frei0r/factory.c: frei0r/factory.c: use float values for
"double vars" in frei0r
2008-07-28 blendamedt <blendamedt@d19143bc-622f-0410-bfdd-b5b2a6649095>
* src/modules/frei0r/configure: frei0r/configure: removed unneeded newlines
2008-07-27 j-b-m <j-b-m@d19143bc-622f-0410-bfdd-b5b2a6649095>
* src/modules/kdenlive/producer_framebuffer.c: producer_framebuffer.c: Fix
aspect ratio with slowmotion producer
2008-07-24 j-b-m <j-b-m@d19143bc-622f-0410-bfdd-b5b2a6649095>
* src/modules/qimage/configure: qimage/configure: Fix Qt3 detection and
compilation
2008-07-22 j-b-m <j-b-m@d19143bc-622f-0410-bfdd-b5b2a6649095>
* src/modules/qimage/producer_qimage.c,
src/modules/qimage/qimage_wrapper.cpp, src/modules/qimage/qimage_wrapper.h:
qimage module: add mutex, fix caching and use alpha only if necessary (mostly
borrowed from producer_pixbuf)
2008-07-14 j-b-m <j-b-m@d19143bc-622f-0410-bfdd-b5b2a6649095>
* src/modules/qimage/configure: qimage/configure: Fix Qt4 detection
2008-07-13 ddennedy <ddennedy@d19143bc-622f-0410-bfdd-b5b2a6649095>
* src/modules/avformat/consumer_avformat.c: consumer_avformat.c: bugfix
recent regression with setting aspect ratio. Now it takes it from the profile
by default using the quotient properties for best accuracy. Now, one can also
override the aspect ratio using the same property name as the ffmpeg command
line utility ("aspect") for even greater symmetry.
* src/modules/avformat/producer_avformat.c: producer_avformat.c: bugfix
segfault when fail to open or read file in init.
2008-07-10 j-b-m <j-b-m@d19143bc-622f-0410-bfdd-b5b2a6649095>