mirrored from git://anongit.freedesktop.org/gstreamer/gst-plugins-ugly
-
Notifications
You must be signed in to change notification settings - Fork 32
/
ChangeLog
25034 lines (20112 loc) · 845 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 1.19.2 ===
2021-09-23 01:34:00 +0100 Tim-Philipp Müller <tim@centricular.com>
* ChangeLog:
* NEWS:
* RELEASE:
* gst-plugins-ugly.doap:
* meson.build:
Release 1.19.2
2021-09-21 15:05:58 +0200 Jan Alexander Steffens (heftig) <jan.steffens@ltnglobal.com>
* ext/x264/gstx264enc.c:
x264enc: Strip trailing whitespace from x264's log messages
x264 has linebreaks at the end of its log messages that we should
ignore.
Add G_GNUC_PRINTF to the callback to make sure GCC lets us forward the
format string to another function marked as printf (g_strdup_vprintf)
without triggering -Wformat-nonliteral.
Part-of: <https://gitlab.freedesktop.org/gstreamer/gst-plugins-ugly/-/merge_requests/85>
2021-09-21 14:57:29 +0200 Jan Alexander Steffens (heftig) <jan.steffens@ltnglobal.com>
* ext/x264/gstx264enc.c:
x264enc: Add the func/line info to the log callback
It looks awkward when it's missing. At least point us at the callback
function.
Part-of: <https://gitlab.freedesktop.org/gstreamer/gst-plugins-ugly/-/merge_requests/85>
2021-09-21 14:56:23 +0200 Jan Alexander Steffens (heftig) <jan.steffens@ltnglobal.com>
* ext/x264/gstx264enc.c:
x264enc: Reduce log spam about bit depth support
Part-of: <https://gitlab.freedesktop.org/gstreamer/gst-plugins-ugly/-/merge_requests/85>
2021-07-28 11:49:16 +0200 Stéphane Cerveau <scerveau@collabora.com>
* ext/mpeg2dec/gstmpeg2dec.c:
mpeg2dec: drop B-frame on open gop
Enhance open gop detection to drop B-frame which are invalid
before the first reference frame.
In stream such
gst-integration-testsuites/medias/defaults/mxf/op2b-mpeg2-wave_hd.mxf,
the two first frames must be dropped as we detect an open GOP situation
but in another media, such as http://col.la/1920X1080IXDCAMEX5MIN, the
first frames should not be dropped as we are in a closed GOP situation.
Part-of: <https://gitlab.freedesktop.org/gstreamer/gst-plugins-ugly/-/merge_requests/84>
2021-05-22 01:53:43 +0100 Tim-Philipp Müller <tim@centricular.com>
* ext/x264/gstencoderbitrateprofilemanager.c:
* gst/asfdemux/gstasfdemux.c:
* gst/realmedia/rtspreal.c:
* meson.build:
Use g_memdup2() where available and add fallback for older GLib versions
- x264 encoder bitrate profile manager: alloc size is based
on existing allocation
- asfdemux: change length var to 64-bit and check for G_MAXUINT
- realmedia: opaque_data_len is read from 32 bits and then
only subtracted upon.
g_memdup() is deprecated since GLib 2.68 and we want to avoid
deprecation warnings with recent versions of GLib.
Part-of: <https://gitlab.freedesktop.org/gstreamer/gst-plugins-ugly/-/merge_requests/83>
2021-06-01 15:28:40 +0100 Tim-Philipp Müller <tim@centricular.com>
* meson.build:
Back to development
=== release 1.19.1 ===
2021-06-01 00:12:09 +0100 Tim-Philipp Müller <tim@centricular.com>
* ChangeLog:
* NEWS:
* README:
* RELEASE:
* gst-plugins-ugly.doap:
* meson.build:
Release 1.19.1
2018-02-26 17:28:25 +0100 David Fernandez <d.fernandezlop@gmail.com>
* docs/gst_plugins_cache.json:
* ext/x264/gstx264enc.c:
x264enc: Change accepted caps width and height from [16, MAX] to [1, MAX]
There are cases where the video size might be less than 16x16.
This change allows the x264 encoder to accept this cases.
Part-of: <https://gitlab.freedesktop.org/gstreamer/gst-plugins-ugly/-/merge_requests/44>
2021-04-20 18:48:38 -0400 Doug Nazar <nazard@nazar.ca>
* gst/realmedia/rmdemux.c:
* gst/realmedia/rmdemux.h:
realmedia: Drop duplicate seek events.
Also use seek seqnum for flush & segment events/messages.
Part-of: <https://gitlab.freedesktop.org/gstreamer/gst-plugins-ugly/-/merge_requests/81>
2021-04-20 18:47:31 -0400 Doug Nazar <nazard@nazar.ca>
* gst/asfdemux/gstasfdemux.c:
asfdemux: Drop duplicate seek events.
Part-of: <https://gitlab.freedesktop.org/gstreamer/gst-plugins-ugly/-/merge_requests/81>
2021-03-29 13:41:07 +0200 Stéphane Cerveau <scerveau@collabora.com>
* gst/xingmux/gstxingmux.c:
* gst/xingmux/gstxingmux.h:
* gst/xingmux/plugin.c:
xingmux: allow per feature registration
Split plugin into features including
dynamic types which can be indiviually
registered during a static build.
More details here:
https://gitlab.freedesktop.org/gstreamer/gst-build/-/merge_requests/199
https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/661
Part-of: <https://gitlab.freedesktop.org/gstreamer/gst-plugins-ugly/-/merge_requests/79>
2021-03-29 13:39:20 +0200 Stéphane Cerveau <scerveau@collabora.com>
* gst/realmedia/pnmsrc.c:
* gst/realmedia/pnmsrc.h:
* gst/realmedia/rademux.c:
* gst/realmedia/rademux.h:
* gst/realmedia/rdtdepay.c:
* gst/realmedia/rdtdepay.h:
* gst/realmedia/rdtmanager.c:
* gst/realmedia/rdtmanager.h:
* gst/realmedia/realmedia.c:
* gst/realmedia/rmdemux.c:
* gst/realmedia/rmdemux.h:
* gst/realmedia/rtspreal.c:
* gst/realmedia/rtspreal.h:
realmedia: allow per feature registration
Split plugin into features including
dynamic types which can be indiviually
registered during a static build.
More details here:
https://gitlab.freedesktop.org/gstreamer/gst-build/-/merge_requests/199
https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/661
Part-of: <https://gitlab.freedesktop.org/gstreamer/gst-plugins-ugly/-/merge_requests/79>
2021-03-29 13:23:51 +0200 Stéphane Cerveau <scerveau@collabora.com>
* gst/dvdsub/gstdvdsubdec.c:
* gst/dvdsub/gstdvdsubdec.h:
* gst/dvdsub/gstdvdsubparse.c:
* gst/dvdsub/gstdvdsubparse.h:
dvdsub: allow per feature registration
Split plugin into features including
dynamic types which can be indiviually
registered during a static build.
More details here:
https://gitlab.freedesktop.org/gstreamer/gst-build/-/merge_requests/199
https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/661
Part-of: <https://gitlab.freedesktop.org/gstreamer/gst-plugins-ugly/-/merge_requests/79>
2021-03-29 13:15:32 +0200 Stéphane Cerveau <scerveau@collabora.com>
* gst/dvdlpcmdec/gstdvdlpcmdec.c:
* gst/dvdlpcmdec/gstdvdlpcmdec.h:
dvdlpcmdec: allow per feature registration
Split plugin into features including
dynamic types which can be indiviually
registered during a static build.
More details here:
https://gitlab.freedesktop.org/gstreamer/gst-build/-/merge_requests/199
https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/661
Part-of: <https://gitlab.freedesktop.org/gstreamer/gst-plugins-ugly/-/merge_requests/79>
2021-03-29 13:11:23 +0200 Stéphane Cerveau <scerveau@collabora.com>
* gst/asfdemux/gstasf.c:
* gst/asfdemux/gstasfdemux.c:
* gst/asfdemux/gstasfdemux.h:
* gst/asfdemux/gstasfelement.c:
* gst/asfdemux/gstasfelements.h:
* gst/asfdemux/gstrtpasfdepay.c:
* gst/asfdemux/gstrtspwms.c:
* gst/asfdemux/meson.build:
asfdemux: allow per feature registration
Split plugin into features including
dynamic types which can be indiviually
registered during a static build.
More details here:
https://gitlab.freedesktop.org/gstreamer/gst-build/-/merge_requests/199
https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/661
Part-of: <https://gitlab.freedesktop.org/gstreamer/gst-plugins-ugly/-/merge_requests/79>
2021-03-29 12:39:36 +0200 Stéphane Cerveau <scerveau@collabora.com>
* ext/x264/gstx264enc.c:
* ext/x264/gstx264enc.h:
x264: allow per feature registration
Split plugin into features including
dynamic types which can be indiviually
registered during a static build.
More details here:
https://gitlab.freedesktop.org/gstreamer/gst-build/-/merge_requests/199
https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/661
Part-of: <https://gitlab.freedesktop.org/gstreamer/gst-plugins-ugly/-/merge_requests/79>
2021-03-29 12:33:00 +0200 Stéphane Cerveau <scerveau@collabora.com>
* ext/sidplay/gstsiddec.cc:
* ext/sidplay/gstsiddec.h:
sidplay: allow per feature registration
Split plugin into features including
dynamic types which can be indiviually
registered during a static build.
More details here:
https://gitlab.freedesktop.org/gstreamer/gst-build/-/merge_requests/199
https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/661
Part-of: <https://gitlab.freedesktop.org/gstreamer/gst-plugins-ugly/-/merge_requests/79>
2021-03-29 12:31:26 +0200 Stéphane Cerveau <scerveau@collabora.com>
* ext/mpeg2dec/gstmpeg2dec.c:
* ext/mpeg2dec/gstmpeg2dec.h:
mpeg2dec: allow per feature registration
Split plugin into features including
dynamic types which can be indiviually
registered during a static build.
More details here:
https://gitlab.freedesktop.org/gstreamer/gst-build/-/merge_requests/199
https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/661
Part-of: <https://gitlab.freedesktop.org/gstreamer/gst-plugins-ugly/-/merge_requests/79>
2021-03-29 12:28:28 +0200 Stéphane Cerveau <scerveau@collabora.com>
* ext/dvdread/dvdreadsrc.c:
* ext/dvdread/dvdreadsrc.h:
dvdread: allow per feature registration
Split plugin into features including
dynamic types which can be indiviually
registered during a static build.
More details here:
https://gitlab.freedesktop.org/gstreamer/gst-build/-/merge_requests/199
https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/661
Part-of: <https://gitlab.freedesktop.org/gstreamer/gst-plugins-ugly/-/merge_requests/79>
2021-03-29 12:28:04 +0200 Stéphane Cerveau <scerveau@collabora.com>
* ext/cdio/gstcdio.c:
* ext/cdio/gstcdio.h:
* ext/cdio/gstcdiocddasrc.c:
* ext/cdio/gstcdiocddasrc.h:
cdio: allow per feature registration
Split plugin into features including
dynamic types which can be indiviually
registered during a static build.
More details here:
https://gitlab.freedesktop.org/gstreamer/gst-build/-/merge_requests/199
https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/661
Part-of: <https://gitlab.freedesktop.org/gstreamer/gst-plugins-ugly/-/merge_requests/79>
2021-03-29 10:39:46 +0200 Stéphane Cerveau <scerveau@collabora.com>
* ext/amrwbdec/amrwb.c:
* ext/amrwbdec/amrwbdec.c:
* ext/amrwbdec/amrwbdec.h:
amrwbdec: allow per feature registration
Split plugin into features including
dynamic types which can be indiviually
registered during a static build.
More details here:
https://gitlab.freedesktop.org/gstreamer/gst-build/-/merge_requests/199
https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/661
Part-of: <https://gitlab.freedesktop.org/gstreamer/gst-plugins-ugly/-/merge_requests/79>
2021-03-29 10:38:07 +0200 Stéphane Cerveau <scerveau@collabora.com>
* ext/amrnb/amrnb.c:
* ext/amrnb/amrnbdec.c:
* ext/amrnb/amrnbdec.h:
* ext/amrnb/amrnbenc.c:
* ext/amrnb/amrnbenc.h:
amrnb: allow per feature registration
Split plugin into features including
dynamic types which can be indiviually
registered during a static build.
More details here:
https://gitlab.freedesktop.org/gstreamer/gst-build/-/merge_requests/199
https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/661
Part-of: <https://gitlab.freedesktop.org/gstreamer/gst-plugins-ugly/-/merge_requests/79>
2021-03-29 10:37:26 +0200 Stéphane Cerveau <scerveau@collabora.com>
* ext/a52dec/gsta52dec.c:
* ext/a52dec/gsta52dec.h:
a52dec: allow per feature registration
Split plugin into features including
dynamic types which can be indiviually
registered during a static build.
More details here:
https://gitlab.freedesktop.org/gstreamer/gst-build/-/merge_requests/199
https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/661
Part-of: <https://gitlab.freedesktop.org/gstreamer/gst-plugins-ugly/-/merge_requests/79>
2021-03-19 15:16:06 +1100 Matthew Waters <matthew@centricular.com>
* ext/x264/gstencoderbitrateprofilemanager.c:
gst: don't use volatile to mean atomic
volatile is not sufficient to provide atomic guarantees and real atomics
should be used instead. GCC 11 has started warning about using volatile
with atomic operations.
https://gitlab.gnome.org/GNOME/glib/-/merge_requests/1719
Discovered in https://gitlab.freedesktop.org/gstreamer/gst-plugins-good/-/issues/868
Part-of: <https://gitlab.freedesktop.org/gstreamer/gst-plugins-ugly/-/merge_requests/78>
2021-03-03 11:05:14 +0200 Sebastian Dröge <sebastian@centricular.com>
* gst/realmedia/rmdemux.c:
rmdemux: Make sure we have enough data available when parsing audio/video packets
Otherwise there will be out-of-bounds reads and potential crashes.
Thanks to Natalie Silvanovich for reporting.
Fixes https://gitlab.freedesktop.org/gstreamer/gst-plugins-ugly/-/issues/37
Part-of: <https://gitlab.freedesktop.org/gstreamer/gst-plugins-ugly/-/merge_requests/74>
2020-11-04 18:44:07 +0530 Nirbheek Chauhan <nirbheek@centricular.com>
* meson.build:
meson: Enable some MSVC warnings for parity with GCC/Clang
This makes it easier to do development with MSVC by making it warn
on common issues that GCC/Clang error out for in our CI configuration.
Continuation from https://gitlab.freedesktop.org/gstreamer/gst-build/-/merge_requests/223
Part-of: <https://gitlab.freedesktop.org/gstreamer/gst-plugins-ugly/-/merge_requests/71>
2020-10-31 04:52:14 +0900 Seungha Yang <seungha@centricular.com>
* tests/check/elements/mpeg2dec.c:
tests: mpeg2dec: Don't expect BT601 color space
If it's required, mpeg2dec should set it explicitly.
Part-of: <https://gitlab.freedesktop.org/gstreamer/gst-plugins-ugly/-/merge_requests/70>
2020-09-08 17:30:39 +0100 Tim-Philipp Müller <tim@centricular.com>
* .gitlab-ci.yml:
ci: include template from gst-ci master branch again
2020-09-08 16:58:40 +0100 Tim-Philipp Müller <tim@centricular.com>
* meson.build:
Back to development
=== release 1.18.0 ===
2020-09-08 00:05:39 +0100 Tim-Philipp Müller <tim@centricular.com>
* .gitlab-ci.yml:
* ChangeLog:
* NEWS:
* README:
* RELEASE:
* gst-plugins-ugly.doap:
* meson.build:
Release 1.18.0
2020-09-07 22:40:46 +0100 Tim-Philipp Müller <tim@centricular.com>
* meson.build:
* scripts/dist-translations.py:
* scripts/meson.build:
meson: dist pot file in tarball
Part-of: <https://gitlab.freedesktop.org/gstreamer/gst-plugins-ugly/-/merge_requests/69>
2020-09-07 12:14:13 +0300 Sebastian Dröge <sebastian@centricular.com>
* ext/x264/gstx264enc.c:
x264: Update for gst_video_transfer_function_*() function renaming
Part-of: <https://gitlab.freedesktop.org/gstreamer/gst-plugins-ugly/-/merge_requests/68>
2020-08-21 10:35:11 +0300 Sebastian Dröge <sebastian@centricular.com>
* docs/gst_plugins_cache.json:
* ext/x264/gstx264enc.c:
x264enc: Allow maximum quantizer value of 63 instead of 51
QP_MAX_SPEC in x264 is set to 63 nowadays and in theory it allows even
up to 81 (QP_MAX) but that seems to be outside the spec.
Part-of: <https://gitlab.freedesktop.org/gstreamer/gst-plugins-ugly/-/merge_requests/67>
=== release 1.17.90 ===
2020-08-20 16:12:23 +0100 Tim-Philipp Müller <tim@centricular.com>
* ChangeLog:
* NEWS:
* RELEASE:
* gst-plugins-ugly.doap:
* meson.build:
Release 1.17.90
2020-07-15 10:49:03 +0300 Jordan Petridis <jordan@centricular.com>
* tests/check/elements/amrnbenc.c:
amrnbenc: remove global variables
gstcheck is declaring its own buffers glist which ends up
overwritten, loks like the code meant to use that already
gcc 10 is also complaining about this, but only on static
builds for some reason
```
FAILED: subprojects/gst-plugins-ugly/tests/check/elements_amrnbenc
/usr/bin/ld: subprojects/gstreamer/libs/gst/check/libgstcheck-1.0.a(gstcheck.c.o):(.bss+0x38): multiple definition of `buffers'; subprojects/gst-plugins-ugly/tests/check/708af1f@@elements_amrnbenc@exe/elements_amrnbenc.c.o:(.bss+0x18): first defined here
collect2: error: ld returned 1 exit status
```
also remove unused var `current_buf`
Part-of: <https://gitlab.freedesktop.org/gstreamer/gst-plugins-ugly/-/merge_requests/62>
2020-04-02 03:27:26 +1100 Jan Schmidt <jan@centricular.com>
* gst/realmedia/rmdemux.c:
rmdemux: Don't ignore the return value of gst_segment_do_seek()
If gst_segment_do_seek() fails, fail the seek.
Part-of: <https://gitlab.freedesktop.org/gstreamer/gst-plugins-ugly/-/merge_requests/45>
2020-04-01 19:34:30 +1100 Jan Schmidt <jan@centricular.com>
* gst/asfdemux/gstasfdemux.c:
asfdemux: Don't ignore the return result of gst_segment_do_seek()
gst_segment_do_seek() can fail, and our seek should fail
accordingly.
Part-of: <https://gitlab.freedesktop.org/gstreamer/gst-plugins-ugly/-/merge_requests/45>
2020-04-17 11:34:16 -0500 Derek Lesho <dlesho@codeweavers.com>
* gst/asfdemux/gstasfdemux.c:
asfdemux: Only forward SEEK event when in push mode.
Part-of: <https://gitlab.freedesktop.org/gstreamer/gst-plugins-ugly/-/merge_requests/48>
2020-07-25 21:19:20 +0100 Stéphane Cerveau <scerveau@collabora.com>
* meson.build:
meson: add a plugin summary
This summary displays a list of plugins which
have been enabled.
Part-of: <https://gitlab.freedesktop.org/gstreamer/gst-plugins-ugly/-/merge_requests/65>
2018-10-03 13:32:11 +0200 Thibault Saunier <tsaunier@igalia.com>
* ext/x264/GstX264Enc.prs:
x264enc: Add a 'Zero Latency' profile
Part-of: <https://gitlab.freedesktop.org/gstreamer/gst-plugins-ugly/-/merge_requests/42>
2020-07-22 17:31:37 +0200 Mathieu Duponchelle <mathieu@centricular.com>
* tests/check/elements/x264enc.c:
tests/x264enc: Don't declare variables inside the for loop header
This is a C99 feature
Part-of: <https://gitlab.freedesktop.org/gstreamer/gst-plugins-ugly/-/merge_requests/64>
2020-07-21 15:40:26 +0200 Jan Alexander Steffens (heftig) <jan.steffens@ltnglobal.com>
* tests/check/elements/x264enc.c:
tests: x264enc: Test formats are compatible with profile
Part-of: <https://gitlab.freedesktop.org/gstreamer/gst-plugins-ugly/-/merge_requests/59>
2020-07-01 16:11:09 +0200 Jan Alexander Steffens (heftig) <jan.steffens@ltnglobal.com>
* ext/x264/gstx264enc.c:
x264enc: Separate high-10 video formats from 8-bit formats
If downstream is constrained to an 8-bit profile, caps queries would
still allow I420_10LE as input. If upstream actually sends such a caps
event, downstream would fail to accept the high-10 profile.
The following pipeline now fails earlier, during the negotiation phase
instead of the stream start:
gst-launch-1.0 videotestsrc ! video/x-raw,format=I420_10LE \
! x264enc ! video/x-h264,profile=constrained-baseline \
! fakesink
Part-of: <https://gitlab.freedesktop.org/gstreamer/gst-plugins-ugly/-/merge_requests/59>
2020-07-21 15:39:31 +0200 Jan Alexander Steffens (heftig) <jan.steffens@ltnglobal.com>
* tests/check/elements/x264enc.c:
tests: x264enc: Test 10-bit formats
Part-of: <https://gitlab.freedesktop.org/gstreamer/gst-plugins-ugly/-/merge_requests/59>
2020-07-21 15:33:57 +0200 Jan Alexander Steffens (heftig) <jan.steffens@ltnglobal.com>
* tests/check/elements/x264enc.c:
tests: x264enc: Test all (8-bit) video formats
Part-of: <https://gitlab.freedesktop.org/gstreamer/gst-plugins-ugly/-/merge_requests/59>
2020-07-06 22:13:55 -0400 Thibault Saunier <tsaunier@igalia.com>
* ext/x264/gstx264enc.c:
x264enc: Forward downstream colorimetry and chroma-site upstream
So that the value can be used by upstream converters when necessary.
This whole logic has been copied from `__gst_video_element_proxy_caps`
but those 2 fields were missing.
Part-of: <https://gitlab.freedesktop.org/gstreamer/gst-plugins-ugly/-/merge_requests/60>
2020-07-08 17:07:35 +0100 Tim-Philipp Müller <tim@centricular.com>
* meson.build:
* scripts/extract-release-date-from-doap-file.py:
meson: set release date from .doap file for releases
Part-of: <https://gitlab.freedesktop.org/gstreamer/gst-plugins-ugly/-/merge_requests/61>
2020-07-03 02:03:37 +0100 Tim-Philipp Müller <tim@centricular.com>
* meson.build:
Back to development
=== release 1.17.2 ===
2020-07-03 00:29:25 +0100 Tim-Philipp Müller <tim@centricular.com>
* ChangeLog:
* NEWS:
* RELEASE:
* gst-plugins-ugly.doap:
* meson.build:
Release 1.17.2
2020-06-23 00:03:04 +0200 Mathieu Duponchelle <mathieu@centricular.com>
* docs/meson.build:
meson: mark plugins cache target as always stale
2020-06-19 22:55:28 -0400 Thibault Saunier <tsaunier@igalia.com>
* docs/gst_plugins_cache.json:
doc: Stop documenting properties from parents
2020-06-20 00:28:13 +0100 Tim-Philipp Müller <tim@centricular.com>
* meson.build:
Back to development
=== release 1.17.1 ===
2020-06-19 19:20:41 +0100 Tim-Philipp Müller <tim@centricular.com>
* ChangeLog:
* NEWS:
* RELEASE:
* docs/gst_plugins_cache.json:
* gst-plugins-ugly.doap:
* meson.build:
Release 1.17.1
2020-06-09 15:13:47 -0400 Thibault Saunier <tsaunier@igalia.com>
* docs/gst_plugins_cache.json:
docs: Update plugins cache
2020-06-08 09:37:10 -0400 Thibault Saunier <tsaunier@igalia.com>
* docs/gst_plugins_cache.json:
docs: Update plugins cache
2020-06-06 10:15:25 +0100 Philippe Normand <philn@igalia.com>
* ext/sidplay/gstsiddec.cc:
siddec: update gst_type_mark_as_plugin_api() calls
This was left behind in commit bc1ab5e8e00a7ed6ac5e192af9310bd2146e446a.
Part-of: <https://gitlab.freedesktop.org/gstreamer/gst-plugins-ugly/-/merge_requests/55>
2020-06-06 00:41:38 +0200 Mathieu Duponchelle <mathieu@centricular.com>
* ext/a52dec/gsta52dec.c:
* ext/amrnb/amrnbdec.c:
* ext/amrnb/amrnbenc.c:
* ext/x264/gstx264enc.c:
plugins: uddate gst_type_mark_as_plugin_api() calls
2020-06-03 18:38:28 -0400 Thibault Saunier <tsaunier@igalia.com>
* docs/meson.build:
doc: Require hotdoc >= 0.11.0
2020-05-27 16:02:02 +0300 Sebastian Dröge <sebastian@centricular.com>
* docs/gst_plugins_cache.json:
docs: Update gst_plugins_cache.json
2020-05-30 23:16:50 +0300 Sebastian Dröge <sebastian@centricular.com>
* ext/a52dec/gsta52dec.c:
* ext/amrnb/amrnbdec.c:
* ext/amrnb/amrnbenc.c:
* ext/sidplay/gstsiddec.cc:
* ext/x264/gstx264enc.c:
plugins: Use gst_type_mark_as_plugin_api() for all non-element plugin types
2020-06-02 00:41:23 +0100 Tim-Philipp Müller <tim@centricular.com>
* gst/asfdemux/gstasfdemux.c:
asfdemux: extract WM/PartOfSet disc number and count metadata
Fixes #30
Part-of: <https://gitlab.freedesktop.org/gstreamer/gst-plugins-ugly/-/merge_requests/54>
2020-06-02 00:40:48 +0100 Tim-Philipp Müller <tim@centricular.com>
* gst/asfdemux/gstasfdemux.c:
asfdemux: sprinkle some INDENT-OFF
Part-of: <https://gitlab.freedesktop.org/gstreamer/gst-plugins-ugly/-/merge_requests/54>
2020-05-27 14:42:20 +0100 Tim-Philipp Müller <tim@centricular.com>
* tests/check/meson.build:
tests: fix meson test env setup to make sure we use the right gst-plugin-scanner
If core is built as a subproject (e.g. as in gst-build), make sure to use
the gst-plugin-scanner from the built subproject. Without this, gstreamer
might accidentally use the gst-plugin-scanner from the install prefix if
that exists, which in turn might drag in gst library versions we didn't
mean to drag in. Those gst library versions might then be older than
what our current build needs, and might cause our newly-built plugins
to get blacklisted in the test registry because they rely on a symbol
that the wrongly-pulled in gst lib doesn't have.
This should fix running of unit tests in gst-build when invoking
meson test or ninja test from outside the devenv for the case where
there is an older or different-version gst-plugin-scanner installed
in the install prefix.
In case no gst-plugin-scanner is installed in the install prefix, this
will fix "GStreamer-WARNING: External plugin loader failed. This most
likely means that the plugin loader helper binary was not found or
could not be run. You might need to set the GST_PLUGIN_SCANNER
environment variable if your setup is unusual." warnings when running
the unit tests.
In the case where we find GStreamer core via pkg-config we use
a newly-added pkg-config var "pluginscannerdir" to get the right
directory. This has the benefit of working transparently for both
installed and uninstalled pkg-config files/setups.
Part-of: <https://gitlab.freedesktop.org/gstreamer/gst-plugins-ugly/-/merge_requests/53>
2020-05-27 09:13:17 +0200 Guillaume Desmottes <guillaume.desmottes@collabora.com>
* ext/dvdread/dvdreadsrc.c:
dvdreadsrc: fix uninitialized warning
Variable is always set in actual code paths but let's keep gcc happy.
Part-of: <https://gitlab.freedesktop.org/gstreamer/gst-plugins-ugly/-/merge_requests/51>
2020-05-12 05:07:47 +0530 Nirbheek Chauhan <nirbheek@centricular.com>
* ext/sidplay/meson.build:
* meson.build:
meson: Pass native: false to add_languages()
This is needed for cross-compiling without a build machine compiler
available. The option was added in 0.54, but we only need this in
Cerbero and it doesn't affect older versions so it should be ok.
Will just cause a spurious warning.
Part-of: <https://gitlab.freedesktop.org/gstreamer/gst-plugins-ugly/-/merge_requests/50>
2020-04-03 14:24:46 -0500 Derek Lesho <dlesho@codeweavers.com>
* gst/asfdemux/gstasfdemux.c:
asfdemux: Always re-initialize metadata and global_metadata
When transitioning from the PAUSED state, to the READY state, and back,
metadata and global_metadata are left uninitialized, unlike when the
demxuer transitions from NULL to READY, then to PAUSED. I have found
this to cause a segmentation fault when fields in these structures are
set.
2020-04-02 16:18:00 -0400 Nicolas Dufresne <nicolas.dufresne@collabora.com>
* ext/x264/gstx264enc.c:
x264enc: Fix 'ref' property range and default
The --ref option indicate the size of the DPB, hence should be in the range of
0 to 16. This patch also fix the default to match x264enc default 3. This
change isn't a behaviour change since we don't enforce the reported default.
2020-03-19 18:05:43 -0300 Thibault Saunier <tsaunier@igalia.com>
* ext/a52dec/gsta52dec.c:
a52dec: Mark as converter
It is able to do channel downminxing, so technically it is also a
converter
This is also important so validate knows about that when doing its
checks
2019-10-17 14:55:51 +0200 Thibault Saunier <tsaunier@igalia.com>
* ext/x264/gstencoderbitrateprofilemanager.c:
* ext/x264/gstencoderbitrateprofilemanager.h:
* ext/x264/gstx264enc.c:
* ext/x264/gstx264enc.h:
* ext/x264/meson.build:
x264enc: Respect Youtube bitrate recommandation
Properly follow google recommendations[0] concerning bitrate when the
user wants to use the youtube profile.
[0]: https://support.google.com/youtube/answer/1722171?hl=en
2019-12-18 16:09:42 +0100 Stéphane Cerveau <scerveau@collabora.com>
* ext/dvdread/dvdreadsrc.c:
ugly: use of g_value_dup_string
Use helper method to get string from GValue.
2019-12-14 18:49:54 +0700 Dmitry Shusharin <pmdvsh@gmail.com>
* ext/x264/gstx264enc.c:
x264enc: fixed codestyle
2019-12-14 17:15:21 +0700 Dmitry Shusharin <pmdvsh@gmail.com>
* ext/x264/gstx264enc.c:
x264enc: corrected em_data value in CEA-708 CC SEI message (fixes #28)
Section 4.4 of CEA-708-D specification (table 2) requires all bits to be
set inside em_data field. h264parse element (and possible third-party
decoders such as libav) also follows this requirement.
https://gitlab.freedesktop.org/gstreamer/gst-plugins-ugly/issues/28
2019-06-09 00:30:53 +0100 Tim-Philipp Müller <tim@centricular.com>
* .gitignore:
* .gitmodules:
* Makefile.am:
* README:
* autogen.sh:
* common:
* configure.ac:
* docs/.gitignore:
* docs/version.entities.in:
* ext/Makefile.am:
* ext/a52dec/Makefile.am:
* ext/amrnb/Makefile.am:
* ext/amrwbdec/Makefile.am:
* ext/cdio/Makefile.am:
* ext/dvdread/Makefile.am:
* ext/mpeg2dec/.gitignore:
* ext/mpeg2dec/Makefile.am:
* ext/sidplay/Makefile.am:
* ext/x264/Makefile.am:
* gst-libs/Makefile.am:
* gst-libs/gst/Makefile.am:
* gst/Makefile.am:
* gst/asfdemux/.gitignore:
* gst/asfdemux/Makefile.am:
* gst/dvdlpcmdec/Makefile.am:
* gst/dvdsub/Makefile.am:
* gst/realmedia/.gitignore:
* gst/realmedia/Makefile.am:
* gst/xingmux/Makefile.am:
* m4/.gitignore:
* m4/Makefile.am:
* m4/README:
* m4/a52.m4:
* m4/aalib.m4:
* m4/as-ffmpeg.m4:
* m4/as-slurp-ffmpeg.m4:
* m4/check-libheader.m4:
* m4/freetype2.m4:
* m4/gconf-2.m4:
* m4/glib.m4:
* m4/gst-fionread.m4:
* m4/gst-ivorbis.m4:
* m4/gst-sdl.m4:
* m4/gst-shout2.m4:
* m4/gst-sid.m4:
* m4/gtk.m4:
* m4/libfame.m4:
* m4/libmikmod.m4:
* m4/lrint.m4:
* m4/lrintf.m4:
* pkgconfig/.gitignore:
* pkgconfig/Makefile.am:
* pkgconfig/gstreamer-plugins-ugly-uninstalled.pc.in:
* po/.gitignore:
* po/Makevars:
* po/POTFILES:
* tests/Makefile.am:
* tests/check/.gitignore:
* tests/check/Makefile.am:
* tests/check/elements/.gitignore:
* tests/check/generic/.gitignore:
* tests/files/Makefile.am:
Remove autotools build system
2019-09-02 09:33:15 -0400 Aaron Boxer <aaron.boxer@collabora.com>
* NEWS:
* ext/mpeg2dec/gstmpeg2dec.c:
* ext/x264/gstx264enc.c:
* gst/asfdemux/gstasfdemux.c:
* gst/dvdlpcmdec/gstdvdlpcmdec.c:
* gst/dvdsub/gstdvdsubdec.c:
* gst/realmedia/rdtjitterbuffer.c:
* gst/realmedia/rtspreal.c:
* hooks/pre-commit.hook:
documentation: fix some typos
2019-08-23 19:06:59 +0200 Mathieu Duponchelle <mathieu@centricular.com>
* ext/amrnb/amrnbdec.c:
* ext/amrnb/amrnbenc.c:
* ext/amrwbdec/amrwbdec.c:
docstrings: port ulinks to markdown links
2019-08-23 16:25:25 +1000 Matthew Waters <matthew@centricular.com>
* docs/meson.build:
meson: Don't generate doc cache when no plugins are enabled
Fixes gst-build with -Dauto-features=disabled -Dugly=enabled
2019-07-15 21:56:57 +0900 Seungha Yang <seungha.yang@navercorp.com>
* ext/x264/gstx264enc.c:
x264enc: Port to color_{primaries,transfer,matrix}_to_iso
... with more color value mapping
2019-07-15 22:38:35 +0900 Seungha Yang <seungha.yang@navercorp.com>
* tests/check/elements/x264enc.c:
* tests/check/meson.build:
tests: x264enc: Enable test on Windows
... with removal of pointless unistd.h dependency.
Note that full dependency listing is required to run unit test
executable binary on Windows uninstalled environment.
2019-05-31 23:07:58 +0200 Niels De Graef <niels.degraef@barco.com>
* configure.ac:
* meson.build:
meson: Bump minimal GLib version to 2.44
This means we can use some newer features and get rid of some
boilerplate code using the G_DECLARE_* macros.
As discussed on IRC, 2.44 is old enough by now to start depending on it.
2019-05-29 23:00:48 +0200 Mathieu Duponchelle <mathieu@centricular.com>
* ext/sidplay/gstsiddec.cc:
doc: remove xml from comments
2019-05-25 14:19:54 +0200 Tim-Philipp Müller <tim@centricular.com>
* gst/asfdemux/asfheaders.h:
asfdemux: remove some unused cruft in internal headers
2019-05-16 09:15:52 -0400 Thibault Saunier <tsaunier@igalia.com>
* docs/gst_plugins_cache.json:
* docs/meson.build:
docs: Stop building the doc cache by default
And update the cache
Fixes https://gitlab.freedesktop.org/gstreamer/gst-docs/issues/36
2019-05-13 22:54:16 -0400 Thibault Saunier <tsaunier@igalia.com>
* docs/gst_plugins_cache.json:
docs: Update plugins documentation cache
2018-10-22 11:47:37 +0200 Thibault Saunier <tsaunier@igalia.com>
* Makefile.am:
* configure.ac:
* docs/Makefile.am:
* docs/all_index.md:
* docs/gst_api_version.in:
* docs/gst_plugins_cache.json:
* docs/index.md:
* docs/meson.build:
* docs/plugins/.gitignore:
* docs/plugins/Makefile.am:
* docs/plugins/gst-plugins-ugly-plugins-docs.sgml:
* docs/plugins/gst-plugins-ugly-plugins-sections.txt:
* docs/plugins/gst-plugins-ugly-plugins.args:
* docs/plugins/gst-plugins-ugly-plugins.hierarchy:
* docs/plugins/gst-plugins-ugly-plugins.interfaces:
* docs/plugins/gst-plugins-ugly-plugins.prerequisites:
* docs/plugins/gst-plugins-ugly-plugins.signals:
* docs/plugins/gst-plugins-ugly-plugins.types:
* docs/plugins/inspect/plugin-a52dec.xml:
* docs/plugins/inspect/plugin-amrnb.xml:
* docs/plugins/inspect/plugin-amrwbdec.xml:
* docs/plugins/inspect/plugin-asf.xml:
* docs/plugins/inspect/plugin-cdio.xml:
* docs/plugins/inspect/plugin-dvdlpcmdec.xml:
* docs/plugins/inspect/plugin-dvdread.xml:
* docs/plugins/inspect/plugin-dvdsub.xml:
* docs/plugins/inspect/plugin-mpeg2dec.xml:
* docs/plugins/inspect/plugin-realmedia.xml:
* docs/plugins/inspect/plugin-sid.xml:
* docs/plugins/inspect/plugin-x264.xml:
* docs/plugins/inspect/plugin-xingmux.xml:
* docs/sitemap.txt:
* ext/a52dec/meson.build:
* ext/amrnb/meson.build:
* ext/amrwbdec/meson.build:
* ext/cdio/meson.build:
* ext/dvdread/meson.build:
* ext/mpeg2dec/meson.build:
* ext/sidplay/meson.build:
* ext/x264/meson.build:
* gst/asfdemux/gstasfdemux.h:
* gst/asfdemux/meson.build:
* gst/dvdlpcmdec/meson.build:
* gst/dvdsub/meson.build:
* gst/realmedia/meson.build:
* gst/xingmux/meson.build:
* meson.build:
* meson_options.txt:
docs: Port documentation to hotdoc
2018-10-22 11:47:32 +0200 Thibault Saunier <tsaunier@igalia.com>
* ext/a52dec/gsta52dec.c:
* ext/amrnb/amrnbdec.c:
* ext/amrnb/amrnbenc.c:
* ext/amrwbdec/amrwbdec.c:
* ext/cdio/gstcdiocddasrc.c:
* ext/x264/gstx264enc.c:
* gst/asfdemux/gstasfdemux.h:
* gst/asfdemux/gstrtspwms.c:
* gst/realmedia/gstrdtbuffer.h:
* gst/realmedia/rademux.c:
* gst/realmedia/rdtmanager.c:
* gst/realmedia/rtspreal.c:
* gst/xingmux/gstxingmux.c:
docs: Port all docstring to gtk-doc markdown
2019-04-26 18:28:04 +0100 Tim-Philipp Müller <tim@centricular.com>
* ext/sidplay/meson.build:
meson: sidplay: use library() instead of shared_module()
Like we do for other plugins, and also install a .pc file
if we build the plugin statically.
2019-04-22 12:51:33 +0300 Sebastian Dröge <sebastian@centricular.com>
* ext/dvdread/meson.build:
* meson.build:
meson: Always require the gmodule dependency
It's needed by the dvdread plugin but also by the x264 plugin in certain
circumstances. As it's part of GLib and always available, simply move it
as a hard dependency to the top-level meson.build.
2019-04-19 10:28:17 +0100 Tim-Philipp Müller <tim@centricular.com>
* README:
* RELEASE:
* configure.ac:
* docs/plugins/inspect/plugin-a52dec.xml:
* docs/plugins/inspect/plugin-amrnb.xml:
* docs/plugins/inspect/plugin-amrwbdec.xml:
* docs/plugins/inspect/plugin-asf.xml:
* docs/plugins/inspect/plugin-cdio.xml:
* docs/plugins/inspect/plugin-dvdlpcmdec.xml:
* docs/plugins/inspect/plugin-dvdread.xml:
* docs/plugins/inspect/plugin-dvdsub.xml:
* docs/plugins/inspect/plugin-mpeg2dec.xml:
* docs/plugins/inspect/plugin-realmedia.xml:
* docs/plugins/inspect/plugin-sid.xml:
* docs/plugins/inspect/plugin-x264.xml:
* docs/plugins/inspect/plugin-xingmux.xml:
* meson.build:
Back to development
=== release 1.16.0 ===
2019-04-19 00:24:40 +0100 Tim-Philipp Müller <tim@centricular.com>
* ChangeLog:
* NEWS:
* README:
* RELEASE:
* configure.ac:
* gst-plugins-ugly.doap:
* meson.build:
Release 1.16.0
2019-04-19 00:24:40 +0100 Tim-Philipp Müller <tim@centricular.com>
* docs/plugins/inspect/plugin-a52dec.xml:
* docs/plugins/inspect/plugin-amrnb.xml:
* docs/plugins/inspect/plugin-amrwbdec.xml:
* docs/plugins/inspect/plugin-asf.xml:
* docs/plugins/inspect/plugin-cdio.xml:
* docs/plugins/inspect/plugin-dvdlpcmdec.xml:
* docs/plugins/inspect/plugin-dvdread.xml:
* docs/plugins/inspect/plugin-dvdsub.xml:
* docs/plugins/inspect/plugin-mpeg2dec.xml:
* docs/plugins/inspect/plugin-realmedia.xml:
* docs/plugins/inspect/plugin-sid.xml:
* docs/plugins/inspect/plugin-x264.xml:
* docs/plugins/inspect/plugin-xingmux.xml:
Update docs
2019-04-19 00:24:38 +0100 Tim-Philipp Müller <tim@centricular.com>
* po/id.po:
* po/sv.po:
Update translations
=== release 1.15.90 ===
2019-04-11 00:28:18 +0100 Tim-Philipp Müller <tim@centricular.com>
* ChangeLog:
* NEWS:
* RELEASE:
* configure.ac:
* gst-plugins-ugly.doap:
* meson.build:
Release 1.15.90
2019-04-11 00:28:18 +0100 Tim-Philipp Müller <tim@centricular.com>
* docs/plugins/inspect/plugin-a52dec.xml: