summaryrefslogtreecommitdiff
path: root/src/htdocs/releases/1.24/release-notes-1.24.md
blob: bd3b62e76cc7b101b1562f8f704314dc6002a6b9 (plain)
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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
# GStreamer 1.24 Release Notes

GStreamer 1.24.0 was originally released on 4 March 2024.

The latest bug-fix release in the stable 1.24 series is [1.24.5](#1.24.5) and was released on 20 June 2024.

See [https://gstreamer.freedesktop.org/releases/1.24/][latest] for the latest version of this document.

*Last updated: Thursday 20 June 2024, 14:00 UTC [(log)][gitlog]*

[latest]: https://gstreamer.freedesktop.org/releases/1.24/
[gitlog]: https://gitlab.freedesktop.org/gstreamer/www/commits/main/src/htdocs/releases/1.24/release-notes-1.24.md

<a id="introduction"></a>
## Introduction

The GStreamer team is proud to announce a new major feature release in the
stable 1.x API series of your favourite cross-platform multimedia framework!

As always, this release is again packed with many new features, bug fixes and other improvements.

<a id="highlights"></a>
## Highlights

- New [Discourse forum][discourse] and [Matrix chat space][matrix]
- New Analytics and Machine Learning abstractions and elements
- Playbin3 and decodebin3 are now stable and the default in gst-play-1.0, GstPlay/GstPlayer
- The va plugin is now preferred over gst-vaapi and has higher ranks
- GstMeta serialization/deserialization and other GstMeta improvements
- New GstMeta for SMPTE ST-291M HANC/VANC Ancillary Data
- New unixfd plugin for efficient 1:N inter-process communication on Linux
- cudaipc source and sink for zero-copy CUDA memory sharing between processes
- New intersink and intersrc elements for 1:N pipeline decoupling within the same process
- Qt5 + Qt6 QML integration improvements including qml6glsrc, qml6glmixer, qml6gloverlay, and qml6d3d11sink elements
- DRM Modifier Support for dmabufs on Linux
- OpenGL, Vulkan and CUDA integration enhancements
- Vulkan H.264 and H.265 video decoders
- RTP stack improvements including new RFC7273 modes and more correct header extension handling in depayloaders
- WebRTC improvements such as support for ICE consent freshness, and a new webrtcsrc element to complement webrtcsink
- WebRTC signallers and webrtcsink implementations for LiveKit and AWS Kinesis Video Streams
- WHIP server source and client sink, and a WHEP source
- Precision Time Protocol (PTP) clock support for Windows and other additions
- Low-Latency HLS (LL-HLS) support and many other HLS and DASH enhancements
- New W3C Media Source Extensions library
- Countless closed caption handling improvements including new cea608mux and cea608tocea708 elements
- Translation support for awstranscriber
- Bayer 10/12/14/16-bit depth support
- MPEG-TS support for asynchronous KLV demuxing and segment seeking, plus various new muxer features
- Capture source and sink for AJA capture and playout cards
- SVT-AV1 and VA-API AV1 encoders, stateless AV1 video decoder
- New uvcsink element for exporting streams as UVC camera
- DirectWrite text rendering plugin for windows
- Direct3D12-based video decoding, conversion, composition, and rendering
- AMD Advanced Media Framework AV1 + H.265 video encoders with 10-bit and HDR support
- AVX/AVX2 support and NEON support on macOS on Apple ARM64 CPUs via new liborc
- GStreamer C# bindings have been updated
- Rust bindings improvements and many new and improved Rust plugins
- Rust plugins now shipped in packages for all major platforms including Android and iOS
- Lots of new plugins, features, performance improvements and bug fixes

<a id="major-changes"></a>
## Major new features and changes

<a id="community"></a>
### Discourse forum and Matrix chat space

- The new [Discourse forum][discourse] and [Matrix chat space][matrix] are
  now our preferred communication channels for support and developer chat.

- The mailing lists and IRC channel are on their way to being phased out,
  but Discourse can be used [via e-mail][discourse-email] as well.

- For release announcements please subscribe to the News + Announcements
  category on Discourse, although we will continue to also send announcements
  to the mailing list for the time being.

[discourse]: https://discourse.gstreamer.org
[discourse-email]: https://discourse.gstreamer.org/t/using-discourse-via-email/109
[matrix]: https://discourse.gstreamer.org/t/new-gstreamer-matrix-chat-space/675

<a id="playbin3"></a>
### Playbin3, decodebin3 now stable and default

- After a year of stability, testing and more improvements, `playbin3`, and its
  various components (`uridecodebin3`, `decodebin3` and `urisourcebin`), are now
  the recommended playback components.

- Some playback components have now switched to defaulting to `playbin3`:
  `gst-play-1.0` and the `GstPlay` / `GstPlayer` libraries. Application developers are
  strongly recommended to switch to using those components instead of the
  legacy `playbin` and `(uri)decodebin`.

Improvements in this cycle:

- Better support missing/faulty decoders, attempt to use another one or
  gracefully un-select the stream.

- Many fixes for more complex gapless and instant-switching scenarios

- Lower latency for live pipelines

- Fix for "chained" streams (ex: Ogg, or PMT update in MPEG-TS)

- Fixes for hardware-accelerated playback with subtitles (provided the sink
  can handle offloading composition). This was also partly due to a historical
  confusion between subtitle "decoders" (which decode the format to text
  and "parsers" (which only do timing detection and optional seeking).

<a id="gst-meta"></a>
### GstMeta serialization/deserialization and other GstMeta improvements

- **GstMeta serialization/deserialization** allows metas to be transmitted or
  stored. This is used by the `unixfd` and `cudaipc` plugins for inter-process
  communication (IPC). Implemented so far for `GstCustomMeta`, `GstVideoMeta`,
  `GstAudioMeta` and `GstReferenceTimestampMeta`.

- **Simplified `GstCustomMeta` registration** with
  `gst_meta_register_custom_simple()` for the simple
  case where tags and transform functions are not needed.

- `GstMetaClearFunction` clears the content of the meta. This will be
   called by buffer pools when a pooled buffer is returned to the pool.

- Add `gst_meta_info_new()` and `gst_meta_info_register()` to
  **register a GstMeta in two steps** for easier extensibility.

<a id="unixfd"></a>
### New unixfd plugin for efficient 1:N inter-process communication on Linux

- **unixfdsink** and **unixfdsrc** are elements that, inspired by
  `shmsink` andn `shmsrc`, send UNIX file descriptors (e.g. memfd, dmabuf)
  from one sink to multiple source elements in other processes on Linux.

- The `unixfdsink` proposes a memfd/shm allocator to upstream elements which
  allows for example `videotestsrc` to write directly into memory that can be
  transfered to other processes without copying.

<a id="smpte-meta"></a>
### New GstMeta for SMPTE ST-291M HANC/VANC Ancillary Data

- Previously only various specific `GstMeta` for ancillary data were
  provided, such as `GstVideoCaptionMeta` and `GstVideoAFDMeta`. The
  new `GstAncillaryMeta` allows passing arbitrary ancillary data between
  elements, including custom and non-standard ancillary data.
  See [`GstAncillaryMeta`][anc-meta] for details.

- Add with `gst_buffer_add_ancillary_meta()` and retrieve with
  `gst_buffer_get_ancillary_meta()` or `gst_buffer_iterate_ancillary_meta()`.
  
- Supported by the newly added AJA sink and source elements

[anc-meta]: https://gstreamer.freedesktop.org/documentation/video/gstvideoanc.html#GstAncillaryMeta

<a id="dsd-audio"></a>
### DSD audio support

- [DSD audio][dsd-audio] is a non-PCM raw audio format representation and the
  GstAudio library gained support for this in form of new [`GstDsdInfo`][dsd-info]
  and [`GstDsdFormat`][dsd-format] API.
 
- Support for DSD audio has been implemented in `alsasink` as well as the
  `GstAudioSink` and `GstAudioRingBuffer` base classes, and the gst-libav
  plugin to enable FFmpeg-based DSD elements and functionality.

[dsd-audio]: https://en.wikipedia.org/wiki/Direct_Stream_Digital#DSD_signal_format
[dsd-format]: https://gstreamer.freedesktop.org/documentation/audio/gstdsdformat.html#GstDsdFormat
[dsd-info]: https://gstreamer.freedesktop.org/documentation/audio/gstdsd.html#GstDsdInfo

<a id="analytics-ml"></a>
### Analytics and Machine Learning

- A new library, [GstAnalytics][analytics], has been added. It defines a
  [GstAnalyticsRelationMeta][analytics-relation-meta] that can efficiently hold
  a large number of observations from a data analysis process, for example
  from machine learning. It also contains a matrix of the relationship
  between those observations.

- Three types of metadata are already defined in the library: object
  detection, classification and tracking.

- A new `objectdetectionoverlay` element has been merged that draws the
  bounding boxes and the classes from the object detection and
  classification metadata types.

- The `onnxinference` element has been split into two parts. The first part
  works with the ONNX Runtime library to do the actual inference, while the
  second part called `ssdobjectdetector` interprets the produced tensor.
  This new element creates [GstAnalyticsRelationMeta][analytics-relation-meta].

- The `onnxinference` element now accepts video frames without
  transformation if the module declares that it accepts the "Image" type
  and the format is something that GStreamer knows.

- In the next release, tensor decoders such as `ssdobjectdetector` will
  live outside of the ONNX plugin so they can be used with other machine
  learning acceleration frameworks.

[analytics]: https://gstreamer.freedesktop.org/documentation/analytics/
[analytics-relation-meta]: https://gstreamer.freedesktop.org/documentation/analytics/gstanalyticsmeta.html#GstAnalyticsMtdImpl

<a id="qt"></a>
### Qt5 + Qt6 QML integration improvements

- The Qt5 **qmlglsink**, **qmlgloverlay**, **qmlglmixer** received support
  for directly consuming `BGRA` and `YV12` video frames without a
  prior `glcolorconvert`.

- New **qml6glsrc**, **qml6glmixer**, and **qml6gloverlay** elements as
  Qt6 counterparts to the existing Qt5 elements, also with support for directly
  consuming `BGRA` and `YV12` video frames without a prior `glcolorconvert`.

- **qml6d3d11sink** is a new **Direct3D11 Qt6 QML sink** for Windows as
  an alternative to the existing qml6glsink.

<a id="drm-dmabuf"></a>
### DRM Modifier Support for dmabufs on Linux

The [Linux dmabuf subsystem][kernel-dmabuf] provides buffer sharing across
different hardware device drivers and subsystems, and is used extensively by
the DRM subsystem to exchange buffers between processes, contexts, and
library APIs within the same process, and also to exchange buffers with
other subsystems such as Linux Media.

In GStreamer, it's used on the capture side (v4l2src, pipewire),
hardware-accelerated video decoders and encoders, OpenGL integration,
Wayland renderers, etc.

GStreamer has had support for dmabufs for a long time and was able to negotiate
"zero-copy" paths between different components, however it only supported and
assumed simple linear formats and was not able to negotiate complex non-linear
formats. This meant that dmabuf support actually had to be disabled in many
scenarios to avoid "garbled video".

With GStreamer 1.24 there is now full DRM modifier support and complex
non-linear formats can be supported and negotiated between components.

This is achieved with an extra `drm_format` field in
`video/x-raw(memory:DMABuf), format=(string)DMA_DRM` caps, e.g.
`drm-format=(string)NV12:0x0x0100000000000001`.

See the [GStreamer DMA buffers design documentation][gstreamer-dmabuf] for
more details.

This is used in the VA-API `va` plugin, `waylandsink`, the MSDK plugin,
and the OpenGL integration. Video4Linux support is expected to land in
one of the next minor releases.

New API has been added for easy handling of these new caps:

 - [`GstVideoInfoDmaDrm`][video-info-dma-drm] plus associated functions,
   similar to `GstVideoInfo`, including conversion to and from `GstVideoInfo`
   with `gst_video_info_dma_drm_from_video_info()` and
   `gst_video_info_dma_drm_to_video_info()`

 - `GST_VIDEO_DMA_DRM_CAPS_MAKE`

 - `GST_VIDEO_FORMAT_DMA_DRM`

[gstreamer-dmabuf]: https://gstreamer.freedesktop.org/documentation/additional/design/dmabuf.html
[kernel-dmabuf]: https://docs.kernel.org/driver-api/dma-buf.html

[video-info-dma-drm]: https://gstreamer.freedesktop.org/documentation/video/video-info-dma-drm.html#GstVideoInfoDmaDrm

<a id="opengl"></a>
### OpenGL integration enhancements

- When using EGL, if both OpenGL ES and OpenGL are available, OpenGL ES is preferred
  over OpenGL. OpenGL ES supports some necessary features required for dmabuf support.
  This does not apply if an external library/application chooses an OpenGL API first.

- Improved support for dmabuf use cases.  The `glupload` element now supports
  the new and improved dmabuf negotiation with explicit modifiers.

- Base classes for mixing with OpenGL are now public API. `GstGLBaseMixer`
  and `GstGLMixer` are exposed matching the existing filter-based
  `GstGLBaseFilter` and `GstGLFilter` base classes. The new OpenGL mixer base
  classes are based on `GstVideoAggregator`.

- Add support for a 'surfaceless' EGL context using `EGL_MESA_platform_surfaceless`.

- Expose Vivante Framebuffer build-related files (pkg-config, gir) as public API

- Add support for more video formats:
  - A420 8/10/12/16-bit.
  - A422 8/10/12/16-bit.
  - A444 8/10/12/16-bit.
  - I420 10/12 bit.
  - RBGA.

- Add support for tiled video formats
  - `NV12_16L32S` (Mediatek format)
  - `NV12_4L4` (Verisilicon Hantro format)

- `glcolorconvert` now has API for retrieving shader strings for:
  - swizzling (reordering components).
  - YUV->RGB conversion.
  - RGB->YUV conversion.

- Add more helpers for information about a particular video and/or GL format
  e.g. number of components, bytes used, or pixel ordering.

- `glvideomixer` has new sink pad properties `sizing-policy`, `xalign`,
  `yalign` matching `compositor`.

- `GstGLBufferPool` now has a configuration option for allowing a number of buffers
  to be always outstanding allowing for reducing the potential synchronisation delay
  when reusing OpenGL memory backed buffers.

<a id="vulkan"></a>
### Vulkan integration enhancements

- Add support for the Vulkan H.264 and H.265 decoders.

- Add support for timeline semaphores.

- Optionally use newer Vulkan functions for format selection.

- Add support for GPU-assisted validation.

- Vulkan/Wayland: add support for `xdg_wm_base` protocol for creating a
  visible debug window.  Required as the previous `wl_shell` interface is
  being removed from compositors.

<a id="cuda-nvcodec"></a>
### CUDA / NVCODEC integration and feature additions

- New **cudaipcsrc** and **cudaipcsink** elements for zero-copy CUDA memory
  sharing between processes

- New `nvJPEG` library based **nvjpegenc** JPEG encoder element

- The NVIDIA desktop GPU decoder `nvh264sldec`, `nvh265sldec`, `nvvp8sldec`,
  and `nvvp9sldec` elements were renamed to `nvh264dec`, `nvh265dec`,
  `nvvp8dec`, and `nvvp9dec`, respectively.

- GStreamer **NVIDIA H.264 and H.265 encoders** except for `nvh264enc` and
  `nvh265enc` **gained support for CEA708 Closed Caption inserting**.

- **OpenGL memory support** is added to `nv{cuda,autogpu}h264enc` and
  `nv{cuda,autogpu}h265enc` elements

- **CUDA stream integration**: As of 1.24, CUDA stream synchronization is an
  application’s responsibility, and GStreamer will not execute unnecessary
  synchronization operations. If an application needs direct access to CUDA
  memory via `GST_MAP_CUDA` map flag, `cuStreamSynchronize()` or
  [gst_cuda_memory_sync()][gst-cuda-memory-sync] call is required unless
  application-side CUDA operation is executed with the GstCudaMemory’s
  [associated CUDA stream][gst-cuda-memory-get-stream].

[gst-cuda-memory-sync]: https://gstreamer.freedesktop.org/documentation/cuda/gst-libs/gst/cuda/gstcudamemory.html?gi-language=c#gst_cuda_memory_sync
[gst-cuda-memory-get-stream]: https://gstreamer.freedesktop.org/documentation/cuda/gst-libs/gst/cuda/gstcudamemory.html?gi-language=c#gst_cuda_memory_get_stream

<a id="rtp"></a>
### RTP stack improvements

- New **rtppassthroughpay** element which just passes RTP packets through
  unchanged, but appears like an RTP payloader element. This is useful for
  relaying an RTP stream as-is through gst-rtsp-server, which expects an RTP
  payloader with certain properties at the end of an RTSP media sub-pipeline.

- New "timeout-inactive-rtp-sources" property on **rtpbin**, **sdpdemux** and
  **rtpsession** to allow applications to disable automatic timeout of sources
  from which no data has been received for a while.

- **rtpvp8pay**, **rtpvp9pay**: expose "picture-id" as a property, and add
  a "picture-id-offset" property to the VP9 payloader to bring it in line
  with the VP8 payloader.

- **rtpjitterbuffer** has seen improved media clock handling (clock equality
  and clock setting/resetting), as well as two new properties that allow
  reconstruction of absolute PTP timestamps without actually syncing to the
  PTP clock, which can be useful in scenarios where one wants to reconstruct
  the absolute PTP clock timestamps on a machine that doesn't have access to
  the network of the PTP clock provider. The two new properties are:

   - "rfc7273-use-system-clock": allows the jitter buffer to assume that the
     system clock is synced sufficiently close to the media clock used by an
     RFC7273 stream. By default the property is disabled and the jitter buffer
     will create a media clock and try to sync to it, but this is only required
     to determine in which wraparound period from the media clock's Epoch the
     current RTP timestamps refer to (and thus to reconstruct absolute time
     stamps from them). If the property is enabled the wraparound period and
     current offset from the Epoch will be determined based on the local
     system clock, which means that no direct network connection to the media
     clock provider is needed to reconstruct absolute timestamps. There is
     also no start-up delay, because there's no clock sync that needs to be
     established first.

   - "rfc7273-reference-timestamp-meta-only": If this property is enabled then
     the jitter buffer will do the normal timestamp calculations for the output
     buffers according to the configured mode instead of making use of the
     RFC7273 media clock for that. It will still calculate RFC7273 media clock
     timestamps, but only attach them to the output buffers in form of a
     clock reference meta.

- RTP payloaders and depayloaders now have an "extensions" property
  for retrieving the list of currently enabled RTP header extensions.

- **rtpbin** and **webrtcbin** no longer blindly set properties on the
  jitter buffer assuming it's a standard `rtpjitterbuffer`, but instead
  check if the property is available first, to better support non-standard
  jitterbuffers or even an `identity` element in lieu of a jitter buffer.

- **RTP header extension handling fixes for depayloaders** that
  aggregate multiple input buffers into a single output buffer. Before,
  only the last RTP input buffer was checked for header extensions. Now the
  depayloader remembers all RTP packets pushed before an output buffer is
  produced and checks all RTP input buffers for header extensions.

   - Affected depayloaders: `rtph264depay`, `rtph265depay`, `rtpvp8depay`,
     `rtpvp9depay`, `rtpxqtdepay`, `rtpasfdepay`, `rtpmp4gdepay`,
     `rtpsbcdepay`, `rtpvorbisdepay`, `rtpmp4vdepay`, `rtptheoradepay`,
     `rtpsv3vdepay`, `rtpmp4adepay`, `rtpklvdepay`, `rtpjpegdepay`,
     `rtpj2kdepay`, `rtph263pdepay`, `rtph263depay`, `rtph261depay`.
     `rtpgstdepay`.

<a id="webrtc"></a>
### WebRTC improvements

- Add support for **ICE consent freshness** (RFC 7675).
  This requires libnice >= 0.1.22.

- Advertise the local side of an end-of-candidates with an empty
  candidate string.

- Add the number of Data Channels opened and closed to `webrtcbin`'s statistics.

- Various improvements and feature additions in the Rust `webrtc` plugin, which provides
  `webrtcsrc` and `webrtcsink` elements as well as specific elements for different
  WebRTC signalling protocols. See the Rust plugins section below for more details.

<a id="adaptivedemux"></a>
### Adaptive Streaming improvements and Low-Latency HLS (LL-HLS) support

- **hlsdemux2** now supports Low-Latency HLS (LL-HLS)

- **hlsdemux2** asynchronous playlist download and update improves
  responsiveness and bandwith usage.

- **hlsdemux2** handles fallback variant URLs.

- **hlsdemux2** is more responsive and accurate when handling seeks.

- **dashdemux2** and **hlsdemux2** have a new "start-bitrate" property,
  improving the decision for which initial stream variant that will be used.

- **dashdemux2**, **hlsdemux2**, **mssdemux2** have received many
  improvements regarding seeking, along with support for "early-seek"
  which allows playback to start immediately from the requested
  position without any previous download.

- **dashdemux2**, **hlsdemux2**, **mssdemux2** better handle errors
  on or near the live edge.

- **dashsink** can now use the `dashmp4mux` muxer from the Rust plugins
  and will also produce better and RFC 6381-compatible codec strings. The
  "suggested-presentation-delay" property allows to set the suggested
  presentation delay in the MPD.

- No development took place on the legacy demuxers (`dashdemux`, `hlsdemux`,
  `mssdemux`). Application developers are reminded to use the new demuxers
  instead. They are automatically picked up when using `urisourcebin`, `uridecodebin3`
  or `playbin3`.

<a id="w3c-mse"></a>
### W3C Media Source Extensions library

- A new GStreamer library ([mse][gst-mse]) implementing the
  W3C Media Source Extensions specification was added.

- Applications can embed this library along with GStreamer in order to
  integrate software that uses the Media Source APIs without relying on
  a web browser engine. Typically an application consuming this library
  will wrap the C API with JavaScript bindings that match the Media Source
  API so their existing code can integrate with this library.

[gst-mse]: https://gstreamer.freedesktop.org/documentation/mselib/index.html

<a id="closed-captions"></a>
### Closed Caption handling improvements

- **ccconverter** supports converting between the two CEA-608 fields.

- New **cea608mux** element for muxing multiple CEA-608 streams together.

- Various improvements and feature additions in the Rust-based closed caption
  elements. Check out the Rust plugins section below for more details.

<a id="ptp"></a>
### Precision Time Protocol (PTP) clock improvements

- Many fixes and compatibility/interoperability improvements.

- Better support for running on devices with multiple network interfaces.

- Allow sync to master clock on same host.

- PTP clock support is now also available on Windows.

- The standalone `ptp-helper` binary has been rewritten in Rust for
  portability and security. This works on Linux, Android, Windows,
  macOS, FreeBSD, NetBSD, OpenBSD, DragonFlyBSD, Solaris and Illumos.
  Newly supported compared to the C version is Windows. Compared to the
  C version various error paths are handled more correctly and a couple
  of memory leaks are fixed. Otherwise it should work identically.
  The minimum required Rust version for compiling this is 1.48, i.e. the
  version currently in Debian oldstable. On Windows, Rust 1.54 is needed at least.

- New `ptp-helper` Meson build option so PTP support can be disabled or required.

- `gst_ptp_init_full()` allows for a more fine-grained and extensible
  configuration and initialization of the GStreamer PTP subsystem, including
  TTL configuration.

<a id="bayer"></a>
### Bayer 10/12/14/16-bit depth support

- **bayer2rgb** and **rgb2bayer** now support bayer with 10/12/14/16 bit depths

- **v4l2src** and **videotestsrc** now support bayer with 10/12/14/16 bit depths

- **imagefreeze** gained bayer support as well

<a id="mpeg-ts"></a>
### MPEG-TS improvements

- **mpegtsdemux** gained support for
  - **segment seeking** for seamless non-flushing looping, and
  - **synchronous KLV**

- **mpegtsmux** now
  - allows attaching PCR to non-PES streams
  - allows **setting of the PES stream number** for AAC audio and AVC video streams
    via a new "stream-number" property on the muxer sink pads. Currently the
    PES stream number is hard-coded to zero for these stream types.
  - allows writing **arbitrary Opus channel mapping families and up to 255 channels**
  - separate handling of DVB and ATSC AC3 descriptors

<a id="new-plugins"></a>
## New elements and plugins

- **analyticsoverlay** visualises object-detection metas on a video stream.

- **autovideoflip** and **autodeinterlace** are two new auto elements.

- **AJA source and sink** elements plus device provider for AJA capture
  and playout cards, including support for HANC/VANC ancillary data.

- New **cea608mux** element for muxing multiple CEA-608 streams together.

- The **codec2json** plugin adds `av12json`, `h2642json`, `h2652json` and
  `vp82json` elements which convert AV1, H.264, H.265 and VP8 frame parameters
  into human readable JSON data, which is useful for debugging and testing
  purposes.

- New **lc3** plugin with a decoder and encoder for the Bluetooth LC3 audio codec.

- New **onnxinference** element to run ONNX inference models on video buffers.

- New **rtppassthroughpay** element which just passes RTP packets through
  unchanged, but appears like an RTP payloader element. This is mostly useful
  for medias that simply pass through an existing RTP stream in `gst-rtsp-server`.

- Qt6: **qml6glsrc**, **qml6glmixer**, **qml6gloverlay**, and **qml6d3d11sink**

- New **SVT-AV1 encoder** plugin, imported from SVT-AV1 but with many fixes.

- Many exciting **new Rust elements**, see Rust section below.

- New **DirectWrite text rendering** and **Direct3D12** plugins (see Windows section below).

- New **vaav1enc** element for encoding video in AV1 (See VA-API section)

- New **uvcsink** element for exporting streams as UVC camera

<a id="new-element-features"></a>
## New element features and additions

- **alphacombine** supports `I420_10LE` now for 10-bit WebM/alpha support.

- The **amfcodec** for **hardware-accelerated video encoding using**
  **the Advanced Media Framework (AMF) SDK for AMD GPUs** gained some new
  features:
  - 10-bit and HDR support for H.265 / HEVC and AV1 video encoders
  - B-frame support in the H.264 encoder
  - Initial support of pre-analysis and pre-encoding
  - Initial support of Smart Access Video for optimal distribution
    amongst multiple AMD hardware instances.

- **appsink**: new "propose-allocation" signal so applications can provide
  a buffer pool or allocators to the upstream elements, as well as "max-time"
  and "max-buffers" properties to configure the maximum size of the
  appsink-internal queue in addition to the existing "max-bytes" property.

- **autovideoconvert** exposes colorspace and scaler elements for well know elements

- **avtp**: add AVTP Raw Video Format payload and de-payload support.

- **cacasink**'s output driver can now be selected via the "driver" property.

- **camerabin**: various fixes and stability improvements

- **clocksync**: "QoS" property to optionally send QoS events upstream like
  a synchronising sink would.

- **cutter**: can add `GstAudioLevelMeta` on output buffers, which can
  be enabled via the new "audio-level-meta" property.

- **dashdemux2** has a new "start-bitrate" property.

- **dashsink** can now use the `dashmp4mux` muxer from the Rust plugins
  and will also produce better and RFC 6381-compatible codec strings. The
  "suggested-presentation-delay" property allows to set the suggested
  presentation delay in the MPD.

- **deinterlace**: Add support for 10/12/16-bit planar YUV formats

- The **dvdspu** subpicture overlay now implements `GstVideoOverlayComposition`
  support to make it work better with hardware decoders where the video data
  should ideally stay on the GPU/VPU and the overlay blitting be delegated to
  the renderer.

- **encodebin** now automatically autoplugs timestamper elements such as
  `h264timestamper` or `h265timestamper`, based on new "Timestamper" element
  factory type and rank.

- New **fakevideodec** element (see debugging section below).

- **filesink**: "file-mode" property to allow the ability to specify `rb+`
  file mode, which overwrites an existing file. This is useful in combination
  with `splitmuxsink` so that files can be pre-allocated which can be useful
  to reduce disk fragmentation over time.

- **flvmux**: add "enforce-increasing-timestamps" property to allow disabling
  a hack that was added back in the day because librtmp as used in `rtmpsink`
  would get confused by timestamps going backwards, but this is no longer
  required with `rtmpsink2`. If set to true (still the default, for backwards
  compatibility), `flvmux` will modify buffers timestamps to ensure they are
  always strictly increasing, inside one stream and also between the audio
  and video streams.

- **giostreamsink**: Add a property to close the stream on stop().

- **h264parse** improved its AU boundary detection.

- **h264parse**, **h265parse**, **mpegvideoparse** now support multiple
  unregistered user data SEI messages.

- **insertbin** is now a registered element and available via the registry,
  so can be constructed via parse-launch and not just via the insertbin API.

- **jack**: libjack is now loaded dynamically at runtime instead of linking it
  at build time. This means the plugin can be shipped on Windows and macOS
  and will work if there's a user-installed JACK server/library setup.

- **jpegparse** now has a rank so it will be autoplugged if needed.

- **kmssink**: Add auto-detection for NXP i.MX8M Plus LCDIFv3, ST STM32 LTDC,
  and Texas Instruments TIDSS display controllers.

- **matroskademux** and **matroskamux** gained support for more raw video
  formats, namely `RGBA64_LE`, `BGRA64_LE`, `GRAY10_BE32`, `GRAY16_LE`

- **mpg123audiodec**'s rank was changed from MARGINAL to PRIMARY so it's now
  higher than `avdec_mp3`, as it works better with "freeformat" MP3s.

- **msdk**:
  - DRM modifier support on Linux
  - only expose codecs and capabilities actually supported by the platform
  - **msdkvpp** video post-processing:
    - new "hdr-tone-mapping" property to enable HDR-to-SDR tone mapping
    - new compute scaling mode
  - **Decoders** sport D3D11 and VA integration, and the VP9 decoder
    supports certain resolution changes.

  - **Encoders**:
    - **msdkh264enc, **msdkh265enc**: "pic-timing-sei" property to insert pic timing SEI
    - **msdkh264enc, **msdkh265enc**: Add properties to allow different max/min-qp values for I/P/B frames
    - **msdkh264enc**: Added BGRx format DMABuf support
    - Advertise special image formats in low power mode

- **mxfdemux** gained support for FFV1 demuxing

- **opusenc**, **opusdec** now support decoding and encoding more than
  8 channels, and can also handle unknown/unpositioned channel layouts.

- The **oss** plugin gained a device provider for audio device discovery

- **pcapparse** learned how to handle the Linux "cooked" capture encapsulation v2

- Intel Quick Sync plugin improvements:
  - **qsvh264enc** gained more encoding options
  - **qsvh265dec** now supports GBR decoding and HEVC RExt profiles

- **qtdemux** now adds audio clipping meta when playing gapless m4a content,
  supports CENC sample grouping, as well as the SpeedHQ video codec.

- **ristsrc** gained support for dynamic payloads via the new "caps" and
  "encoding-name" properties. These can be used to make the `ristsrc` receive
  other payload types than MPEG-TS.

- **rtmp2src**: a new "no-eof-is-error" property was added: There is currently
  no way for applications to know if the stream has been properly terminated
  by the server or if the network connection was disconnected, as an EOS is
  sent in both cases. With the property set, connection errors will be reported
  as errors, allowing applications to distinguish between both scenarios.

- **rtspsrc**: new "extra-http-request-headers" property for adding custom
  http request headers when using http tunnelling.

- **sdpdemux** now supports SDP source filters as per RFC 4570; audio-only or
  video-only streaming can be selected via the new "media" property, and RTCP
  feedback can be disabled via the "rtcp-mode" property.

- **splitmuxsrc** uses natural ordering to sort globbed filenames now, i.e.
  0, 1, 2, 10, 11 instead of 0, 1, 10, 11, 2, ...

- **srt**: Add more fields to the statistics to see how many packets
  were retransmitted and how many were dropped.

- **switchbin**: many improvements, especially for caps handling and
  passthrough.

- **taginject**: a "scope" property was added to allow injection of global
  tags in addition to the current default which is stream tags.

- **timeoverlay**: add `buffer-count` and `buffer-offset` time modes.

- **udpsrc**: new "multicast-source" property to support IGMPv3 Source
  Specific Muliticast (SSM) as per RFC 4604.

- **videoconvertscale**, **videoconvert**: add a "converter-config"
  property to allow fine-tuning conversion parameters that are not
  exposed directly as property.

- **videoflip**: many orientation tag handling fixes and improvements

- **videorate**: add "drop-out-of-segment" property to force dropping
  of out-of-segment buffers.

- **volume** now supports arbitrarily-large positive gains via
  a new "volume-full-range" property (it was not possibly to just
  allow a bigger maximum value for the existing "volume" property
  for `GstController`-related backwards-compatibility reasons).

- **waylandsink**, **gtkwaylandsink**: improved frame scheduling
  reducing frame drops and improve throughput.

- **webpenc** now has support for **animated WebP** which can be enabled
  via the new "animated" property. By default it will just output a
  stand-alone WebP image for each input buffer, just like before.

- **wpe**: added a `WebProcess` crash handler; gained WPEWebKit 2.0 API support.

- **x264enc** gained support for 8-bit monochrome video (`GRAY8`).

- **ximagesrc** gained navigation support (mouse and keyboard events).

- **y4mdec** now parses extended headers to support high bit depth video.

<a id="plugin-library-moves"></a>
## Plugin and library moves

- The **AMR-NB** and **AMR-WB** plugins have been moved from -ugly to -good.

<a id="plugin-element-removals"></a>
## Plugin and element removals

- The entire **gst-omx** package and plugin has been retired.
  See the OMX section below for more details.

- The **RealServer RTSP extension**, RDT handling and PNM source
  have been removed from the realmedia plugin.
 
- The **kate subtitle plugin** has been removed.

<a id="new-api"></a>
## Miscellaneous API additions

### GStreamer Core

- `gst_pipeline_get_configured_latency()` and `gst_pipeline_is_live()`
   **convenience functions to query liveness and configured latency**
   **of a pipeline**.

- Plugins can now provide **status info messages for plugins** that will be
  displayed in `gst-inspect-1.0` and is useful for dynamic plugins that
  register features at runtime. They are now able to provide information
  to the user why features might not be available. This is now used in
  the `amfcodec`, `nvcodec`, `qsv`, and `va` plugins.

- `GST_OBJECT_AUTO_LOCK()` and `GST_PAD_STREAM_AUTO_LOCK()` are
  **`g_autoptr(GMutexLocker)`-based helpers for `GstPad` and `GstObject`** that
  unlock the mutex automatically when the helper goes out of scope. This is
  not portable so should not be used in GStreamer code that needs to be
  portable to e.g. Windows with MSVC.

- `gst_clear_context()`, `gst_clear_promise()`, `gst_clear_sample()`

- `gst_util_ceil_log2()` and `gst_util_simplify_fraction()` utility functions

- New `TAG_CONTAINER_SPECIFIC_TRACK_ID` **tag for container specific track ID**
  as used in an HTML5 context, plus basic support in `matroskademux`, `qtdemux`,
  `dashdemux` and `dashdemux2`

- New **utility functions to create a stream-id without a pad** for elements:
  - `gst_element_decorate_stream_id()`
  - `gst_element_decorate_stream_id_printf_valist()`
  - `gst_element_decorate_stream_id_printf()`

- `GstQueueArray` gained API for sorting and sorted insertion

- Add **strict GstStructure serialisation** with `gst_structure_serialize_full()`
  in combination with `GST_SERIALIZE_FLAG_STRICT` which only succeeds if the
  result can later be fully deserialised again.

- **`GstBaseSrc` enhancements**: the "automatic-eos" property can be used to
  do the equivalent to `gst_base_src_set_automatic_eos()`.
  `gst_base_src_push_segment()` sends a segment event right away which can be
  useful for subclasses like `appsrc` which have their own internal queuing.

- `GstBaseSink` gained a new custom **`GST_BASE_SINK_FLOW_DROPPED`** flow return
  which can be used by subclasses from the virtual `::render` method to signal
  to the base class that a frame is not being rendered. This is used in e.g.
  `waylandsink` and ensures that elements such as `fpsdisplaysink` will
  correctly report the rate of frames rendered and dropped.

### GstDiscoverer

- New "load-serialized-info" signal to retrieve a serialized `GstDiscovererInfo`

### GstSDP

- Add `gst_sdp_message_remove_media()`

### Video Library

#### DRM Modifier Support for dmabufs on Linux

See section above.

#### List of Video Formats for Passthrough

New helper API was added to get a list of all supported video formats,
including DMA_DRM formats, and can be used to advertise all supported
formats for passthrough purposes:

 - `GST_VIDEO_FORMATS_ANY_STR`, `GST_VIDEO_FORMATS_ANY`
 - `gst_video_formats_any()` which can be used by bindings or for code that
   prefers `GstVideoFormat` values instead of strings.

#### New Video Formats

- 12-bit and 16-bit A420 / A422 / A444  (YUV with alpha channel) variants:
  - `A444_12BE`, `A444_12LE`
  - `A422_12BE`, `A422_12LE`
  - `A420_12BE`, `A420_12LE`
  - `A444_16BE`, `A444_16LE`
  - `A422_16BE`, `A422_16LE`
  - `A420_16BE`, `A420_16LE`

- 8-bit A422 / A444 (YUV with alpha channel) variant:
  - `A422`
  - `A444`

- Planar 16-bit 4:4:4 RGB formats:
  - `GBR_16BE`
  - `GBR_16LE`

- `RBGA`, intended to be used by hardware decoders where `VUYA` is only
   supported 4:4:4 decoding surface but the stream is encoded with GBR
   color space, such as HEVC and VP9 GBR streams for example.

- Two tiled Mediatek 10-bit formats:
  - `MT2110T`
  - `MT2110R`

- Tiled 10-bit NV12 format `NV12_10LE40_4L4` (Verisilicon Hantro)

<a id="optimisations"></a>
## Miscellaneous performance, latency and memory optimisations

- liborc 0.4.35 (latest: 0.4.38) adds support for AVX/AVX2 and contains
  improvements for the SSE backend.

- liborc 0.4.37 adds support for NEON on macOS on Apple ARM64 CPUs.

- Most direct use of the GLib `GSLice` allocator has been removed, as there is
  little evidence that it actually still provides much advantage over the standard
  system allocator on Linux or Windows in 2024. There *is* strong evidence however
  that it causes memory fragmentation for standard GStreamer workloads such as
  RTSP/RTP/WebRTC streaming.

- As always there have been plenty of performance, latency and memory optimisations
  all over the place.

<!--

## Miscellaneous other changes and enhancements

- Nothing that hasn't been mentioned elsewhere already.

-->

<a id="tracing"></a>
## Tracing framework and debugging improvements

- The **gst-stats** tool can now be passed a custom regular expression

- **gst-debug-viewer** from the devtools module has seen minor improvements and fixes

### New tracers

- None in this release.

### Debug logging system improvements

- Nothing major in this cycle.

### Fake video decoder

- The new **fakevideodec** element does not decode the input bitstream,
  it only reads video width, height and framerate from the caps and then
  pushes out raw video frames of the expected size in RGB format.
  
- It draws a snake moving from left to right in the middle of the frame,
  which is reasonably light weight and still provides an idea about how
  smooth the rendering is.

<a id="tools"></a>
## Tools

- **gst-launch-1.0** gained a new `--prog-name` command line option to set
  the program name, which will be used by GTK and GStreamer to set the
  class or app-id.

- **gst-play-1.0** now defaults to using `playbin3`, but can still be made to
  use the old `playbin` by passing the `--use-playbin2` command line argument.

<a id="ffmpeg"></a>
## GStreamer FFmpeg wrapper

- New **avvideocompare** element to compare two incoming video buffers
  using a specified comparison method (e.g. SSIM or PSNR).

- **Prefer using FFmpeg Musepack decoder/demuxer** over `musepackdec`
  as they work better with `decodebin3` and `playbin3` which likes to
  have parsers and decoders separate.

- Added **codec mappings** for AV1, MxPEG, FFVHuff video

- Added **raw video format** support for `P010`, `VUYA`, `Y410`,
  `P012`, `Y212` and `Y412`.

- Newer, non-deprecated APIs are used by the plugin when built with FFmpeg 6.0 or newer.

- The FFmpeg meson subproject wrap has been updated to v6.1

- Note: see Known Issues section below for known issues with FFmpeg 6.0.0
  and the latest FFmpeg 7.x release

<a id="rtsp"></a>
## GStreamer RTSP server

- New "ensure-keyunit-on-start" property: While the suspend modes NONE
  and PAUSED provided a low startup latency for connecting clients, it
  did not ensure that streams started on fresh data. With this new
  property it is possible to maintain the low startup latency of those
  suspend modes while also ensuring that a stream starts on a key unit.
  Furthermore, by setting the new "ensure-keyunit-on-start-timeout"
  property it is also possible to accept a key unit of a certain age,
  but discard it if too much time has passed and instead force a new
  key unit.

- rtspclientsink: apply "port-range" property for RTCP port selection as well

<a id="vaapi"></a>
## GStreamer VA-API support

### GstVA

- `vah264dec`, `vah265dec`, `vavp8dec`, `vavp9dec`, `vampeg2dec` and
  `vaav1dec` were promoted to rank PRIMARY+1 on Linux

- Improved support for dmabuf use cases.  All `va` elements now negotiate
  the new and improved dmabuf capabilities with explicit modifiers.
  This supports both import and export of dmabufs.

- Added `vaav1enc` element, available in recent Intel and AMD GPUs

- Added support for the experimental [VA-Win32 backend][va-win32].
  It needs at least libva 1.18

- Improved handling of multi-GPU systems. Still, sharing buffers among them
  is not advised.

- Bumped minimum libva version to 1.12

- Enhanced support for RadeonSI Mesa driver for 10bit decoding

- Register elements only for allowed drivers (Intel and Mesa, for the moment)

[va-win32]: https://devblogs.microsoft.com/directx/video-acceleration-api-va-api-now-available-on-windows/

### GStreamer-VAAPI

- The new GstVA elements (see above) should be preferred when possible.

- Ranks of decoders were demoted to `NONE` so they won't be used
  automatically by `playbin` and similar elements anymore.

- Clean-ups and minimal fixes.

- **gstreamer-vaapi should be considered deprecated** and may be
  discontinued as soon as the `va` plugin is fully feature equivalent.
  Users who rely on gstreamer-vaapi are encouraged to migrate and
  test the `va` elements at the earliest opportunity.

<a id="v4l2"></a>
## GStreamer Video4Linux2 support

- **New `uvcsink` element**, based on v4l2sink allow streaming your pipeline
  as a UVC camera using Linux UVC Gadget driver.

- `v4l2src` now supports **10/12/14/16-bit bayer formats**.

- Stateful decoders now pass too large encoded frames over multiple buffers.

- **AV1 Stateless video decoder**.

- Stateless decoders now tested using Virtual driver (visl), making it possible to run the tests in the cloud based CI

<a id="omx"></a>
## GStreamer OMX

- The gst-omx module has been removed. The OpenMAX standard is long dead and
  even the Raspberry Pi OS no longer supports it. There has not been any
  development since 1.22 was released. Users of these elements should switch
  to the Video4Linux-based video encoders and decoders which have been the
  standard on embedded Linux for quite some time now.

- Hardware vendors which still use OpenMAX are known to have non-standard
  forks and it is recommended that they maintain it while planning their
  move to the Video4Linux API.

<a id="ges"></a>
## GStreamer Editing Services and NLE

- Implement a `gesvideoscale` effect which gives user the ability to chooses where
  a clip has to be scaled in the chain of effects. By default scaling is done in
  the `compositor`.

- Add support for `gessrc` as sub-timeline element so third party can implement their own
  formatters and use their timelines as sub-timelines. Before that, only timelines serialized
  as files on the filesystem could be loaded as sub-timelines (using `gesdemux`).

- Implement a new `GESDiscovererManager` singleton object making management of the discoverers used
  to discoverer media files cleaner and allowing to expose the following APIs:
    - `load-serialize-info` signal so `GstDiscovererInfo` can be serialized by users the way they like and load them without requiring discovering the file when reloading a project.
    - `source-setup` signal so user can tweak source elements during discovery

- Expose `GESFrameCompositionMeta` in public API so user can implement their own effects
  targetting GES which take into account that meta.

- Expose `audioconvert:mix-matrix` property in audio sources

- Port `GESPipeline` rendering to use `encodebin2`. This allows rendering timelines directly with
  a muxing sink (like `hlssinkX` etc..) and leverage all new features of that new element.

### ges-launch

- Fix setting keyframes

- Add an `ignore-eos` option

- Allow overriding container profile so that the user can build encoding profiles
  following the media format of a specific media file, for example, but ensuring
  it is muxed using a specific format

- Ensure sink elements are inside a `GstBin` and never in a `GstPipeline`

- Move `+effect` stack effects from source to last effect added, so it feels more natural
  to user as adding them at the beginning of the chain while the syntax is `+effect`
  felt wrong

<a id="validate"></a>
## GStreamer validate

- In action types, add a way to avoid checking property value after setting it,
  in case elements do it async for example.

- Add a vmethod to free `GstValidateActionParameter`s to be more binding friendly.

- Allow scenarios to define the pipeline state target in the metadata
  instead of assuming `PLAYING` state.

- Add support to run sub-pipelines/scenarios
  - Added support to forward buffers from appsink to appsrc

- Add a way to set pipeline base-time, start-time and force using the system clock.

- Add a 'fill-mode' to the `appsrc-push` action type so we can create some type
  of streams easily using an appsrc, giving control when writing scenarios
  without requiring files with the content.

- Add a "select-streams" action type to test "stream aware" elements.

- Add a way to wait for a property to reach a specified value before executing
  an action. For example it is possible to wait for a pad to get some specific
  caps set before executing an action.

- validate: Add support to replace variables in deeply nested structures in
  particular for more complex action types where some of the properties are
  inside structures.

- Fixed compatibility with Python 3.12.

<a id="python"></a>
## GStreamer Python Bindings

gst-python is an extension of the regular GStreamer Python bindings based on
gobject-introspection information and PyGObject, and provides "syntactic sugar"
in form of overrides for various GStreamer APIs that makes them easier to use
in Python and more pythonic; as well as support for APIs that aren't available
through the regular gobject-introspection based bindings, such as e.g.
GStreamer's fundamental GLib types such as `Gst.Fraction`, `Gst.IntRange` etc.

- Added a **`GstTagList` override that makes a tag list act like a dict**

- Fix build and usage in Windows

- Various fixes for Python >= 3.12

- Rework libpython loading to be relocatable

- Fix libpython dlopen on macOS

<a id="csharp"></a>
## GStreamer C# Bindings

- The GStreamer C# bindings have been updated to a more recent
  version of GtkSharp and the bindings have been regenerated
  with that version.
  
- GStreamer API added in recent GStreamer releases is now available

- GstRtspServer bindings have been added, plus an RTSP server example

<a id="rust"></a>
## GStreamer Rust Bindings and Rust Plugins

The GStreamer Rust bindings and plugins are released separately with a different release
cadence that's tied to the twice-a-year GNOME release cycle.

The latest release of the bindings (0.22) has already been updated for the new GStreamer 1.24 APIs, and works with any GStreamer version starting at 1.14.

`gst-plugins-rs`, the module containing GStreamer plugins written in Rust,
has also seen lots of activity with many new elements and plugins. The GStreamer 1.24 binaries track the 0.12 release series of `gst-plugins-rs`, and fixes from newer versions will be backported as needed to the 0.12 brach for future 1.24.x bugfix releases.

Rust plugins can be used from any programming language. To applications
they look just like a plugin written in C or C++.

<a id="rust-webrtc"></a>
### WebRTC

- New element `webrtcsrc` that can act as a recvonly WebRTC client. Just like the opposite direction, `webrtcsink`, this can support various different WebRTC signalling protocols. Some are included with the plugin and provide their own element factory for easier usage but it is also possible for applications to provide new signalling protocol implementations.

- `webrtcsink` now exposes the signaller as property and allows implementing a custom signaller by connecting signal handlers to the default signaller.

- A new signaller and `webrtcsink` implementation for Janus' VideoRoom implementation. The corresponding `webrtcsrc` signaller implementation is currently in a merge request in GitLab.

- New `whepsrc` element that can receive WHEP WebRTC streams. This is currently not based on `webrtcsrc` but in the future a new element around `webrtcsrc` will be added.

- New `whipserversrc` element around `webrtcsrc` for ingesting WHIP WebRTC streams in GStreamer.

- New `whipclientsink` element around `webrtcsink` for publishing WHIP WebRTC streams from GStreamer. This deprecates the old `whipsink` element.

- A new signaller and `webrtcsink` implementation for LiveKit. The corresponding `webrtcsrc` signaller implementation was merged into the git repository recently.

- A new signaller and `webrtcsink` implementation for AWS Kinesis Video Streams

- `webrtcsink` has a new `payloader-setup` signal to allow the application more fine grained control over the RTP payloader configuration, similar to the already existing `encoder-setup` signal for encoders.

- `webrtcsrc` gained support for a custom navigation event protocol over the data channel, which is compatible with the navigation event protocol supported by `webrtcsink`.

- `webrtcsink` supports encoded streams as input. Using encoded streams will disable `webrtcsink`s congestion control changing any encoded stream parameters.

- `webrtcsink` and `webrtcsrc` have a new signal 'request-encoded-filter' to allow transformations of the encoded stream. This can be used, for example, for the same use-cases as the WebRTC Insertable Streams API.

- gstwebrtc-api: JavaScript API for interacting with the default signalling protocol used by `webrtcsink` / `webrtcsrc`.

... and various other smaller improvements!

<a id="rust-rtsp"></a>
### RTSP

- **New `rtspsrc2` element**. Only a subset of RTSP features are implemented so far:
  - RTSP 1.0 support
  - TCP, UDP, UDP-Multicast lower transports
  - RTCP SR, RTCP RR, RTCP-based A/V sync
    - Tested for correctness in multicast cases too
  - Lower transport selection and order (NEW!)
    - The existing `rtspsrc` has a hard-coded order list for lower transports
  - Many advanced features are not implemented yet, such as non-live support.
    See the [README][rtspsrc2-readme] for the current status.

[rtspsrc2-readme]: https://gitlab.freedesktop.org/gstreamer/gst-plugins-rs/-/blob/main/net/rtsp/README.md?ref_type=heads

<a id="rust-gtk4"></a>
### GTK4

- Support for **rendering GL textures** on X11/EGL, X11/GLX, Wayland, macOS, and WGL/EGL on Windows.

- Create a window for testing purposes when running in `gst-launch-1.0` or if `GST_GTK4_WINDOW=1` is set.

- New `background-color` property for **setting the color of the background of the frame and the borders**, if any. This also allows setting a fully transparent background.

- New `scale-filter` property for defining how to scale the frames.

- Add Python example application to the repository.

- Various bugfixes, including support for the new GTK 4.14 GL renderer. The plugin needs to be built with at least the `gtk_v4_10` feature to work with the new GTK 4.14 GL renderer, and will work best if built with the `gtk_v4_14` feature.

<a id="rust-closed-caption"></a>
### Closed Caption

- Add `cea608tocea708` element for **upconverting CEA-608 captions to their CEA-708 representation**.

- Add **support for translations** within `transcriberbin`.

- `awstranscriber` supports **translating the transcribed text into different languages**, including **multiple languages at the same time**.

- `awstranscriber` is using the new HTTP/2-based API now instead of the WebSocket-based one.

<a id="rust-other-elements"></a>
### Other new elements

- New `awss3putobjectsink` that works similar to `awss3sink` but with a different upload strategy.

- New `hlscmafsink` element for **writing HLS streams with CMAF/ISOBMFF fragments**.

- New `inter` plugin with **new `intersink` and `intersrc` elements that allow to 1:N connect different pipelines in the same process**. This is implemented around the `appsrc` / `appsink`-based `StreamProducer` API that is provided as part of the GStreamer Rust bindings, and is also used inside `webrtcsrc` and `webrtcsink`.

- New `livesync` element that allows **maintaining a contiguous live stream without gaps from a potentially unstable source**.

- New `isomp4mux` **non-fragmented MP4 muxer** element.

<a id="rust-other-improvements"></a>
### Other improvements

- audiornnoise
  - Attach audio level meta to output buffers.
  - Add voice detection threshold property

- fmp4mux
  - Add support for CMAF-style chunking, e.g. low-latency / LL HLS and DASH
  - Add support for muxing Opus, VP8, VP9 and AV1 streams
  - Add 'offset-to-zero' property and make media/track timescales configurable

- hlssink3
  - Allow adding `EXT-X-PROGRAM-DATE-TIME` tag to the manifest.
  - Allow generating I-frame-only playlist

- ndi
  - Closed Caption support in `ndisrc` / `ndisink`
  - Zero-copy output support in `ndisrc` for raw video and audio

- spotifyaudiosrc: Support configurable bitrate

For a full list of changes in the Rust plugins see the
[gst-plugins-rs ChangeLog][rs-changelog] between versions 0.9 (shipped with GStreamer 1.22) and 0.12 (shipped with GStreamer 1.24).

[rs-changelog]: https://gitlab.freedesktop.org/gstreamer/gst-plugins-rs/-/blob/main/CHANGELOG.md

<a id="rust-cerbero"></a>
## Cerbero Rust support

- As of GStreamer 1.24, the GStreamer Rust plugins are shipped as part of
  our binary packages on all major platforms. This includes Android and iOS
  now in addition to macOS and Windows/MSVC.

<a id="build-and-deps"></a>
## Build and Dependencies

- Meson >= 1.1 is now required for all modules

- The GLib requirement has been bumped to >= 2.64

- liborc >= 0.4.38 is strongly recommended

- libnice >= 0.1.22 is strongly recommended, as it is required
  for WebRTC **ICE consent freshness** (RFC 7675).

- gst-libav was updated for FFmpeg API deprecations and removals

- libwebpmux is required for the animated WebP support

- The wpe plugin gained support for the WPEWebKit 2.0 API version 

- Bumped minimum libva version to 1.12 for the `va` plugin.

- zxing: added support for the zxing-c++ 2.0 API

- The `ptp-helper` for Precision Time Protocol (PTP) support in GStreamer core
  has been rewritten in Rust, and the minimum required Rust version for building
  this is 1.48, i.e. the version currently in Debian oldstable. On Windows, at least
  Rust 1.54 is needed. There is a new `ptp-helper` Meson feature option that can
  be used to make sure everything needed for PTP support is available (if set to
  `ptp-helper=enabled`). `cargo` is not required for building.

- `gst-plugins-rs` requires Rust 1.70 or newer.

- Link to libsoup at build time in all cases on non-Linux, and only load it
  dynamically on Linux systems where we might need to support a mix of applications
  with dependencies that might be using libsoup2 or libsoup3.
  A "soup-version" meson build option was added to prefer a specific version.
  Distros should make sure that libsoup is still a package dependency, since it's
  still required at runtime for the `soup` and `adaptivedemux2` plugins to function.

- libjack is now dynamically loaded at runtime by the JACK audio plugin, and no
  longer a hard build dependency. However, it still is a runtime dependency, so
  distros should make sure it remains a package dependency.

### Monorepo build (née gst-build)

- There is now a top-level meson build option to enable/require `webrtc`

- The FFmpeg subproject wrap was udpated to 6.1

- A libvpx wrap was added (for VP8/VP9 software encoding/decoding)

### gstreamer-full

- Add **full static build** support, including on Windows: Allow a project to use
  gstreamer-full as a static library and link to create a binary without
  dependencies. Introduce the meson build option `gst-full-target-type` to
  select the build type: `dynamic` (default) or `static`.

- Registers all full features in a plugin now to offer the possibility to
  get information at the plugin level and get it from the registry. All the
  full features are now registered in a `fullstaticfeatures` meta plugin
  instead of having a `NULL` plugin.

### Development environment

- add VSCode IDE integration

- gst-env.py: Output a setting for the prompt with `--only-environment`

<a id="cerbero"></a>
### Cerbero

Cerbero is a meta build system used to build GStreamer plus dependencies
on platforms where dependencies are not readily available, such as Windows,
Android, iOS, and macOS.

#### General improvements

- New plugins have been added
  - `codecalpha` `dvbsubenc` `rtponvif` `switchbin` `videosignal` `isac` `ivfparse` `inter` `rtspsrc2`
- JACK plugin is now available all platforms (previously only Linux), and will be loaded if the JACK library is found at plugin load time
- Several recipes were ported to meson, leading to faster builds and better MSVC support
  - ffmpeg, gperf, lame, libvpx, ogg, opencore-amr, sbc, speex, tiff, webrtc-audio-processing
  - For more information, please see [the tracker issue](https://gitlab.freedesktop.org/gstreamer/cerbero/-/issues/215)
- Some recipes are now outdated or unnecessary and have been removed:
  - intltool, libkate
- Various recipe updated to their latest versions
- Rust toolchain updated to 1.76.0 (latest as of writing)
- Rust plugins are now stripped and debug info split out correctly, reducing their size
- Fix several spurious build issues, especially with the Rust toolchain
- CMake is picked up from the system if available
- Cerbero will no longer OOM or consume excessive resources on low-end systems
- Python recipes have been moved from setuptools to virtualenv
- Fixed support for Python 3.12+

#### macOS

- Minimum macOS version has been increased to 10.13 (High Sierra)
  - Released 5½ years ago, >95% marketshare
- Fix macOS app store validation issue caused by absolute RPATHs
- Rosetta is automatically installed if required for universal builds on Apple Silicon
- The official macOS binaries now also include static libs for the GStreamer Rust plugins

#### iOS

- Minimum iOS version has been increased to 12.0
- The iOS binary packages now include the GStreamer Rust plugins
- `tremor` and `ivorbisdec` plugins are no longer shipped on iOS

#### Windows

- New features shipped with the official binaries:
  - plugins: `dwrite` `d3d12` (MSVC) `soundtouch` (MSVC) `taglib` (MSVC) `webrtcdsp` (MSVC)
  - plugin features: `d3d11-wgc` (Windows Graphics Capture Support)
  - libraries: `gstdxva-1.0`
- New `qml6` plugin can be built on Windows with the `qt6` variant enabled
   - Similar to qt5, this plugin cannot be included in the official binaries
- GLib process handling helpers for Windows are now shipped
- Windows 11 SDK is now required for builds
  - Visual Studio 2019 and newer ship this SDK
- MSYS is now deprecated for building Windows binaries, will be removed in the next release
  - MSYS2 is required, and the bootstrap script `tools/bootstrap-windows.ps` can install it for you
- Windows bootstrap script `tools/bootstrap-windows.ps1` is much more interactive and user-friendly now
- Fixed Pango crash on 32-bit Windows
- WiX packaging now works with cross-windows builds from linux

#### Linux

- Linux packages will now also include static libs for the GStreamer Rust plugins
- Add Python support for multiarch distributions
- Build fixes for various recipes on multiarch distributions
- Use arch-specific libdir correctly on multiarch distributions
- gst-omx was removed from gstreamer, and hence is no longer shipped
- Fixed Gentoo support
- Added support for RHEL 9
- Added support for Rocky Linux
- Added support for Manjaro Linux

#### Android

- Android NDK has been updated to r25c
  - Only the Clang toolchain is used from the NDK now (both target and host)
  - gnustl has been completely removed
- The Android binary packages now include the GStreamer Rust plugins
- `tremor` and `ivorbisdec` plugins are no longer shipped on Android
- `openh264` plugin no longer enables ASM optimizations on Android x86 due to relocation errors

<a id="platform-specific"></a>
## Platform-specific changes and improvements

<a id="android"></a>
### Android

- Add NDK implementation of Android MediaCodec. This reduces the amount of
  Java <-> native calls, which should reduce overhead.

- Add support for AV1 to the `androidmedia` video encoder and decoder.

<a id="apple"></a>
### Apple macOS and iOS

- osxaudio: **audio clock improvements** (interpolate based on system time)

- Set activation policy in `gst_macos_main()` and in **osxvideosink** and
  **glimagesink**. Setting the policy to `NSApplicationActivationPolicyAccessory`
  by default makes sure that we can activate windows programmatically or
  by clicking on them. Without that, windows would disappear if you clicked
  outside them and there would be no way to bring them to front again. This
  change also allows osxvideosink to receive navigation events correctly.

<a id="windows"></a>
### Windows

- New **DirectWrite text rendering plugin** with **dwriteclockoverlay**,
  **dwritetimeoverlay**, **dwritetextoverlay**, **dwritesubtitlemux**,
  and **dwritesubtitleoverlay** elements, including closed caption overlay
  support in dwritetextoverlay.

- **PTP clock support** is now also available on Windows

- **qml6d3d11sink** is a new **Direct3D11 Qt6 QML sink** for Windows
  as an alternative to the existing qml6glsink.

- **wasapi2** audio plugin:
  - Added an option to monitor a loopback device's mute state
  - Allows process loopback capture on Windows 10

- **win32ipc** supports zero-copy rendering now through a shared bufferpool.

- Add a **Windows-specific plugin loader implementation** (`gst-plugin-scanner`),
  so plugin loading during registry updates happens in an external process
  on Windows as well.

- `gst_video_convert_sample()` which is often used for thumbnailing
  gained a D3D11 specific conversion path.

- **d3d11** plugin:
  - `d3d11mpeg2dec` element is promoted to `PRIMARY` + 1 rank
  - Added `d3d11ipcsrc` and `d3d11ipcsink` elements for zero-copy GPU memory sharing between multiple processes.
  - Added HLSL shader pre-compilation (at binary build time) support in MSVC build.
  - `d3d11videosink` and `d3d11convert` elements support 3D transform, MSAA (MultiSampling Anti-Aliasing) and anisotropic sampling method.
  - Added support for more raw video formats by using compute shader. A list of supported raw video formats can be found in the [`d3d11videosink` plugin documentation][d3d11videosink-docs].
  - Added `d3d11overlay` element for applications to be able to draw/blend an overlay image on Direct3D11 texture directly. 

[d3d11videosink-docs]: https://gstreamer.freedesktop.org/documentation/d3d11/d3d11videosink.html#pad-templates

- **New Direct3D12 plugin**: From a video decoding, conversion, composition, and rendering point of view, this new `d3d12` plugin is feature-wise near equivalent to the `d3d11` plugin. Notable differences between `d3d12` and `d3d11` are:
  - The GStreamer Direct3D12 integration layer is not exposed as a GStreamer API yet. Thus, other plugins such as `amfcodec`, `nvcodec`, `qsv`, and `dwrite` are not integrated with `d3d12` yet.
  - H.264 video encoding support via `d3d12h264enc` element.
    - Direct3D12 video encoding API requires Windows 11 or [DirectX 12 Agility SDK][directx-12-agility-sdk]
  - IPC, overlay, and deinterlace elements are not implemented in `d3d12`
  - [Windows Graphics Capture][windows-graphics-capture] API based screen capturing is not implemented in `d3d12`
  - In this release, MSVC is the only officially supported toolchain for the `d3d12` plugin build.
  - All `d3d12` elements are zero ranked for now. Users will need to adjust rank of each `d3d12` element via `GST_PLUGIN_RANK` environment or appropriate plugin feature APIs if they want these elements autoplugged.

[directx-12-agility-sdk]: https://devblogs.microsoft.com/directx/gettingstarted-dx12agility/
[windows-graphics-capture]: https://learn.microsoft.com/en-us/uwp/api/windows.graphics.capture

<!--

<a id="linux"></a>
### Linux

- Many improvements which are described in other sections.

-->

<a id="docs"></a>
## Documentation improvements

- hotdoc has been updated to the latest version, and the theme has also
  been updated, which should fix various usability issues.

<a id="breaking-changes"></a>
## Possibly Breaking Changes

- `gst_plugin_feature_check_version()` has been updated to fix unexpected
  version check behaviour for git versions. It would return TRUE if the
  plugin version is for a git development version (e.g. 1.24.0.1) and the
  check is for the "next" micro version (1.24.1). Now it no longer does this.
  This just brings the runtime version check in line with the build time
  version checks which have been fixed some time ago.

- `GstAudioAggregator` and subclasses such as **audiomixer** now sync
  property values to output timestamp, which is what `GstVideoAggregator`
  has been doing already since 2019, and which makes sense, as the properties
  need to change at every output frame based on the output time because they
  may change even though the input frame is not changing.

- **rtpac3depay** now outputs `audio/x-ac3` instead of `audio/ac3` as that
  is the canonical media format in GStreamer. `audio/ac3` is still sometimes
  accepted as input format for backwards compatibility (e.g. in `rtpac3pay`
  or `ac3parse`), but shouldn't be output.

- **timecodestamper**: The "drop-frame" property now defaults to TRUE

- The NVIDIA desktop GPU decoders `nvh264sldec`, `nvh265sldec`, `nvvp8sldec`
  and `nvvp9sldec` were renamed to `nvh264dec`, `nvh265dec`, `nvvp8dec` and
  `nvvp9dec`, respectively.

<a id="known-issues"></a>
## Known Issues

- There are known issues with FFmpeg version 6.0.0 due to opaque passing
  being broken in that version. This affects at least `avdec_h264`, but
  may affect other decoders as well. Versions before 6.0.0, and 6.0.1 or higher
  are not affected.

- gst-libav currently doesn't build against the latest FFmpeg 7.0 release.
  This is being worked on and tracked in [this "libav: Fix compatibility with ffmpeg 7" Merge Request][ffmpeg-7-0-compat-mr].

[ffmpeg-7-0-compat-mr]: https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/6505

<a id="statistics"></a>
## Statistics

- 4643 commits
- 2405 Merge Requests
- 850 Issues
- 290+ Contributors
- ~25% of all commits and Merge Requests were in Rust modules

- 4747 files changed
- 469633 lines added
- 209842 lines deleted
- 259791 lines added (net)

<a id="contributors"></a>
## Contributors

Aaron Boxer, Aaron Huang, Acky Xu, adixonn, Adrian Fiergolski,
Adrien De Coninck, Akihiro Sagawa, Albert Sjölund, Alessandro Bono,
Alexande B, Alexander Slobodeniuk, Alicia Boya García, amindfv,
Amir Naghdinezhad, anaghdin, Anders Hellerup Madsen, Andoni Morales Alastruey,
Antonio Kevo, Antonio Rojas, Arnaud Rebillout, Arnaud Vrac, Arun Raghavan,
badcel, Balló György, Bart Van Severen, Bastien Nocera, Benjamin Gaignard,
Bilal Elmoussaoui, Brad Hards, Camilo Celis Guzman, Carlo Cabrera,
Carlos Falgueras García, Carlos Rafael Giani, Célestin Marot, Chao Guo,
Charlie Blevins, Cheah, Vincent Beng Keat, Chris Degawa, Chris Spencer,
Christian Curtis Veng, Christian Meissl, Christopher Degawa, Chris Wiggins,
Cidana-Developers, Colin Kinloch, Damian Hobson-Garcia, Daniel Almeida,
Daniel Knobe, Daniel Moberg, Daniel Morin, Daniel Pendse, Daniel Stone,
Daniel Ulery, Dan Searles, Dario Marino Saccavino, Dave Patrick Caberto,
David Craven, David Revay, David Rosca, David Svensson Fors, Detlev Casanova,
Diego Nieto, Dominique Leroux, Dongyun Seo, Doug Nazar, Edward Hervey,
Ekwang Lee, elenril, Elliot Chen, Enrique Ocaña González, Erik Fröbrant,
Eva Pace, Evgeny Pavlov, Fabian Orccon, Felix Yan, Fernando Jiménez Moreno,
Florian Zwoch, François Laignel, Frank Dana, Georges Basile Stavracas Neto,
Guillaume Desmottes, Guillaume Gomez, Gwyn Ciesla, Haihua Hu, Hassene Tmar,
hassount, Heiko Becker, He Junyan, hguermaz, Hiero32, Hosang Lee, Hou Qi,
Hugo Svirak, Hugues Fruchet, Hu Qian, Hyung Song, Ignazio Pillai, Ilie Halip,
Itamar Marom, Ivan Molodetskikh, Ivan Tishchenko, JackZhouVCD, Jacob Johnsson,
jainl28patel, Jakub Adam, James Cowgill, James Hilliard, James Oliver,
Jan Alexander Steffens (heftig), Jan Beich, Jan Schmidt, Jan Vermaete,
Jayson Reis, Jeff Wilson, Jeongki Kim, Jeri Li, Jimmi Holst Christensen,
Jimmy Ohn, Jochen Henneberg, Johan Adam Nilsson, Johan Sternerup, John King,
Jonas Danielsson, Jonas K Danielsson, Jonas Kvinge, Jordan Petridis,
Jordan Yelloz, Josef Kolář, Juan Navarro, Julien Isorce, Jun Zhao,
Jurijs Satcs, Kalev Lember, Kamal Mostafa, kelvinhu325, Kevin Song, Khem Raj,
Kourosh Firoozbakht, Leander Schulten, Leif Andersen, L. E. Segovia,
Lieven Paulissen, lijing0010, Lily Foster, Link Mauve, Li Yuanheng,
Loïc Le Page, Loïc Molinari, Lukas Geiger, Luke McGartland, Maksym Khomenko,
Ma, Mingyang, Manel J, Marcin Kolny, Marc Leeman, Marc Solsona,
Marc Wiblishauser, Marek Vasut, Marijn Suijten, Mark Hymers, Markus Ebner,
Martin Nordholts, Martin Robinson, Mart Raudsepp, Marvin Schmidt,
Mathieu Duponchelle, Matt Feury, Matthew Waters, Matthias Fuchs, Matthieu Volat,
Maxim P. Dementyev, medithe, Mengkejiergeli Ba, Michael Bunk, Michael Gruner,
Michael Grzeschik, Michael Olbrich, Michael Tretter, Michiel Westerbeek,
Mihail Ivanchev, Ming Qian, Nader Mahdi, naglis, Nick Steel, Nicolas Beland,
Nicolas Dufresne, Nirbheek Chauhan, Olivier Babasse, Olivier Blin,
Olivier Crête, Omar Khlif, Onur Demiralay, Patricia Muscalu, Paul Fee,
Pawel Stawicki, Peter Stensson, Philippe Normand, Philipp Zabel,
PhoenixWorthVCD, Piotr Brzeziński, Priit Laes, Qian Hu, Rabindra Harlalka,
Rafał Dzięgiel, Rahul T R, rajneeshksoni, Ratchanan Srirattanamet, renjun wang,
Rhythm Narula, Robert Ayrapetyan, Robert Mader, Robert Rosengren,
Robin Gustavsson, Roman Lebedev, Rouven Czerwinski, Ruben Gonzalez,
Ruslan Khamidullin, Ryan Pavlik, Sanchayan Maity, Sangchul Lee, Scott Kanowitz,
Scott Moreau, SeaDve, Sean DuBois, Sebastian Dröge, Sebastian Szczepaniak,
Sergey Radionov, Seungha Yang, Shengqi Yu, Simon Himmelbauer, Slava Andrejev,
Slawomir Pawlowski, soak, Stefan Brüns, Stéphane Cerveau, Stephan Seitz,
Stijn Last, Talha Khan, Taruntej Kanakamalla, Jin Chung Teng, Théo Maillart,
Thibault Saunier, Thomas Schneider, Tim-Philipp Müller, Tobias Rapp, Tong Wu,
Tristan van Berkom, ttrigui, U. Artie Eoff, utzcoz, Víctor Manuel Jáquez Leal,
Vivia Nikolaidou, Wang Chuan, William Manley, Wojciech Kapsa,
Xabier Rodriguez Calvar, Xavier Claessens, Xuchen Yang, Yatin Maan, Yinhang Liu,
Yorick Smilda, Yuri Fedoseev, Gang Zhao, Jack Zhou, ...

... and many others who have contributed bug reports, translations,
sent suggestions or helped testing. Thank you all!

## Stable 1.24 branch

After the 1.24.0 release there will be several 1.24.x bug-fix releases which
will contain bug fixes which have been deemed suitable for a stable branch,
but no new features or intrusive changes will be added to a bug-fix release
usually. The 1.24.x bug-fix releases will be made from the git 1.24 branch,
which will be a stable branch.

<a id="1.24.0"></a>

### 1.24.0

GStreamer 1.24.0 was released on 4 March 2024.

<a id="1.24.1"></a>

### 1.24.1

The first 1.24 bug-fix release (1.24.1) was released on 21 March 2024.

This release only contains bugfixes and it *should* be safe to update
from 1.24.0.

#### Highlighted bugfixes in 1.24.1

- Fix instant-EOS regression in audio sinks in some cases when volume is 0
- rtspsrc: server compatibility improvements and ONVIF trick mode fixes
- rtsp-server: fix issues if RTSP media was set to be both shared and reusable
- (uri)decodebin3 and playbin3 fixes
- adaptivdemux2/hlsdemux2: Fix issues with failure updating playlists
- mpeg123 audio decoder fixes
- v4l2codecs: DMA_DRM caps support for decoders
- va: various AV1 / H.264 / H.265 video encoder fixes
- vtdec: fix potential deadlock regression with ProRes playback
- gst-libav: fixes for video decoder frame handling, interlaced mode detection
- avenc_aac: support for 7.1 and 16 channel modes
- glimagesink: Fix the sink not always respecting preferred size on macOS
- gtk4paintablesink: Fix scaling of texture position
- webrtc: Allow resolution and framerate changes, and many other improvements
- webrtc: Add new LiveKit source element
- Fix usability of binary packages on arm64 iOS
- various bug fixes, memory leak fixes, and other stability and reliability improvements

#### gstreamer

 - [registry, ptp: Canonicalize the library path returned by dladdr](https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/6343)
 - [segment: Don't use g_return_val_if_fail() in gst_segment_to_running_time_full()](https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/6275)
 - [uri: Sort uri protocol sources/sinks by feature name to break a feature rank tie](https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/6342)
 - [ptp: Initialize expected DELAY_REQ seqnum to an invalid value](https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/6365)
 - [ptp: Don't install test executable](https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/6268)
 - [gst-inspect: fix --exists for plugins with versions other than GStreamer's version, like the Rust plugins](https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/6414)
 - [identity: Don't refuse seeks unless single-segment=true](https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/6314)

#### gst-plugins-base

 - [audiobasesink: Don't wait on gap events](https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/6384)
 - [audioencoder: Avoid using temporarily mapped memory as base for input buffers](https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/6339)
 - [decodebin3: Be more specific when sending missing plugin messages](https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/6377)
 - [decodebin3: Fix re-usability issues](https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/6332)
 - [decodebin3: Provide clear error message if no decoders present](https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/6329)
 - [playbin3: Remove un-needed URI NULL check](https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/6338)
 - [uridecodebin3: Don't hold lock when posting messages or signals](https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/6403)
 - [uridecodebin3: Handle potential double redirection errors](https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/6394)
 - [glimagesink: Fix the sink not always respecting preferred size on macOS](https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/6276)
 - [glupload: Do not propose allocators with sysmem, fixes warning when playing VP9 with alpha](https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/6350)
 - [shmallocator: fix build on Illumos](https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/6362)
 - [meson: Fix the condition to skip theoradec test](https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/6269)

#### gst-plugins-good

 - [adaptivdemux/hlsdemux2: Fix issues with failure updating playlists](https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/6410)
 - [mpg123audiodec: Correctly handle the case of clipping all decoded samples](https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/6357)
 - [mpg123audiodec: gst_audio_decoder_allocate_output_buffer: assertion 'size > 0' failed](https://gitlab.freedesktop.org/gstreamer/gstreamer/-/issues/3365)
 - [qt: Fix description in meson build options](https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/6313)
 - [qtdemux: Do not set channel-mask to zero](https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/6296)
 - [rtspsrc: remove 'deprecated' flag from the 'push-backchannel-sample' signal](https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/6363)
 - [rtspsrc: Consider 503 Service Not Available when handling broken control urls](https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/6267)
 - [rtspsrc, rtponviftimestamp: ONVIF mode fixes](https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/6295)
 - [rtspsrc: Don't invoke close when stopping if we've started cleanup, fixing potential crash on shutdown](https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/6330)
 - [rtpgstpay: Delay pushing of event packets until the next buffer](https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/6298)

#### gst-plugins-bad

 - [asio: Fix {input,output}-channels property handling](https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/6372)
 - [cuda,d3d11,d3d12bufferpool: Disable preallocation](https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/6345)
 - [d3d11device: Fix adapter LUID comparison in wrapped device mode](https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/6364)
 - [d3d12device: Fix IDXGIFactory2 leak](https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/6353)
 - [d3d12: Fix SDK debug layer activation](https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/6383)
 - [dvbsubenc: Fix bottom field size calculation](https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/6277)
 - [dvdspu: avoid null dereference](https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/6391)
 - [GstPlay: Fix a critical warning in error callback](https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/6387)
 - [v4l2codecs: decoders: Add DMA_DRM caps support](https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/6376)
 - [vaav1enc: Init the output_frame_num when resetting gf group](https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/6333)
 - [vah264enc, vah265enc, vaav1enc: fix potential crash on devices without rate control](https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/6344)
 - [vah265enc: checking surface alignment](https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/6399)
 - [videoparsers: Don't verbosely warn about CEA_708_PROCESS_EM_DATA_FLAG not being set](https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/6352)
 - [vtdec: Fix a deadlock during ProRes playback, handle non-linked gracefully](https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/6411)

#### gst-plugins-ugly

 - No changes

#### GStreamer Rust plugins

 - [gtk4paintablesink: Fix scaling of texture position](https://gitlab.freedesktop.org/gstreamer/gst-plugins-rs/-/merge_requests/1499)
 - [janusvrwebrtcsink: Handle 64 bit numerical room ids](https://gitlab.freedesktop.org/gstreamer/gst-plugins-rs/-/merge_requests/1478)
 - [janusvrwebrtcsink: Don't include deprecated audio/video fields in publish messages](https://gitlab.freedesktop.org/gstreamer/gst-plugins-rs/-/merge_requests/1480)
 - [janusvrwebrtcsink: Handle various other messages to avoid printing errors](https://gitlab.freedesktop.org/gstreamer/gst-plugins-rs/-/merge_requests/1481)
 - [livekitwebrtc: Fix shutdown behaviour](https://gitlab.freedesktop.org/gstreamer/gst-plugins-rs/-/merge_requests/1482)
 - [rtpgccbwe: Don't forward buffer lists with buffers from different SSRCs to avoid breaking assumptions in rtpsession](https://gitlab.freedesktop.org/gstreamer/gst-plugins-rs/-/merge_requests/1502)
 - [sccparse: Ignore invalid timecodes during seeking](https://gitlab.freedesktop.org/gstreamer/gst-plugins-rs/-/merge_requests/1485)
 - [webrtcsink: Don't try parsing audio caps as video caps](https://gitlab.freedesktop.org/gstreamer/gst-plugins-rs/-/merge_requests/1511)
 - [webrtc: Allow resolution and framerate changes](https://gitlab.freedesktop.org/gstreamer/gst-plugins-rs/-/merge_requests/1498)
 - [webrtcsrc: Make producer-peer-id optional](https://gitlab.freedesktop.org/gstreamer/gst-plugins-rs/-/merge_requests/1477)
 - [livekitwebrtcsrc: Add new LiveKit source element](https://gitlab.freedesktop.org/gstreamer/gst-plugins-rs/-/merge_requests/1461)
 - [regex: Add support for configuring regex behaviour](https://gitlab.freedesktop.org/gstreamer/gst-plugins-rs/-/merge_requests/1497)
 - [spotifyaudiosrc: Document how to use with non-Facebook accounts](https://gitlab.freedesktop.org/gstreamer/gst-plugins-rs/-/merge_requests/1490)
 - [webrtcsrc: Add `do-retransmission` property](https://gitlab.freedesktop.org/gstreamer/gst-plugins-rs/-/merge_requests/1509)

#### gst-libav

 - [avcodecmap: Increase max AAC channels to 16](https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/6375)
 - [avviddec: Fix how we get back the codec frame](https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/6331)
 - [avviddec: Fix interlaced mode detection](https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/6297)
 - [avviddec: Double check if AV_CODEC_FLAG_COPY_OPAQUE port is safe for our scenario](https://gitlab.freedesktop.org/gstreamer/gstreamer/-/issues/3333)

#### gst-rtsp-server

 - [media: gst_rtsp_media_set_reusable() and gst_rtsp_media_set_shared() have become incompatible](https://gitlab.freedesktop.org/gstreamer/gstreamer/-/issues/3412)
 - [rtsp-stream: clear sockets when leaving bin](https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/6334)

#### gstreamer-vaapi

 - No changes

#### gstreamer-sharp

 - No changes

#### gst-omx

 - No changes

#### gst-python

 - No changes

#### gst-editing-services

 - [ges: Fix critical warning](https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/6315)

#### gst-validate + gst-integration-testsuites

 - No changes

### gst-examples

 - No changes

#### Development build environment

 - No changes

#### Cerbero build tool and packaging changes in 1.24.1

 - [gstreamer: Enable ptp helper explicitly](https://gitlab.freedesktop.org/gstreamer/cerbero/-/merge_requests/1416)
 - [gst-plugins-bad: Package new insertbin plugin](https://gitlab.freedesktop.org/gstreamer/cerbero/-/merge_requests/1412)
 - [gst-plugins-rs: Adjust parallel architecture build blocks](https://gitlab.freedesktop.org/gstreamer/cerbero/-/merge_requests/1405)
 - [libnice: update to 0.1.22](https://gitlab.freedesktop.org/gstreamer/cerbero/-/merge_requests/1399)
 - [pixman: Bump to 0.43.4](https://gitlab.freedesktop.org/gstreamer/cerbero/-/merge_requests/1393)
 - [orc: disable JIT code generation on arm64 on iOS again, fixing crashes](https://gitlab.freedesktop.org/gstreamer/cerbero/-/merge_requests/1419)

#### Contributors to 1.24.1

Alexander Slobodeniuk, Antonio Larrosa, Edward Hervey, Elizabeth Figura,
François Laignel, Guillaume Desmottes, He Junyan, Jan Schmidt,
Jordan Yelloz, L. E. Segovia, Mark Nauwelaerts, Mathieu Duponchelle,
Michael Tretter, Mikhail Rudenko, Nicolas Dufresne, Nirbheek Chauhan,
Philippe Normand, Piotr Brzeziński, Robert Mader, Ruijing Dong,
Sebastian Dröge, Seungha Yang, Thomas Goodwin, Thomas Klausner,
Tim-Philipp Müller, Xi Ruoyao,

... and many others who have contributed bug reports, translations, sent
suggestions or helped testing. Thank you all!

#### List of merge requests and issues fixed in 1.24.1

- [List of Merge Requests applied in 1.24.1](https://gitlab.freedesktop.org/groups/gstreamer/-/merge_requests?scope=all&utf8=%E2%9C%93&state=merged&milestone_title=1.24.1)
- [List of Issues fixed in 1.24.1](https://gitlab.freedesktop.org/groups/gstreamer/-/issues?scope=all&utf8=%E2%9C%93&state=closed&milestone_title=1.24.1)

<a id="1.24.2"></a>

### 1.24.2

The second 1.24 bug-fix release (1.24.2) was released on 9 April 2024.

This release only contains bugfixes and it *should* be safe to update
from 1.24.x.

#### Highlighted bugfixes in 1.24.2

- H.264 parsing regression fixes
- WavPack typefinding improvements
- Video4linux fixes and improvements
- Android build and runtime fixes
- macOS OpenGL memory leak and robustness fixes
- Qt/QML video sink fixes
- Package new analytics and mse libraries in binary packages
- Windows MSVC binary packages: fix libvpx avx/avx2/avx512 instruction set detection
- various bug fixes, memory leak fixes, and other stability and reliability improvements

#### gstreamer

 - [clock: Block futex_time64 usage on Android API level < 30](https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/6518)
 - [basesrc: Clear submitted buffer lists consistently with buffers](https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/6463)
 - [ptpclock: fix double free of domain data during deinit](https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/6457)
 - [clocksync: Proxy allocation queries](https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/6525)
 - [inputselector: fix possible clock leak on shutdown](https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/6455)
 - [typefind: Handle WavPack block sizes > 131072](https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/6541)

#### gst-plugins-base

 - [glcolorconvert: Ensure glcolorconvert does not miss supported RGB formats](https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/6517)
 - [gl/macos: a couple of race/reference count fixes](https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/6524)
 - [pbutils: descriptions: Don't warn on MPEG-1 audio caps without layer field](https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/6538)
 - [encodebin: Add the parser before timestamper to tosync list](https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/6486)
 - [videorate: Reset last_ts when a new segment is received](https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/6522)

#### gst-plugins-good

 - [qml6glsink: fix destruction of underlying texture](https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/6506)
 - [qt/qt6: Fixup for dummy textures](https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/6581)
 - [rtpjitterbuffer: Don't use estimated_dts to do default skew adjustment](https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/6561)
 - [rtpjitterbuffer: Use an extended RTP timestamp for the clock-base](https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/6575)
 - [rtpmp4adepay: Set duration on outgoing buffers](https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/6456)
 - [tests: rtpred: fix out-of-bound writes](https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/6478)
 - [v4l2: allocator: Fix unref log/trace on memory release](https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/6556)
 - [v4l2: Also set max_width/max_width if enum framesize fail](https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/6430)
 - [v4l2: enforce a pixel aspect ratio of 1/1 if no data are available](https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/6559)
 - [v4l2: fix error in calculating padding bottom for tile format](https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/6554)
 - [v4l2src: need maintain the caps order in caps compare when fixate](https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/6473)
 - [vpxenc: Include vpx error details in errors and warnings](https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/6584)

#### gst-plugins-bad

 - [h264parse: element hangs with some video streams (regression)](https://gitlab.freedesktop.org/gstreamer/gstreamer/-/issues/3436)
 - [h264parse: Revert "AU boundary detection changes"](https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/6562)
 - [alphadecodebin: Explicitly pass 64 bit integers as such through varargs](https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/6469)
 - [atdec: Set a channel mask for channel counts greater than 2](https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/6546)
 - [ccconverter: Fix caps leak and remove unnecessary code](https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/6587)
 - [d3d11videosink: disconnect signals before releasing the window](https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/6492)
 - [d3d11: meson: Add support for MinGW DirectXMath package and update directxmath wrap to 3.1.9](https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/6503)
 - [d3d11: meson: Disable library build if DirectXMath header was not found](https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/6472)
 - [dwrite: Fix crash on device update](https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/6521)
 - [GstPlay: Update `video_snapshot` to support playbin3](https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/6526)
 - [jpegparse: avi1 tag can be progressive](https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/6453)
 - [jpegparse: turn some bus warnings into object ones](https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/6539)
 - [qsvdecoder: Release too old frames](https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/6586)
 - [ristsrc: Only free caps if needed](https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/6485)
 - [va: av1enc: Correct the reference number and improve the reference setting](https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/6507)
 - [va: {vp9, av1}enc: Avoid reopen encoder or renegotiate](https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/6519)
 - [videoparsers: Demote CC warning message](https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/6555)
 - [vkbufferpool: correct usage flags type](https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/6528)
 - [vkh26xdec: a couple decoding fixes](https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/6534)
 - [vtdec: Fix caps criticals during negotiation](https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/6454)
 - [wpe: avoid crash with G_DEBUG=fatal_criticals and static build](https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/6488)
 - [Sink missing floating references](https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/6527)

#### gst-plugins-ugly

 - No changes

#### GStreamer Rust plugins

 - [aws: use fixed BehaviorVersion](https://gitlab.freedesktop.org/gstreamer/gst-plugins-rs/-/merge_requests/1520)
 - [aws: improve error message logs](https://gitlab.freedesktop.org/gstreamer/gst-plugins-rs/-/merge_requests/1521)
 - [fmp4: Update to dash-mpd 0.16](https://gitlab.freedesktop.org/gstreamer/gst-plugins-rs/-/merge_requests/1523)
 - [fmp4mux: Require gstreamer-pbutils 1.20 for the examples](https://gitlab.freedesktop.org/gstreamer/gst-plugins-rs/-/merge_requests/1530)
 - [onvifmetadataparse: Reset state in PAUSED->READY after pad deactivation, fixing occasional deadlock on shutdown](https://gitlab.freedesktop.org/gstreamer/gst-plugins-rs/-/merge_requests/1526)
 - [reqwest: Update to reqwest 0.12](https://gitlab.freedesktop.org/gstreamer/gst-plugins-rs/-/merge_requests/1510)
 - [webrtcsink: set perfect-timestamp=true on audio encoders](https://gitlab.freedesktop.org/gstreamer/gst-plugins-rs/-/merge_requests/1524)
 - [webrtcsink: improve panic message on unexpected caps during discovery](https://gitlab.freedesktop.org/gstreamer/gst-plugins-rs/-/merge_requests/1524)
 - [webrtchttp: Update to reqwest 0.12](https://gitlab.freedesktop.org/gstreamer/gst-plugins-rs/-/merge_requests/1530)
 - [webrtc: fix inconsistencies in documentation of object names](https://gitlab.freedesktop.org/gstreamer/gst-plugins-rs/-/merge_requests/1529)
 - [Fix clippy warnings after upgrade to Rust 1.77](https://gitlab.freedesktop.org/gstreamer/gst-plugins-rs/-/merge_requests/1512)

#### gst-libav

 - [avviddec: Fix AVPacket leak](https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/6545)

#### gst-rtsp-server

 - No changes

#### gstreamer-vaapi

 - No changes

#### gstreamer-sharp

 - No changes

#### gst-omx

 - No changes

#### gst-python

 - No changes

#### gst-editing-services

 - [ges: frame-composition-meta: Stop using keyword 'operator' for field in C++](https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/6448)

#### gst-validate + gst-integration-testsuites

 - No changes

### gst-examples

 - [webrtc examples: set perfect-timestamp=true on opusenc for better Chrome interoperability](https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/6523)

#### Development build environment

 - [flac: Add subproject wrap and allow falling back to it in the flac plugin](https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/6560)
 - [libnice: bump subproject wrap to v0.1.22 (needed for ICE consent freshness support in gstwebrtc)](https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/6431)

#### Cerbero build tool and packaging changes in 1.24.2

 - [glib: Block futex_time64 usage on Android API level < 30](https://gitlab.freedesktop.org/gstreamer/cerbero/-/merge_requests/1441)
 - [libvpx: Fix build with Python 3.8](https://gitlab.freedesktop.org/gstreamer/cerbero/-/merge_requests/1443)
 - [libvpx: Fix errors with avx* instruction set detection for x86* builds and MSVC](https://gitlab.freedesktop.org/gstreamer/cerbero/-/merge_requests/1448)
 - [openjpeg: Update to 2.5.2](https://gitlab.freedesktop.org/gstreamer/cerbero/-/merge_requests/1440)
 - [directxmath: Update to 3.1.9](https://gitlab.freedesktop.org/gstreamer/cerbero/-/merge_requests/1438)
 - [gst-plugins-rs: Fix superstripping for ELF breaking all plugins](https://gitlab.freedesktop.org/gstreamer/cerbero/-/merge_requests/1437)
 - [Rust-based plugin initialization hangs on Android with GStreamer 1.24.0](https://gitlab.freedesktop.org/gstreamer/gstreamer/-/issues/3358)

#### Contributors to 1.24.2

Alexander Slobodeniuk, Arnaud Vrac, Chao Guo, Chris Spencer, Daniel Morin,
Edward Hervey, Elizabeth Figura, Elliot Chen, eri, François Laignel,
Guillaume Desmottes, Haihua Hu, He Junyan, Hou Qi, Jan Schmidt,
Jochen Henneberg, L. E. Segovia, Martin Nordholts, Matthew Waters,
Nicolas Dufresne, Philippe Normand, Philipp Zabel, Piotr Brzeziński,
Robert Guziolowski, Robert Mader, Ruben Gonzalez, Sebastian Dröge,
Seungha Yang, Taruntej Kanakamalla, Thibault Saunier, Tim Blechmann,
Tim-Philipp Müller, Víctor Manuel Jáquez Leal, Wojciech Kapsa,
Xavier Claessens,

... and many others who have contributed bug reports, translations, sent
suggestions or helped testing. Thank you all!

#### List of merge requests and issues fixed in 1.24.2

- [List of Merge Requests applied in 1.24.2](https://gitlab.freedesktop.org/groups/gstreamer/-/merge_requests?scope=all&utf8=%E2%9C%93&state=merged&milestone_title=1.24.2)
- [List of Issues fixed in 1.24.2](https://gitlab.freedesktop.org/groups/gstreamer/-/issues?scope=all&utf8=%E2%9C%93&state=closed&milestone_title=1.24.2)

<a id="1.24.3"></a>

### 1.24.3

The third 1.24 bug-fix release (1.24.3) was released on 30 April 2024.

This release only contains bugfixes and it *should* be safe to update
from 1.24.x.

#### Highlighted bugfixes in 1.24.3

- EXIF image tag parsing [security fixes][security]
- Subtitle handling improvements in parsebin
- Fix issues with HLS streams that contain VTT subtitles
- Qt6 QML sink re-render and re-sizing fixes
- unixfd ipc plugin timestamp and segment handling fixes
- vah264enc, vah265enc: Do not touch the PTS of the output frame
- vah264dec and vapostproc fixes and improvements
- v4l2: multiple fixes and improvements, incl. for mediatek JPEG decoder and v4l2 loopback
- v4l2: fix hang after seek with some v4l2 decoders
- Wayland sink fixes
- ximagesink: fix regression on RPi/aarch64
- fmp4mux, mp4mux gained FLAC audio support
- D3D11, D3D12: reliablity improvements and memory leak fixes
- Media Foundation device provider fixes
- GTK4 paintable sink improvements including support for directly importing dmabufs with GTK 4.14
- WebRTC sink/source fixes and improvements
- AWS s3sink, s3src, s3hlssink now support path-style addressing
- MPEG-TS demuxer fixes
- Python bindings fixes
- various bug fixes, memory leak fixes, and other stability and reliability improvements

[security]: https://gstreamer.freedesktop.org/security/

#### gstreamer

 - [ptp: Silence Rust compiler warning about some unused trait methods](https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/6606)

#### gst-plugins-base

 - [EXIF image tag parsing security fixes](https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/6768)
 - [glcolorconvert: remove some dead code](https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/6605)
 - [parsebin: Ensure non-time subtitle streams get "parsed"](https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/6597)
 - [playbin3: Handle combiner update in case of errors](https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/6742)
 - [ximagesink: initialize mask for XISelectEvents](https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/6654)

#### gst-plugins-good

 - [adaptivedemux2: Playback hangs with VTT fragments](https://gitlab.freedesktop.org/gstreamer/gstreamer/-/issues/3463)
 - [adaptivedemux2: Avoid double usage of parsebin](https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/6716)
 - [pulsedeviceprovider: Add compare_device_type_name function and missing lock](https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/6599)
 - [qml6glsink: Notify that the returned QSGNode node has changes](https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/6633)
 - [qml6glsink: video content resizes to new item size](https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/6759)
 - [qtdemux: fix wrong full_range offset when parsing colr box](https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/6634)
 - [soup: fix thread name](https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/6739)
 - [v4l2: add multiplane y42b (yuv422m) support (for mediatek v4l2 jpeg decoder)](https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/6657)
 - [v4l2: bufferpool: Drop writable check on output pool process](https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/6648)
 - [v4l2: bufferpool: Ensure freshly created buffers are not marked as queued, fixing issues with v4l2sink on a v4l2loopback device](https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/6685)
 - [v4l2: bufferpool: queue back the buffer flagged LAST but empty, fixes hangs after seek with some decoders](https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/6649)
 - [v4l2: silence valgrind warning](https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/6761)
 - [vpx: Include vpx error details in errors and warnings](https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/6636)

#### gst-plugins-bad

 - [d3d11device: protect device_lock vs device_new](https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/6702)
 - [d3d11decoder, d3d12decoder: Fix potential use after free](https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/6710)
 - [d3d11videosink: Fix rendering on keyed mutex enabled handle](https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/6635)
 - [d3d12decoder: Fix d3d12 resource copy](https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/6755)
 - [d3d12encoder: Fix buffer pool leak](https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/6637)
 - [d3d12videosink: HWND event handling related fixes](https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/6700)
 - [d3d12vp9dec: Fix Intel GPU crash occurred when decoding VP9 SVC](https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/6717)
 - [dvbsubenc: fixed some memory leaks and a crash](https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/6672)
 - [GstPlay: fix read duration failure issue for some type rtsp streams which have valid duration](https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/6701)
 - [mediafoundation: Fix device enumeration](https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/6647)
 - [mediafoundation: Fix infinite loop in device provider](https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/6707)
 - [tests: fix possible libscpp build failure in gst-plugins-bad](https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/6644)
 - [tsdemux, tsparse: Fix Program equality check](https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/6719)
 - [tsdemux: Disable smart program update](https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/6708)
 - [unixfdsink: Take segment into account when converting timestamps](https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/6747)
 - [va: videoformat: use video library to get DRM fourcc](https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/6744)
 - [va: radeonsi: DRM RGB formats doesn't look correctly mapped to VA formats](https://gitlab.freedesktop.org/gstreamer/gstreamer/-/issues/3354)
 - [vah264enc, vah265enc: Do not touch the PTS of output frame](https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/6764) 
 - [vaav1enc: Change the alignment of output to "tu"](https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/6751)
 - [vaallocator: disable derived all together for Mesa <23.3](https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/6746)
 - [waylandsink: free staged buffer when do gst_wl_window_finalize](https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/6735)
 - [wlwindow: clear configure mutex and cond when finalize](https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/6724)
 - [waylandsink: config buffer pool with query size when propose_allocation](https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/6687)
 - [v4l2codecs: Don't unref allocation query caps](https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/6682)

#### gst-plugins-ugly

 - No changes

#### GStreamer Rust plugins

Fixed:

 - [hrtfrender: Use a bitmask instead of an int in the caps for the channel-mask](https://gitlab.freedesktop.org/gstreamer/gst-plugins-rs/-/merge_requests/1549)
 - [rtpgccbwe: Don't log an error when pushing a buffer list fails while stopping](https://gitlab.freedesktop.org/gstreamer/gst-plugins-rs/-/merge_requests/1535)
 - [webrtcsink: Don't panic in bitrate handling with unsupported encoders](https://gitlab.freedesktop.org/gstreamer/gst-plugins-rs/-/merge_requests/1534)
 - [webrtcsink: Don't panic if unsupported input caps are used](https://gitlab.freedesktop.org/gstreamer/gst-plugins-rs/-/merge_requests/1540)
 - [webrtcsrc: Allow a `None` producer-id in `request-encoded-filter` signal](https://gitlab.freedesktop.org/gstreamer/gst-plugins-rs/-/merge_requests/1528)

Added:

 - [aws: New property to support path-style addressing](https://gitlab.freedesktop.org/gstreamer/gst-plugins-rs/-/merge_requests/1527)
 - [fmp4mux / mp4mux: Support FLAC inside (f)MP4](https://gitlab.freedesktop.org/gstreamer/gst-plugins-rs/-/merge_requests/1401)
 - [gtk4: Support directly importing dmabufs with GTK 4.14](https://gitlab.freedesktop.org/gstreamer/gst-plugins-rs/-/merge_requests/1547)
 - [gtk4: Add force-aspect-ratio property similar to other video sinks](https://gitlab.freedesktop.org/gstreamer/gst-plugins-rs/-/merge_requests/1547)

#### gst-libav

 - [libav: guard some recently dropped APIs](https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/6632)

#### gst-rtsp-server

 - No changes

#### gstreamer-vaapi

 - No changes

#### gstreamer-sharp

 - No changes

#### gst-omx

 - No changes

#### gst-python

 - [Fix Python library name fetching and library searching on Windows](https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/6748)
 - [Don't link to python for the gi overrides module](https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/6638)

#### gst-editing-services

 - [ges-launcher: Fix for forcing container profiles](https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/6675)

#### gst-devtools, gst-validate + gst-integration-testsuites

 - [debug-viewer: Fix plugin loading machinery](https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/6678)
 - [validate/flvdemux: Stop spamming audio/video on test](https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/6728)

### gst-examples

 - No changes

#### Development build environment

 - No changes

#### Cerbero build tool and packaging changes in 1.24.3

 - No changes

#### Contributors to 1.24.3

Alexander Slobodeniuk, Edward Hervey, Elliot Chen, F. Duncanh, François Laignel,
Haihua Hu, He Junyan, Hou Qi, Jan Schmidt, Jimmy Ohn, Maksym Khomenko,
Matthew Waters, Nicolas Dufresne, Nirbheek Chauhan, Philippe Normand,
Philipp Zabel, Qian Hu (胡骞), Sanchayan Maity, Sebastian Dröge, Seungha Yang,
Simonas Kazlauskas, Taruntej Kanakamalla, Tim Blechmann, Tim-Philipp Müller,
U. Artie Eoff, Víctor Manuel Jáquez Leal, William Wedler, Xavier Claessens,

... and many others who have contributed bug reports, translations, sent
suggestions or helped testing. Thank you all!

#### List of merge requests and issues fixed in 1.24.3

- [List of Merge Requests applied in 1.24.3](https://gitlab.freedesktop.org/groups/gstreamer/-/merge_requests?scope=all&utf8=%E2%9C%93&state=merged&milestone_title=1.24.3)
- [List of Issues fixed in 1.24.3](https://gitlab.freedesktop.org/groups/gstreamer/-/issues?scope=all&utf8=%E2%9C%93&state=closed&milestone_title=1.24.3)

<a id="1.24.4"></a>

### 1.24.4

The fourth 1.24 bug-fix release (1.24.4) was released on 29 May 2024.

This release only contains bugfixes and it *should* be safe to update
from 1.24.x.

#### Highlighted bugfixes in 1.24.4

 - audioconvert: support more than 64 audio channels
 - avvidec: fix dropped frames when doing multi-threaded decoding of I-frame codecs such as DV Video
 - mpegtsmux: Correctly time out in live pipelines, esp. for sparse streams like KLV and DVB subtitles
 - vtdec deadlock fixes on shutdown and format/resolution changes (as might happen with e.g. HLS/DASH)
 - fmp4mux, isomp4mux: Add support for adding AV1 header OBUs into the MP4 headers, and add language from tags
 - gtk4paintablesink improvements: fullscreen mode and gst-play-1.0 support
 - webrtcsink: add support for insecure TLS and improve error handling and VP9 handling
 - v4l2codecs: decoder: Reorder caps to prefer `DMA_DRM` ones, fixes issues with playbin3
 - vah264enc, vah265enc: timestamp handling fixes; generate IDR frames on force-keyunit-requests, not I frames 
 - Visualizer plugins fixes
 - Avoid using private APIs on iOS
 - Various bug fixes, memory leak fixes, and other stability and reliability improvements

#### gstreamer

 - [clock: Fix 32 bit assertions in GST_TIME_TO_TIMEVAL and GST_TIME_TO_TIMESPEC](https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/6919)
 - [systemclock: fix usage of `__STDC_NO_ATOMICS__`](https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/6856)
 - [filesrc: Don't abort on `_get_osfhandle()` on Windows](https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/6879)
 - [tests: Avoid using "bool" for the variable name](https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/6896)
 - [Various Solaris / Illumos fixes](https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/6947)
 - [parse: Don't assume that child proxy child objects are GstObjects](https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/6951)

#### gst-plugins-base

 - [audioconvert: Support converting >64 channels](https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/6828)
 - [decodebin3: Fix caps and stream leaks](https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/6866)
 - [playbin(3), streamsynchronizer: Fix deadlock when streams have been flushed before others start](https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/6887)
 - [videotestsrc: fix race condition when clearing cached buffer](https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/6889)
 - [Fix visualization plugins](https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/6814)
 - [GstDiscoverer hangs when processing media file containing mebx on MacOS](https://gitlab.freedesktop.org/gstreamer/gstreamer/-/issues/3509)
 - [glmixer: Add `GL_SYNC_META` option to buffer pool](https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/6784)
 - [typefinding: Fix `ID_ODD_SIZE` handling regression in WavPack typefinder](https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/6944)

#### gst-plugins-good

 - [osxaudio: Avoid using private APIs on iOS](https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/6899)
 - [qtdemux: unit test fixes for 32-bit platforms](https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/6806)

#### gst-plugins-bad

 - [cudamemory: Fix offset of subsampled planar formats](https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/6910)
 - [d3d11: Revert "d3d11device: protect device_lock vs device_new](https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/6907)
 - [d3dshader: Fix gamma and primaries conversion pixel shader](https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/6803)
 - [dtlsconnection: Fix overflow in timeout calculation on systems with 32 bit time_t](https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/6920)
 - [GstPlay: Initialize debug category and error quark in class_init](https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/6821)
 - [kmssink: Do not close the DRM prime handle twice](https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/6916)
 - [mpegtsmux: Correctly time out and mux anyway in live pipelines](https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/6859)
 - [nvcodec: Accept progressive-high profiles for h264](https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/6873)
 - [nvencoder: Fix maximum QP value setting](https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/6832)
 - [qsvh264dec, qsvh265dec: Fix nalu leaks](https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/6790)
 - [v4l2codecs: decoder: Reorder caps to prefer DMA_DRM ones](https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/6824)
 - [vah264enc, vah265enc: Let FORCE_KEYFRAME be IDR frame rather than just I frame](https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/6857)
 - [vah264enc, vah265enc: Set DTS offset before PTS](https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/6913)
 - [vkh26xdec: Fix stop memory leak](https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/6787)
 - [vtdec: Fix deadlock when negotiating format change](https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/6817)
 - [vtdec: Fix PAUSED->READY deadlock when output loop is running](https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/6788)
 - [wayland: Use wl_display_create_queue_with_name](https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/6915)
 - [webrtc: request-aux-sender, only sink floating refs](https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/6809)
 - [webrtcbin: Allow session level setup attribute in SDP](https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/6945/)

#### gst-plugins-ugly

 - No changes

#### GStreamer Rust plugins

- [fmp4mux, isomp4mux: Add support for adding AV1 header OBUs into the MP4 headers](https://gitlab.freedesktop.org/gstreamer/gst-plugins-rs/-/merge_requests/1544)
- [fmp4mux, isomp4mux: Add language from tags](https://gitlab.freedesktop.org/gstreamer/gst-plugins-rs/-/merge_requests/1557)
- [gtk4paintablesink: Also create own window for gst-play-1.0](https://gitlab.freedesktop.org/gstreamer/gst-plugins-rs/-/merge_requests/1555)
- [gtk4paintablesink: Add `GST_GTK4_WINDOW_FULLSCREEN` environment variable to fullscreen window for testing with e.g. gst-launch-1.0](https://gitlab.freedesktop.org/gstreamer/gst-plugins-rs/-/merge_requests/1555)
- [gtk4: Fix plugin description and update python examples](https://gitlab.freedesktop.org/gstreamer/gst-plugins-rs/-/merge_requests/1563)
- [rtpgccbwe: Log effective bitrate in more places, and log delay and loss target bitrates separately](https://gitlab.freedesktop.org/gstreamer/gst-plugins-rs/-/merge_requests/1567)
- [webrtcsink: Improve error when no encoder was found or RTP plugins were missing](https://gitlab.freedesktop.org/gstreamer/gst-plugins-rs/-/merge_requests/1560)
- [webrtcsink: Add VP9 parser after the encoder for VP9 too](https://gitlab.freedesktop.org/gstreamer/gst-plugins-rs/-/merge_requests/1572)
- [webrtc: Add support for insecure TLS connections](https://gitlab.freedesktop.org/gstreamer/gst-plugins-rs/-/merge_requests/1553)

#### gst-libav

 - [avvidec: Fix dropping wrong "ghost" frames - fixing multi-threaded decoding of I-frame codecs such as DV Video](https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/6845)

#### gst-rtsp-server

 - No changes

#### gstreamer-vaapi

 - No changes

#### gstreamer-sharp

 - No changes

#### gst-omx

 - No changes

#### gst-python

 - No changes

#### gst-editing-services

 - [ges-pipeline: Configure encodebin before linking](https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/6785)

#### gst-devtools, gst-validate + gst-integration-testsuites

 - No changes

### gst-examples

 - No changes

#### Development build environment

 - No changes

#### Cerbero build tool and packaging changes in 1.24.4

 - [Add Fedora 40 support](https://gitlab.freedesktop.org/gstreamer/cerbero/-/merge_requests/1473)
 - [srt: bump version to 1.5.3](https://gitlab.freedesktop.org/gstreamer/cerbero/-/merge_requests/1473)
 - [pango: Fix leaks on Windows (textoverlay plugins)](https://gitlab.freedesktop.org/gstreamer/cerbero/-/merge_requests/1469)
 - [windows runtime installer has empty qt6 msm](https://gitlab.freedesktop.org/gstreamer/cerbero/-/issues/480)
 - [WiX: assorted fixes](https://gitlab.freedesktop.org/gstreamer/cerbero/-/merge_requests/1474)

#### Contributors to 1.24.4

Alexander Slobodeniuk, Bill Nottingham, Brad Reitmeyer, Chris Del Guercio,
Daniel Stone, Edward Hervey, Emil Pettersson, He Junyan, Jordan Petridis,
Joshua Breeden, L. E. Segovia, Martin Nordholts, Mathieu Duponchelle,
Matthew Waters, Nirbheek Chauhan, Philippe Normand, Piotr Brzeziński,
Rafael Carício, Robert Ayrapetyan, Robert Mader, Sebastian Dröge, Seungha Yang,
Shengqi Yu, Stéphane Cerveau, Tim-Philipp Müller,

... and many others who have contributed bug reports, translations, sent
suggestions or helped testing. Thank you all!

#### List of merge requests and issues fixed in 1.24.4

- [List of Merge Requests applied in 1.24.4](https://gitlab.freedesktop.org/groups/gstreamer/-/merge_requests?scope=all&utf8=%E2%9C%93&state=merged&milestone_title=1.24.4)
- [List of Issues fixed in 1.24.4](https://gitlab.freedesktop.org/groups/gstreamer/-/issues?scope=all&utf8=%E2%9C%93&state=closed&milestone_title=1.24.4)

<a id="1.24.5"></a>

### 1.24.5

The fifth 1.24 bug-fix release (1.24.5) was released on 20 June 2024.

This release only contains bugfixes and it *should* be safe to update
from 1.24.x.

#### Highlighted bugfixes in 1.24.5

 - webrtcsink: Support for AV1 via `nvav1enc`, `av1enc` or `rav1enc` encoders
 - AV1 RTP payloader/depayloader fixes to work correctly with Chrome and Pion WebRTC
 - av1parse, av1dec error handling/robustness improvements
 - av1enc: Handle force-keyunit events properly for WebRTC
 - decodebin3: selection and collection handling improvements
 - hlsdemux2: Various fixes for discontinuities, variant switching, playlist updates
 - qml6glsink: fix RGB format support
 - rtspsrc: more control URL handling fixes
 - v4l2src: Interpret V4L2 report of sync loss as video signal loss
 - d3d12 encoder, memory and videosink fixes
 - vtdec: more robust error handling, fix regression
 - ndi: support for NDI SDK v6
 - Various bug fixes, memory leak fixes, and other stability and reliability improvements

#### gstreamer

 - [promise: Don't use g_return_* for internal checks](https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/6998)
 - [debug: Add missing gst_debug_log_id_literal() dummy with `gst_debug=false`](https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/6979)
 - [ptp-helper: Add GNU/Hurd support](https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/6974)

#### gst-plugins-base

 - [uridecodebin3: Don't hold PLAY_ITEMS lock when activating them](https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/7020)
 - [decodebin3: Always ensure we end up with parsebin or identity](https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/7018)
 - [decodebin3: Properly support changing input collections](https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/7002)
 - [decodebin3: Avoid usage of parsebin even more](https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/6995)
 - [decodebin3: Fix dealing with input without caps](https://gitlab.freedesktop.org/gstreamer/gstreamer/-/issues/3609)
 - [video-info: Don't crash in gst_video_info_is_equal() if one videoinfo is zero-initialized](https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/7059)

#### gst-plugins-good

 - [flacparse: fix buffer overflow](https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/6960)
 - [hlsdemux2: Various fixes for discontinuities, variant switching, playlist updates](https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/6961)
 - [qml6glsink: fix RGB format support](https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/6997)
 - [rtpdtmfdepay: fix caps negotiation with audioconvert](https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/7048)
 - [rtpdtmfsrc: fix leak when shutting down mid-event](https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/7062)
 - [rtspsrc: fix invalid seqnum assertions](https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/7034)
 - [rtspsrc: Various control URL handling fixes](https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/6982)
 - [v4l2src: Interpret V4L2 report of sync loss as video signal loss](https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/7027)

#### gst-plugins-bad

 - [av1parse: Do not return error when expectedFrameId mismatch](https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/7052)
 - [av1dec: Don't treat decoding errors as fatal and print more error details](https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/7041)
 - [av1enc: Handle force-keyunit events properly by requesting keyframes](https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/7022)
 - [codectimestamper: never set DTS to NONE](https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/7033)
 - [d3d12encoder: Do not print error log for not-supported feature](https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/6963)
 - [d3d12memory: Fix staging buffer alignment](https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/6973)
 - [d3d12videosink: Disconnect window signal handler on dispose as intended](https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/7014)
 - [dtlssrtpenc: Don't crash if no pad name is provided when requesting a new pad](https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/6994)
 - [glcolorconvert: update existing sync meta if outbuf has one](https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/6962)
 - [pcapparse: Parsing code assumes unaligned memory accesses are OK](https://gitlab.freedesktop.org/gstreamer/gstreamer/-/issues/3602)
 - [pcapparse: Avoid unaligned memory access](https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/7037)
 - [tsdemux: Fix maximum PCR/DTS values](https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/7058)
 - [vtdec: Improve error handling in edge cases](https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/7044)
 - [vtdec, qtdemux: regression in 1.24.3 - internal data stream error](https://gitlab.freedesktop.org/gstreamer/gstreamer/-/issues/3603)
 - [uvcgadget: Use g_path_get_basename instead of libc basename](https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/7028)

#### gst-plugins-ugly

 - No changes

#### GStreamer Rust plugins

 - [gtk4: update flatpak integration code](https://gitlab.freedesktop.org/gstreamer/gst-plugins-rs/-/merge_requests/1626)
 - [ndi: Add support for loading NDI SDK v6](https://gitlab.freedesktop.org/gstreamer/gst-plugins-rs/-/merge_requests/1615)
 - [reqwesthttpsrc: Fix race condition when unlocking](https://gitlab.freedesktop.org/gstreamer/gst-plugins-rs/-/merge_requests/1617)
 - [rtp: Don't restrict payload types for payloaders](https://gitlab.freedesktop.org/gstreamer/gst-plugins-rs/-/merge_requests/1595)
 - [rtp: av1pay: Correctly use N flag for marking keyframes](https://gitlab.freedesktop.org/gstreamer/gst-plugins-rs/-/merge_requests/1628)
 - [rtp: av1depay: Parse internal size fields of OBUs and handle them](https://gitlab.freedesktop.org/gstreamer/gst-plugins-rs/-/merge_requests/1621)
 - [webrtcsink: Refactor value retrieval to avoid lock poisoning](https://gitlab.freedesktop.org/gstreamer/gst-plugins-rs/-/merge_requests/1598)
 - [webrtcsink: Add support for AV1](https://gitlab.freedesktop.org/gstreamer/gst-plugins-rs/-/merge_requests/1597)
 - [webrtc: Update to async-tungstenite 0.26](https://gitlab.freedesktop.org/gstreamer/gst-plugins-rs/-/merge_requests/1616)
 - [Fix various new clippy 1.79 warnings](https://gitlab.freedesktop.org/gstreamer/gst-plugins-rs/-/merge_requests/1627)
 - [meson: Fix various issues in dependency management, feature detection, some regressions, and add logging](https://gitlab.freedesktop.org/gstreamer/gst-plugins-rs/-/merge_requests/1614)

#### gst-libav

 - No changes

#### gst-rtsp-server

 - No changes

#### gstreamer-vaapi

 - No changes

#### gstreamer-sharp

 - No changes

#### gst-omx

 - No changes

#### gst-python

 - No changes

#### gst-editing-services

 - No changes

#### gst-devtools, gst-validate + gst-integration-testsuites

 - No changes

### gst-examples

 - No changes

#### Development build environment

 - No changes

#### Cerbero build tool and packaging changes in 1.24.5

 - No changes

#### Contributors to 1.24.5

Angelo Verlain, Chris Del Guercio, Corentin Damman, Edward Hervey,
Francisco Javier Velázquez-García, He Junyan, Jakub Adam, Jakub Vaněk,
Khem Raj, Martin Nordholts, Mathieu Duponchelle, Nirbheek Chauhan,
Piotr Brzeziński, Samuel Thibault, Sebastian Dröge, Sergey Krivohatskiy,
Seungha Yang, Tim-Philipp Müller, Zach van Rijn,

... and many others who have contributed bug reports, translations, sent
suggestions or helped testing. Thank you all!

#### List of merge requests and issues fixed in 1.24.5

- [List of Merge Requests applied in 1.24.5](https://gitlab.freedesktop.org/groups/gstreamer/-/merge_requests?scope=all&utf8=%E2%9C%93&state=merged&milestone_title=1.24.5)
- [List of Issues fixed in 1.24.5](https://gitlab.freedesktop.org/groups/gstreamer/-/issues?scope=all&utf8=%E2%9C%93&state=closed&milestone_title=1.24.5)

## Schedule for 1.26

Our next major feature release will be 1.26, and 1.25 will be the unstable
development version leading up to the stable 1.26 release. The development
of 1.25/1.25 will happen in the git `main` branch of the GStreamer mono
repository.

The schedule for 1.26 is yet to be decided.

1.26 will be backwards-compatible to the stable 1.24, 1.22, 1.20, 1.18, 1.16, 1.14, 1.12, 1.10, 1.8, 1.6, 1.4, 1.2 and 1.0 release series.

- - -

*These release notes have been prepared by Tim-Philipp Müller with contributions from Edward Hervey, Matthew Waters, Nicolas Dufresne, Nirbheek Chauhan, Olivier Crête, Sebastian Dröge, Seungha Yang, Thibault Saunier, and Víctor Manuel Jáquez Leal.*

*License: [CC BY-SA 4.0](http://creativecommons.org/licenses/by-sa/4.0/)*