forked from jahrome/gst-ffmpeg
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathChangeLog
4979 lines (3763 loc) · 187 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
=== release 0.10.11 ===
2010-07-15 Edward Hervey <[email protected]>
* configure.ac:
releasing 0.10.11, "Feeding trolls is strictly forbidden"
2010-07-07 12:41:24 +0200 Edward Hervey <[email protected]>
* configure.ac:
configure.ac: 0.10.10.5 pre-release
2010-07-06 13:58:30 +0200 Edward Hervey <[email protected]>
* ext/ffmpeg/gstffmpegmux.c:
ffmpegmux: Use "Formatter/Metadata" klass when needed
https://bugzilla.gnome.org/show_bug.cgi?id=623671
2010-07-06 13:58:05 +0200 Edward Hervey <[email protected]>
* ext/ffmpeg/gstffmpegmux.c:
ffmpegmux: Add more replacements
https://bugzilla.gnome.org/show_bug.cgi?id=623671
2010-07-06 12:03:25 +0200 Edward Hervey <[email protected]>
* ext/ffmpeg/gstffmpegcodecmap.c:
codecmap: Fix the caps of various mov/amr formats
https://bugzilla.gnome.org/show_bug.cgi?id=623671
2010-07-06 11:58:40 +0200 Edward Hervey <[email protected]>
* ext/ffmpeg/gstffmpegmux.c:
gstffmpegmux: Set rank of blacklisted muxers to GST_RANK_NONE
https://bugzilla.gnome.org/show_bug.cgi?id=623671
2010-07-05 15:48:06 +0200 Edward Hervey <[email protected]>
* ext/ffmpeg/Makefile.am:
* ext/libpostproc/Makefile.am:
* ext/libswscale/Makefile.am:
ext: Fix CFLAGS order
We'd pick up system-wide ffmpeg headers otherwise
2010-07-05 10:32:42 +0200 Mark Nauwelaerts <[email protected]>
* ext/ffmpeg/gstffmpegenc.c:
ffmpegenc: fix timestamp resyncing some more
Convert bytes to samples in remaining occurrence.
See #623388.
2010-07-02 18:38:06 -0300 Thiago Santos <[email protected]>
* ext/ffmpeg/gstffmpegenc.c:
ffmpegenc: Fix timestamp resyncing
Properly convert bytes into time using sample size, sample rate
and channels number, instead of sample rate only.
This can cause huge timestamp discontinuities (even though the
durations remain correct) and might cause problems to muxers.
Fixes #623388
2010-07-02 17:21:27 +0200 Edward Hervey <[email protected]>
* ext/ffmpeg/gstffmpegmux.c:
ffmpegmux: Add rtp to the blacklisted muxers
2010-07-02 12:40:03 +0200 Edward Hervey <[email protected]>
* ext/ffmpeg/gstffmpegcodecmap.c:
codecmap: Specify the quicktime variant for mov and mp4 formats
2010-06-30 10:32:25 +0200 Edward Hervey <[email protected]>
* configure.ac:
configure.ac: 0.10.10.4 pre-release
2010-06-28 17:13:50 +0100 Tim-Philipp Müller <[email protected]>
* autogen.sh:
* configure.ac:
Bump automake requirement to 1.10, autoconf to 2.60 and libtool to 1.5
For maintainability reasons. These are the versions we require in
other modules.
2010-06-27 12:52:39 +0200 Edward Hervey <[email protected]>
* configure.ac:
0.10.10.3 pre-release
2010-06-27 12:49:02 +0200 Edward Hervey <[email protected]>
* gst-libs/ext/Makefile.am:
gst-libs: Simplify make dist by a metric truckload
Just use svn export instead of trying to be smart about which files
we need.
This makes the resulting gst-ffmpeg tarball a bit bigger, but at least
we know we have everything needed to build gst-ffmpeg
2010-06-27 10:51:48 +0200 Edward Hervey <[email protected]>
* configure.ac:
0.10.10.2 pre-release
2010-06-25 15:59:24 -0700 David Schleef <[email protected]>
* ext/ffmpeg/gstffmpegmux.c:
ffmpegmux: Add alternate element in description
For muxers where there is a better GStreamer alternative, add
"(not recommended, use alternate_element_name instead)" to
the description.
https://bugzilla.gnome.org/show_bug.cgi?id=622773
2010-06-25 15:57:45 -0700 David Schleef <[email protected]>
* ext/ffmpeg/gstffmpegmux.c:
ffmpegmux: Disable raw muxers
They are effectively identity elements. Many are already
disabled via blacklist.
https://bugzilla.gnome.org/show_bug.cgi?id=622773
2010-06-25 16:26:00 +0200 Andoni Morales Alastruey <[email protected]>
* ext/ffmpeg/gstffmpegdeinterlace.c:
ffdeinterlace: Set "interlaced=false" in the source pad's caps
https://bugzilla.gnome.org/show_bug.cgi?id=622736
2010-06-24 15:09:59 +0300 Stefan Kost <[email protected]>
* common:
Automatic update of common submodule
From 35617c2 to a519571
2010-06-16 12:10:34 +0200 Edward Hervey <[email protected]>
* gst-libs/ext/Makefile.am:
gst-libs: Fixup make distclean for new ffmpeg
2010-06-16 11:55:40 +0200 Edward Hervey <[email protected]>
* configure.ac:
configure: Disable doc/applicatoin building
2010-06-16 11:46:02 +0200 Edward Hervey <[email protected]>
* configure.ac:
configure: Use --enable-pic instead of --enabled-shared
Not sure when that option was added, but it does what we want (i.e. produce
PIC code in .a/.la that we can then link into a shared library)
2010-06-16 10:53:39 +0200 Edward Hervey <[email protected]>
* ffmpegrev:
ffmpegrev: Switch to head of ffmpeg SVN as of Wed Jun 5th
2010-06-15 19:50:29 +0200 Sebastian Dröge <[email protected]>
* ffmpegrev:
ffmpegrev: Fix checkout directory to prevent a new checkout every time autogen.sh runs
2010-06-15 16:50:33 +0200 Edward Hervey <[email protected]>
* common:
Automatic update of common submodule
From 9339ccc to 35617c2
2010-06-15 16:54:55 +0300 Stefan Kost <[email protected]>
* common:
Automatic update of common submodule
From 5adb1ca to 9339ccc
2010-06-15 16:36:03 +0300 Stefan Kost <[email protected]>
* common:
Automatic update of common submodule
From 57c89b7 to 5adb1ca
2010-06-15 15:50:24 +0300 Stefan Kost <[email protected]>
* common:
Automatic update of common submodule
From c804988 to 57c89b7
2010-06-15 09:40:18 +0200 Thijs Vermeir <[email protected]>
* ext/libpostproc/gstpostproc.c:
* ext/libswscale/gstffmpegscale.c:
Fix build if ORC is not installed
2010-06-14 15:31:34 +0200 Sebastian Dröge <[email protected]>
* ext/libpostproc/gstpostproc.c:
* ext/libswscale/gstffmpegscale.c:
ffmpeg: Call orc_init() before trying to get target flags
2010-06-14 14:38:44 +0200 Sebastian Dröge <[email protected]>
* configure.ac:
* ext/libpostproc/Makefile.am:
* ext/libpostproc/gstpostproc.c:
* ext/libswscale/Makefile.am:
* ext/libswscale/gstffmpegscale.c:
Use orc instead of liboil for CPU feature detection
2010-06-14 13:28:41 +0200 Sebastian Dröge <[email protected]>
* configure.ac:
configure: Use GLIB_EXTRA_CFLAGS
2010-06-14 13:05:39 +0200 Sebastian Dröge <[email protected]>
* common:
Automatic update of common submodule
From 7a0fdf5 to c804988
2010-06-14 11:35:21 +0200 Sebastian Dröge <[email protected]>
* common:
Automatic update of common submodule
From 6da3bab to 7a0fdf5
2010-06-12 08:29:43 +0200 Sebastian Dröge <[email protected]>
* common:
Automatic update of common submodule
From 733fca9 to 6da3bab
2010-06-11 08:23:34 +0200 Albert Lee <[email protected]>
* ext/ffmpeg/gstffmpegcodecmap.c:
gstffmpegcodecmap: Fix ATRAC1/3 caps
2010-06-09 12:40:29 -0700 David Schleef <[email protected]>
* common:
Automatic update of common submodule
From fad145b to 733fca9
2010-06-09 12:34:23 -0700 David Schleef <[email protected]>
* common:
Automatic update of common submodule
From 47683c1 to fad145b
2010-06-04 18:30:59 +0100 Zaheer Abbas Merali <[email protected]>
* ext/ffmpeg/gstffmpegdec.c:
ffmpegdec: fix typo in comment
2010-06-01 23:49:41 -0700 David Schleef <[email protected]>
* common:
Automatic update of common submodule
From 17f89e5 to 47683c1
2010-06-01 22:55:28 -0700 David Schleef <[email protected]>
* common:
Automatic update of common submodule
From fd7ca04 to 17f89e5
2010-05-31 19:18:20 +0200 Edward Hervey <[email protected]>
* configure.ac:
configure.ac: Execute ffmpeg's configure command from that directory
Avoids stupid sed warnings
2010-05-31 18:53:51 +0200 Edward Hervey <[email protected]>
* configure.ac:
configure.ac: Don't build filters
We don't use them
2010-05-31 18:53:34 +0200 Edward Hervey <[email protected]>
* ffmpegrev:
ffmpegrev: Switch to head of 0.6 branch
In preparation for ffmpeg 0.6 release
2010-05-31 18:53:12 +0200 Edward Hervey <[email protected]>
* ext/ffmpeg/gstffmpegcodecmap.c:
codecmap: First round of type mapping wrapping : image formats
2010-05-31 18:44:02 +0200 Edward Hervey <[email protected]>
* ext/ffmpeg/gstffmpegdec.c:
* ext/ffmpeg/gstffmpegenc.c:
ffmpegdec/enc: Blacklist more raw formats
2010-05-26 11:56:11 +0100 Tim-Philipp Müller <[email protected]>
* common:
Automatic update of common submodule
From 357b0db to fd7ca04
2010-05-25 14:01:34 +0100 Tim-Philipp Müller <[email protected]>
* .gitignore:
* Makefile.am:
* autogen.sh:
build: make autotools put .m4 files into m4/ instead of common/m4/
We don't want generated/copied files in common.
2010-05-25 13:56:49 +0100 Tim-Philipp Müller <[email protected]>
* configure.ac:
configure: avoid bash-ism
2010-05-25 13:26:45 +0100 Tim-Philipp Müller <[email protected]>
* Makefile.am:
build: add cruft rules for common/shave*
2010-05-25 12:55:14 +0100 Tim-Philipp Müller <[email protected]>
* ext/ffmpeg/gstffmpegdec.c:
ffmpegdec: sipro decoder should have higher rank than realaudiodec
2010-05-17 19:42:41 +0200 Edward Hervey <[email protected]>
* ext/ffmpeg/gstffmpegdec.c:
ffmpegdec: Don't leak the GstDataPassThrough items
2010-05-14 18:25:58 +0100 Tim-Philipp Müller <[email protected]>
* common:
Automatic update of common submodule
From 4d67bd6 to 357b0db
2009-03-06 13:47:05 -0500 Olivier Crête <[email protected]>
* ext/ffmpeg/gstffmpegenc.c:
gstffmpegenc: Make getcaps proxy the downstream height/width/framerate requirements
See #577784.
2009-03-05 21:35:46 -0500 Olivier Crête <[email protected]>
* ext/ffmpeg/gstffmpegcodecmap.c:
codecmap: Respect the various h263 options
See #577784.
2009-03-05 19:12:18 -0500 Olivier Crête <[email protected]>
* ext/ffmpeg/gstffmpegcfg.c:
gstffmpegcfg: Expose loop-filter flag
See #577784.
2010-05-08 13:24:47 +0200 Edward Hervey <[email protected]>
* ext/ffmpeg/gstffmpegcodecmap.c:
ffmpegcodecmap: Add mapping for SIPR
2010-04-20 17:24:50 +0100 Tim-Philipp Müller <[email protected]>
* gst-ffmpeg.doap:
doap: update repository info from cvs->git and maintainers
2010-04-23 14:42:03 +0100 Tim-Philipp Müller <[email protected]>
* common:
Automatic update of common submodule
From fc85867 to 4d67bd6
2010-04-09 11:23:37 +0200 Sebastian Dröge <[email protected]>
* common:
Automatic update of common submodule
From c1d07dd to fc85867
2010-03-24 18:55:48 +0100 Edward Hervey <[email protected]>
* common:
Automatic update of common submodule
From 55cd514 to c1d07dd
2010-03-24 16:37:37 +0100 Sebastian Dröge <[email protected]>
* ext/libpostproc/gstpostproc.c:
postproc: Mark postproc filters table as const
2010-03-24 13:15:18 +0100 Sebastian Dröge <[email protected]>
* tests/check/generic/libavcodec-locking.c:
tests: Fix compiler warning
2010-03-24 12:36:27 +0100 Sebastian Dröge <[email protected]>
* ext/libpostproc/gstpostproc.c:
* ext/libswscale/gstffmpegscale.c:
ffmpeg: Fix some remaining compiler warnings
2010-03-24 12:07:28 +0100 Sebastian Dröge <[email protected]>
* configure.ac:
* ext/ffmpeg/gstffmpegaudioresample.c:
* ext/ffmpeg/gstffmpegcfg.c:
* ext/ffmpeg/gstffmpegcfg.h:
* ext/ffmpeg/gstffmpegcodecmap.c:
* ext/ffmpeg/gstffmpegcodecmap.h:
* ext/ffmpeg/gstffmpegdeinterlace.c:
* ext/ffmpeg/gstffmpegdemux.c:
* ext/ffmpeg/gstffmpegutils.c:
* ext/ffmpeg/gstffmpegutils.h:
build: Add all kinds of compiler warning flags and fix the resulting warnings
2010-03-24 11:53:46 +0100 Sebastian Dröge <[email protected]>
* configure.ac:
configure: $GST_CVS -> $GST_GIT
2010-03-24 11:51:26 +0100 Sebastian Dröge <[email protected]>
* ext/ffmpeg/gstffmpegaudioresample.c:
* ext/ffmpeg/gstffmpegdec.c:
* ext/ffmpeg/gstffmpegdeinterlace.c:
* ext/ffmpeg/gstffmpegdemux.c:
* ext/ffmpeg/gstffmpegenc.c:
* ext/ffmpeg/gstffmpegmux.c:
* ext/ffmpeg/gstffmpegscale.c:
ffmpeg: Use gst_element_set_details_simple()
2010-03-23 18:53:24 +0100 Edward Hervey <[email protected]>
* ext/ffmpeg/gstffmpegcodecmap.c:
gstffmpegcodecmap: Give a proper mapping for NSV format
2010-03-18 14:08:51 +0100 Raimo Järvi <[email protected]>
* ext/ffmpeg/gstffmpegdec.c:
ffdec: Update caps if the aspect ratio changes
Fixes bug #613231.
2010-03-12 14:00:10 +0100 Edward Hervey <[email protected]>
* common:
Automatic update of common submodule
From e272f71 to 55cd514
2010-03-11 10:13:46 -0300 Thiago Santos <[email protected]>
* ext/ffmpeg/gstffmpegdec.c:
ffdec: Make metadata writable before setting caps
In case we haven't created the output buffer, we should make
metadata writable before setting caps on it.
Fixes check unit tests.
2010-03-08 15:00:05 -0300 Thiago Santos <[email protected]>
* ext/ffmpeg/gstffmpegdec.c:
ffdec_aac: Do not parse raw format
If the stream is 'raw' format, do not use parsers.
Re-enables the aac decoder by putting it back to default
ffdec rank.
Fixes #566250
2010-03-11 11:21:30 +0100 Benjamin Otte <[email protected]>
* common:
Automatic update of common submodule
From df8a7c8 to e272f71
2010-03-10 22:10:08 +0100 Benjamin Otte <[email protected]>
* configure.ac:
Update for recent changes to common submodule
This just replaces every "$ERROR_CFLAGS" usage with a usage of
"$WARNING_CFLAGS $ERROR_CFLAGS" to get the same functionality as
previously.
Actually using that separation will happen later.
2010-03-10 21:52:41 +0100 Benjamin Otte <[email protected]>
* common:
Automatic update of common submodule
From 9720a7d to df8a7c8
2010-03-10 20:44:28 +0100 Benjamin Otte <[email protected]>
* common:
Automatic update of common submodule
From 0b6e072 to 9720a7d
2010-03-10 16:10:27 +0100 Benjamin Otte <[email protected]>
* common:
Automatic update of common submodule
From 7cc5eb4 to 0b6e072
2010-03-10 10:06:46 +0100 Edward Hervey <[email protected]>
* configure.ac:
configure.ac: And back to development we go...
... even if some people didn't pay attention :P
2010-03-10 01:11:09 +0000 Tim-Philipp Müller <[email protected]>
* common:
Automatic update of common submodule
From 7aa65b5 to 7cc5eb4
2010-03-09 21:41:00 +0000 Sebastian Dröge <[email protected]>
* common:
Automatic update of common submodule
From 44ecce7 to 7aa65b5
2010-02-26 15:48:43 +0100 Sebastian Dröge <[email protected]>
* configure.ac:
configure: Use automake 1.11 silent rules instead of shave if available
This makes sure that we use something that is still maintained and
also brings back libtool 1.5 support.
=== release 0.10.10 ===
2010-03-06 14:06:06 +0100 Edward Hervey <[email protected]>
* ChangeLog:
* NEWS:
* RELEASE:
* configure.ac:
releasing 0.10.10, "It's the bomb"
2010-03-04 09:55:33 +0100 Edward Hervey <[email protected]>
* configure.ac:
0.10.9.4 pre-release
2010-03-04 08:58:36 +0100 Edward Hervey <[email protected]>
* ext/ffmpeg/gstffmpegdemux.c:
ffmpegdemux: Use av_free_packet.
Fixes #611782
2010-03-03 18:46:25 +0100 Edward Hervey <[email protected]>
* ext/ffmpeg/gstffmpegdec.c:
gstffmpegdec: Disable direct-rendering for svq1/vp56 decoders.
They use a non-standard stride which we can't support.
Fixes #610613
2010-03-03 18:35:40 +0100 Edward Hervey <[email protected]>
* ext/ffmpeg/gstffmpegcodecmap.c:
gstffmpegcodecmap: Remove 'format' specified for wmv3 decoder.
Allows WMVA (Advanced Profile) videos to be properly auto-linked.
Doesn't introduce a regression for VC1 files.
Fixes #611722
2010-02-28 15:10:34 +0100 Edward Hervey <[email protected]>
* ext/ffmpeg/gstffmpegdec.c:
gstffmpegdec: Handle durations in reordered frames
The buffer durations were not being reordered along with the timestamp
and offset of the buffers, resulting in buffers using the duration of the
latest incoming frame instead of their original frame.
Fixes #611398
2010-02-24 22:05:50 +0000 Tim-Philipp Müller <[email protected]>
* configure.ac:
0.10.9.3 pre-release
2010-02-19 20:33:06 +0100 Mark Nauwelaerts <[email protected]>
* ext/ffmpeg/gstffmpegdec.c:
ffmpegdec: do not store timestamp for buffer that will be skipped
Fixes #610481.
2010-02-19 16:23:27 +0100 Edward Hervey <[email protected]>
* configure.ac:
configure.ac: 0.10.19.2 pre-release
2010-02-19 17:40:07 +0100 Edward Hervey <[email protected]>
* configure.ac:
configure.ac: Add build directories to CFLAGS
Needed to pick up files created at compile time (like libavutil/avconfig.h)
2010-02-18 13:28:40 +0100 Edward Hervey <[email protected]>
* ext/ffmpeg/gstffmpegdec.c:
gstffmpegdec: Don't enable xvmc decoders, we can't support the output
2010-02-18 13:27:15 +0100 Edward Hervey <[email protected]>
* ext/ffmpeg/gstffmpegcodecmap.c:
gstffmpegcodecmap: Add mapping for Indeo 5
2010-02-18 13:24:39 +0100 Edward Hervey <[email protected]>
* ext/ffmpeg/gstffmpegcodecmap.c:
gstffmpegcodecmap: Add mapping for Windows Media Speech
2010-02-18 13:29:03 +0100 Edward Hervey <[email protected]>
* ffmpegrev:
ffmpegrev: Move to FFmpeg revision of Feb 18th 2010
2010-02-14 23:18:58 +0100 Sebastian Dröge <[email protected]>
* common:
Automatic update of common submodule
From 96dc793 to 44ecce7
2010-02-04 17:08:41 +0100 Wim Taymans <[email protected]>
* ext/ffmpeg/gstffmpegcodecmap.c:
ffdec: fixup QCELP to always be mono
Make QCELP always mono, even if the caps tell us a different layout.
2010-02-04 13:26:16 +0100 Wim Taymans <[email protected]>
* ext/ffmpeg/gstffmpegdec.c:
ffmpegdec: only clip to a smaller region
When we have an input width/height that should be used for clipping, only
perform the clipping if the rectangle is smaller than the actual picture size.
Fixes #330681
2010-02-01 15:25:11 +0100 Wim Taymans <[email protected]>
* ext/ffmpeg/gstffmpegdec.c:
ffdec: free audio buffer when not decoded
When we don't decode an audio frame (for audio codecs that need a previous audio
frame) free the buffer we allocated.
See #608564
2010-01-30 15:20:12 +0000 Tim-Philipp Müller <[email protected]>
* common:
Automatic update of common submodule
From 15d47a6 to 96dc793
2010-01-29 13:58:20 +0100 Wim Taymans <[email protected]>
* ext/ffmpeg/gstffmpegcodecmap.c:
ffmpegcodecmap: don't escape codec_data
Don't escape the codec_data, it breaks some streams (but likely also fixes
others). It's better to leave it as is, like most other players do.
See #608332
2010-01-25 16:40:20 +0100 Edward Hervey <[email protected]>
* ext/ffmpeg/gstffmpegdemux.c:
* ext/ffmpeg/gstffmpegmux.c:
ffmpegmux/demux: Blacklist ASS/SSA 'demuxers'.
They're not a container format, but a subtitle format, and we already
have plugins to handle those subtitle formats.
2010-01-25 11:59:29 +0100 Edward Hervey <[email protected]>
* ffmpegrev:
ffmpegrev: Update to ffmpeg/swscale checkouts of Mon Jan 25 2010
ffmpeg received an overwhelming amount of h264 decoding improvements since
the last checkout, some minor fixes here and there and no apparent regressions.
Also set a specific swscale revision to checkout.
2010-01-23 15:34:28 +0100 Edward Hervey <[email protected]>
* ext/ffmpeg/gstffmpegcodecmap.c:
ffmpegcodecmap: Add proper mapping for Zip Block Motion Video
2010-01-23 14:41:49 +0100 Edward Hervey <[email protected]>
* ext/ffmpeg/gstffmpegcodecmap.c:
ffmpegcodecmap: Add proper mapping for LOCO Lossless codec
2010-01-23 13:51:24 +0100 Edward Hervey <[email protected]>
* ext/ffmpeg/gstffmpegcodecmap.c:
gstffmpegcodecmap: Make a proper mapping for Autodesk Animator Codec
2010-01-22 13:46:01 +0100 Alessandro Decina <[email protected]>
* ext/ffmpeg/gstffmpegdec.c:
Revert a change I accidentally introduced in 7c91fb.
I removed the plugin name from an error message for no good reason.
2010-01-22 12:58:13 +0100 Alessandro Decina <[email protected]>
* configure.ac:
Fix the check if libswscale needs enabling explicitly under OS X.
2010-01-22 11:43:39 +0100 Alessandro Decina <[email protected]>
* ext/ffmpeg/gstffmpegdec.c:
* ext/ffmpeg/gstffmpegdemux.c:
* ext/ffmpeg/gstffmpegprotocol.c:
Fix compiler warnings under OS X.
2010-01-20 00:55:26 +0000 Tim-Philipp Müller <[email protected]>
* common:
Automatic update of common submodule
From 14cec89 to 15d47a6
2010-01-15 22:21:42 +0100 Julien Moutte <[email protected]>
* ext/libswscale/gstffmpegscale.c:
ffvideoscale: Fix build warning.
FFMpeg swscale function wants some const pointers.
2010-01-06 11:53:23 +0100 Edward Hervey <[email protected]>
* ext/ffmpeg/gstffmpegcodecmap.c:
gstffmpegcodecmap: Add mappings for new codecs
WMAPro
Dolby TrueHD
Atrac1
TwinVQ
2010-01-06 11:51:54 +0100 Edward Hervey <[email protected]>
* configure.ac:
configure.ac: re-indent long line, remove --disable-vhook, use --disable-hwaccels
2010-01-06 11:53:01 +0100 Edward Hervey <[email protected]>
* ffmpegrev:
ffmpegrev: Bump to ffmpeg r21150 from Jan 11th 2010
2009-12-14 21:20:53 +0100 Mark Nauwelaerts <[email protected]>
* ext/ffmpeg/gstffmpegenc.c:
ffmpegenc: more consideration for upstream (audio) timestamps
2009-12-21 19:13:14 +0100 Mark Nauwelaerts <[email protected]>
* common:
Automatic update of common submodule
From 47cb23a to 14cec89
2009-12-09 15:27:14 +0000 Tim-Philipp Müller <[email protected]>
* ext/ffmpeg/gstffmpegdec.c:
ffmpegdec: ignore all vdpau decoders
Make check for vdpau decoders more generic. There might be vdpau
decoders we don't expect when using an external ffmpeg version,
and we want those blacklisted as well (e.g. ffdec_mpeg4_vdpau).
2009-12-01 15:08:27 +0000 Tim-Philipp Müller <[email protected]>
* common:
Automatic update of common submodule
From 87bf428 to 47cb23a
2009-12-01 14:18:06 +0100 Sebastian Dröge <[email protected]>
* common:
Automatic update of common submodule
From da4c75c to 87bf428
2009-11-27 18:56:28 +0100 Edward Hervey <[email protected]>
* common:
Automatic update of common submodule
From 53a2485 to da4c75c
2009-11-20 20:28:06 +0100 Jan Schmidt <[email protected]>
* ext/ffmpeg/gstffmpegcodecmap.c:
caps: Use default audio channel layouts for some codecs
For a few white-listed codecs, use default fallback channel
layouts when ffmpeg doesn't inform us.
2009-11-20 21:46:33 -0500 Olivier Crête <[email protected]>
* ext/ffmpeg/gstffmpegenc.c:
* ext/ffmpeg/gstffmpegenc.h:
ffenc: Make keyframe forcing thread-safe
Make the keyframe forcing thread-safe, also emit a downstream event
to allow muxers or payloaders to react appropriately.
https://bugzilla.gnome.org/show_bug.cgi?id=602556
2009-11-19 10:31:39 +0000 Tim-Philipp Müller <[email protected]>
* common:
Automatic update of common submodule
From 0702fe1 to 53a2485
2009-11-18 17:36:48 +0100 Edward Hervey <[email protected]>
* ext/ffmpeg/gstffmpegenc.c:
* ext/ffmpeg/gstffmpegmux.c:
Move encoders and muxers to GST_RANK_SECONDARY.
2009-11-16 13:54:16 +0100 Wim Taymans <[email protected]>
* ext/ffmpeg/gstffmpegdec.c:
ffdec: remove clipping hack
Remove a hack that seems to produce wrong clipping values.
2009-10-01 02:48:35 +0100 Jan Schmidt <[email protected]>
* ext/ffmpeg/gstffmpegcodecmap.c:
ffmpeg: VC-1/WMV3 fixes.
Use format field in the pad caps to differentiate VC-1 from WMV3.
Fix a typo in the caps creation and parsing - the field is called
'format' - not 'fourcc'
Add a dodgy hack to populate the extradata size field
(first byte) when it is 0 - as it seems to be for some (Matroska)
test files.
2009-11-10 12:30:50 +0100 Sjoerd Simons <[email protected]>
* ext/ffmpeg/gstffmpegcodecmap.c:
Always give the most video restricted caps possible
When the video caps aren't fixed yet, make sure we return the most
precise set of caps. It seems a regression was introduced in cc082f,
causing restricted caps to never be used if the context == NULL
None of the restricted caps generation uses the context, so no need to
check whether the context.
Fixes bug #578160.
2009-11-09 19:19:25 +0100 Edward Hervey <[email protected]>
* ext/ffmpeg/gstffmpegdec.c:
ffmpegdec: Only restore default in AVCodecContext when needed.
Resetting default values is currently very complex in libavcodec, so
we only call it when needed (i.e. when a context was previously used).
Shaves off 10% of the setup of a decoder.
2009-11-05 23:54:47 +0000 Tim-Philipp Müller <[email protected]>
* ext/ffmpeg/gstffmpegdec.c:
ffmpegdec: printf format fixes
2009-11-02 09:05:13 +0100 Edward Hervey <[email protected]>
* ext/ffmpeg/gstffmpegdec.c:
ffdec: Don't use an allocated 1-entry structure for private data.
If there's only one entry, just use that entry.
2009-11-02 08:49:43 +0100 Edward Hervey <[email protected]>
* ext/ffmpeg/gstffmpegmux.c:
ffmux: avoid generating caps when registering
Don't generate caps when we register the class but delay that till when
we actually create an instance of the class.
2009-11-02 08:47:12 +0100 Edward Hervey <[email protected]>
* ext/ffmpeg/gstffmpegdemux.c:
ffdemux: avoid generating caps when registering
Don't generate caps when we register the class but delay that till when
we actually create an instance of the class.
2009-11-02 08:43:17 +0100 Edward Hervey <[email protected]>
* ext/ffmpeg/gstffmpegenc.c:
* ext/ffmpeg/gstffmpegenc.h:
ffenc: avoid generating caps when registering
Don't generate caps when we register the class but delay that till when
we actually create an instance of the class.
2009-10-22 16:27:28 -0400 Wim Taymans <[email protected]>
* ext/ffmpeg/gstffmpegdec.c:
ffdec: avoid generating caps when registering
Don't generate caps when we register the class but delay that till when
we actually create an instance of the class.
2009-10-16 10:17:23 +0300 Stefan Kost <[email protected]>
* common:
Automatic update of common submodule
From 85d1530 to 0702fe1
2009-10-14 10:41:59 +0200 Edward Hervey <[email protected]>
* common:
Automatic update of common submodule
From a3e3ce4 to 85d1530
2009-10-08 13:54:45 +0200 Sebastian Dröge <[email protected]>
* ext/ffmpeg/gstffmpegenc.c:
ffmpegenc: Add a note to the buffer-size property description
Setting it has no effect anymore and is deprecated.
2009-10-08 13:52:22 +0200 Sebastian Dröge <[email protected]>
* ext/ffmpeg/gstffmpegenc.c:
Revert "ffenc: Make the buffer-size property read-only"
This reverts commit 98439aacc752432022b6fc3e5bc487d60b12dc48.
Instead of printing a warning when trying to set the property
it should do nothing as before and the property description
should contain a note that setting it has no effect.
2009-10-08 12:27:59 +0200 Sebastian Dröge <[email protected]>
* ext/ffmpeg/gstffmpegenc.c:
ffenc: Make the buffer-size property read-only
...instead of just doing nothing when setting it. This makes sure
that people notice that they shouldn't set the property because
it creates a warning now.
2009-10-08 11:01:19 +0100 Jan Schmidt <[email protected]>
* common:
Automatic update of common submodule
From 19fa4f3 to a3e3ce4
2009-10-01 16:44:22 +0200 Sebastian Dröge <[email protected]>
* ext/ffmpeg/gstffmpegenc.c:
ffenc: Make sure to always provide large enough buffers
For audio always add the minimum ffmpeg buffer size, for video
use the same weird buffer size as they use in ffmpeg.c:
width*height*6 + 200
Also make setting of the buffer-size property a no-op.
Fixes bug #593651.
2009-10-01 16:20:13 +0200 Sebastian Dröge <[email protected]>
* ext/ffmpeg/gstffmpegenc.c:
ffmpegenc: Use dash instead of underscore in property names
GLib internally converts them to dashs anyway.
2009-10-06 19:50:37 +0100 Jan Schmidt <[email protected]>
* configure.ac:
back to development -> 0.10.9.1
=== release 0.10.9 ===
2009-10-05 14:34:22 +0100 Jan Schmidt <[email protected]>
* ChangeLog:
* NEWS:
* RELEASE:
* configure.ac:
* gst-ffmpeg.doap:
Release 0.10.17
2009-10-05 15:28:33 +0100 Jan Schmidt <[email protected]>
* gst-libs/ext/Makefile.am:
Fix distclean/distcheck
2009-10-01 17:03:49 +0200 Sebastian Dröge <[email protected]>
* ext/ffmpeg/gstffmpegenc.c:
Revert "ffmpegenc: Use dash instead of underscore in property names"
This reverts commit b814d25cc9c59d227d9987f9011cfa9744fdd65d.
2009-10-01 17:03:42 +0200 Sebastian Dröge <[email protected]>
* ext/ffmpeg/gstffmpegenc.c:
Revert "ffenc: Make sure to always provide large enough buffers"
This reverts commit d9f6febe7015bbbbce7ddc82503f43751f7eb168.
2009-10-01 17:03:33 +0200 Sebastian Dröge <[email protected]>
* ext/ffmpeg/gstffmpegenc.c:
Revert "ffmpegenc: Also add FF_MIN_BUFFER_SIZE to video buffers too"
This reverts commit 577525af3d492469edd54e1c86b4ba0bfc214048.
2009-10-01 16:46:34 +0200 Sebastian Dröge <[email protected]>
* ext/ffmpeg/gstffmpegenc.c:
ffmpegenc: Also add FF_MIN_BUFFER_SIZE to video buffers too
Just to make sure we never get below it in case of very small videos.
2009-10-01 16:44:22 +0200 Sebastian Dröge <[email protected]>
* ext/ffmpeg/gstffmpegenc.c:
ffenc: Make sure to always provide large enough buffers
For audio always add the minimum ffmpeg buffer size, for video
use the same weird buffer size as they use in ffmpeg.c:
width*height*6 + 200
Also make setting of the buffer-size property a no-op.
Fixes bug #593651.
2009-10-01 16:20:13 +0200 Sebastian Dröge <[email protected]>
* ext/ffmpeg/gstffmpegenc.c:
ffmpegenc: Use dash instead of underscore in property names
GLib internally converts them to dashs anyway.
2009-09-12 01:51:11 +0100 Jan Schmidt <[email protected]>
* ChangeLog:
* configure.ac:
0.10.8.2 pre-release
2009-09-11 22:35:33 +0100 Jan Schmidt <[email protected]>
* .gitignore:
* COPYING:
* COPYING.LIB:
* README:
license: Add COPYING and COPYING.LIB
Add GPLv2 COPYING file, and LGPL COPYING.LIB. Add the boilerplate
text about the plugin code being LGPL versus the linked plugin
being GPL.
Fixes: #590964