Xavier Claessens
13eed32842
gst: Add _take and _steal to more mini objects
...
Those are simple wrappers around mini object API, similar to
what GstEvent does.
Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/9595 >
2025-08-26 19:23:55 +00:00
Sebastian Dröge
e8ab8eccae
baseparse: Try harder to fixate caps based on upstream in default negotiation
...
Upstream might provide a width/height while downstream has the field but accepts
a range. gst_caps_fixate() would select the minimum value of that range later
but it would be more accurate to take the upstream value, at least if it's a
subset of what downstream accepts.
Fixes https://gitlab.freedesktop.org/gstreamer/gstreamer/-/issues/4608
Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/9593 >
2025-08-24 10:32:02 +00:00
Sebastian Dröge
9f19e0e0a2
gst: Convert is_writable()
/ make_writable()
macros to inline functions
...
Plus actual functions that are exported from the library.
Apart from improving type-safety, this also makes bindings more happy.
Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/9588 >
2025-08-23 12:42:12 +00:00
Vivienne Watermeier
54d28569b2
baseparse: don't clear most sticky events after a FLUSH_STOP event
...
Clearing sticky events - besides EOS, STREAM_GROUP_DONE, and SEGMENT -
risks losing them if a flush occurs before we get another buffer.
Also adds a unit test: parser_sticky_events_after_flush
Fixes #4193
Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/9506 >
2025-08-21 11:00:36 +00:00
Thibault Saunier
3715b0b7b8
debugutils: Use SHOW_FULL_PARAMS when GstDotsTracer is active
...
When the dots tracer is detected among active tracers, switch from
SHOW_ALL to SHOW_FULL_PARAMS to prevent parameter ellipsization.
The dots tracer is designed to work with gst-dots-viewer which can
handle long parameter values, so we preserve the full text in dot files.
This improves the viewing experience when using the dots tracer with
the gst-dots-viewer tool.
Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/9547 >
2025-08-19 15:34:45 +00:00
Thibault Saunier
e87b3b0359
tracerutils: keep tracers that do not register to any hook alive as others
...
This checks if a tracer has registered to any hook after
initialization and automatically registers it to the "none" hook if not
so the lifetime of those tracer is the same as tracer who registers to hooks.
For example the `dots` tracer was being freed right after initialization
which was unexpected.
Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/9547 >
2025-08-19 15:34:45 +00:00
Havard Graff
162c4b0008
buffer: Fix gst_buffer_memcmp() / gst_buffer_memset() using wrong memory index
...
Regression from 160205b483dc7a1ae5da60d80a722837cf7c01d0.
Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/9565 >
2025-08-19 08:18:17 +00:00
Sebastian Dröge
58a48d92bb
value: Consider NULL caps in array a fixed value
...
There's no requirement for caps in arrays to be non-NULL and NULL is clearly a
fixed, single value.
Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/9522 >
2025-08-18 09:05:36 +00:00
Ruben Gonzalez
cb9f1f2b8d
gst-launch: clean unused local variable
...
Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/9551 >
2025-08-13 16:18:22 +02:00
Mathieu Duponchelle
75590bfeac
aggregator: implement start-time-selection=now
...
This is actually the only correct mode when live, let's at least expose
an option for it.
Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/9394 >
2025-08-13 14:13:22 +03:00
Sebastian Dröge
a052257c03
gstreamer: Make sure to zero-initialize the GValue before G_VALUE_COLLECT_INIT
...
G_VALUE_INIT does not zero-initialize the data member as automatic
zero-initialization only happens for non-union types. For union types the
initialized value is undefined.
Fixes https://gitlab.freedesktop.org/gstreamer/gstreamer/-/issues/4595
Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/9525 >
2025-08-11 08:39:53 +00:00
Sebastian Dröge
9d6cd03221
ptp: Fix a new Rust 1.89 compiler warning on Windows
...
Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/9527 >
2025-08-11 07:49:48 +00:00
Sebastian Dröge
99ad6972c2
gstreamer: Disable miniobject inline functions for gobject-introspection for non-subprojects too
...
Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/9518 >
2025-08-08 14:52:44 +00:00
Sebastian Dröge
8921c6504b
ptp: Fix new compiler warning with Rust 1.89
...
This still compiles with Rust 1.48 and newer.
Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/9512 >
2025-08-08 13:14:30 +03:00
Nirbheek Chauhan
3f1e8835b8
docs: Initialize the debug category in class_init when possible
...
Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/9496 >
2025-08-08 11:38:50 +05:30
Olivier Crête
0efbacf886
docs: Remove 0.11 plan
...
We're 10 years past.
Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/9476 >
2025-08-01 16:00:20 +00:00
Olivier Crête
f88e6781cd
AUTHORS: Remove outdated files
...
They only contained historical contributors, the modern version is
to look at the git logs.
Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/9476 >
2025-08-01 16:00:20 +00:00
Olivier Crête
668d54f8fb
MAINTAINERS: Update to reflect current maintainership
...
Instead of listing everyone, just point to GitLab
Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/9476 >
2025-08-01 16:00:20 +00:00
Nirbheek Chauhan
7788186a30
meson: Pass sysprof=disabled to glib
...
sysprof cannot be built on Windows, and this causes the build to fail
on Windows.
Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/9438 >
2025-07-30 00:21:18 +00:00
Nirbheek Chauhan
ba73cfd36e
gstreamer: Disable C5287 warning on MSVC
...
```
../subprojects/gstreamer/gst/gstpad.c(3866): warning C5287:
operands are different enum types 'GstQueryType' and 'GstQueryTypeFlags';
use an explicit cast to silence this warning
```
We abuse these enums, and MSVC emits a warning for this specific case:
https://learn.microsoft.com/en-us/cpp/error-messages/compiler-warnings/compiler-warnings-c5200-through-c5399
Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/9431 >
2025-07-26 00:06:37 +00:00
Daniel Morin
a97757d6a9
caps: fix nested caps
...
- Fixes #4534
- Fix gst_caps_is_fixed(), fix gst_caps_fixate () for caps-in-caps
Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/9378 >
2025-07-14 15:06:08 -04:00
Doug Nazar
160205b483
buffer: Find initial memory block without unnecessary mapping
...
Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/9354 >
2025-07-09 12:14:52 +00:00
Tim-Philipp Müller
24ee088cee
Back to development after 1.27.1
2025-07-08 20:00:07 +01:00
Tim-Philipp Müller
1fa56616fb
Release 1.27.1
2025-07-08 19:58:12 +01:00
Tim-Philipp Müller
529ddd0c5f
gstreamer: update translations
2025-07-08 19:55:11 +01:00
Doug Nazar
d155aeecb3
tracerutils: Fix a few memory leaks
...
Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/9151 >
2025-07-08 09:05:28 +00:00
Doug Nazar
88314f7706
netclientclock: Add deinitialize function for testing
...
Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/9115 >
2025-07-07 13:01:34 +00:00
Doug Nazar
50208d6064
netclientclock: test: add delay under valgrind to free clock from cache
...
Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/9115 >
2025-07-07 13:01:34 +00:00
Doug Nazar
c5b9e5dcd5
info: free dwarf cache during shutdown
...
Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/9115 >
2025-07-07 13:01:34 +00:00
Doug Nazar
fdbc6deb39
identity: unref clock after usage
...
Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/9115 >
2025-07-07 13:01:34 +00:00
Daniel Morin
d760457bd7
gstcaps: add test for caps
...
- if a subset contain identical element in superset it is still a subset it they
are note equal. e.g is_subset (<1, 1000>, <1, [1, 1000])
Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/9220 >
2025-07-02 06:46:59 +00:00
Daniel Morin
71bd3cbcd6
gstvalue: increase test coverage for _is_subset()
...
- Identify _is_subset () general/specials cases.
- Add multiple test cases for general cases.
- Add multiple test cases for unfixed value.
- Add mutliple test cases for fixed array value.
Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/9220 >
2025-07-02 06:46:59 +00:00
Daniel Morin
93241e4203
gstvalue: generalize gst_value_is_subset()
...
- Add case where we have element in subset that are equal to element in
superset. In this case subset is still a subset if at least one element is a
subset of the corresponding element in superset.
- clarify gst_value_is_subset inline documentation
- Add helper VALUE_TYPE_SINGLETON (type) to identify GType that represent a
value that is not a collection.
- Fixed issue in gst_value_is_subset_array_array (<1, 2, 3>, <0, 1, 4, 2, 3>)
would have returned TRUE because because the alignment of the subset could be
done multiple times. Now once alignment of set as been done once, everything
else in the superset need to be a subset of corresponding element without
interuption. is_subset (<1, 2, 3>, <0, 1, 2, 3>) => TRUE, but is_subset (<1,
2, 3>, <0, 1, 4, 2, 3>) => FALSE.
- If both array are fixed value and we perform a is_subset on them, both value
can't be equal to be considered subset. (For consistency with other fixed
values)
- Define gst_value_subtract (singleton, array) and
gst_value_subtract (array, singleton), to allow a gst_value_is_subset
(singleton, array) and gst_value_is_subset (array, singleton). General
case of gst_value_is_subset (v1, v2) use gst_value_subtract (v1, v2) and
gst_value_subtract (v2, v1) to evaluate _is_subset(), therefore we need these
for is_subset() operation that involve singleton and array.
Note gst_value_subtract (array, array) is not implemented but this case is not
require by gst_value_is_subset () and as it has a direct handling. Warned if
the case is used.
Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/9220 >
2025-07-02 06:46:59 +00:00
Mathieu Duponchelle
39a7e0066c
aggregator: add sub_latency_min to pad queue size
...
It should be possible for a subclass to let data accumulate on any of its input
pads for as long as it has introduced latency.
Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/9320 >
2025-07-02 06:11:27 +00:00
Doug Nazar
6ddb5b4ad9
selector: tests: Fix initialization of segment
...
If GST_DEBUG is enabled and it dumps the segment, valgrind will warn about
uninitialized memory.
Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/9273 >
2025-06-30 12:19:19 +00:00
Doug Nazar
b06c9090a7
gstinfo: tests: Ensure that the target msg is one of the ones seen
...
If GST_DEBUG is enabled we will get multiple log messages. Signal
success if one of messages is correct.
Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/9273 >
2025-06-30 12:19:19 +00:00
Doug Nazar
4c7b2fe4cc
memory: tests: Fix test to ensure all logs are less severe than WARN
...
If GST_DEBUG is enabled the existing test will fail as it gets INFO
log messages.
Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/9273 >
2025-06-30 12:19:19 +00:00
Doug Nazar
aa71fbd4ae
transform: test: TestTransData is not an object
...
Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/9273 >
2025-06-30 12:19:19 +00:00
David Maseda Neira
73d57329e8
gst-inspect-1.0: Added type info for caps fields
...
gst-inspect-1.0 now shows the expected GType for each field of the
capabilities on a pad.
Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/9270 >
2025-06-27 07:00:22 +00:00
Sebastian Dröge
d236538d28
gstutils: Mark times array as static to avoid symbol conflict with the POSIX function
...
It works fine but there can be linker warnings, e.g. with mold.
Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/9288 >
2025-06-26 09:22:14 +00:00
Sebastian Dröge
4bd4c4d4f7
buffer: Add optional info structure to GstReferenceTimestampMeta
...
This allows carrying additional per-timestamp information if needed.
Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/9245 >
2025-06-24 08:00:14 +00:00
Sebastian Dröge
f40726597e
pad: Only remove TAG events on STREAM_START if the stream-id actually changes
...
Missing part from 88a36b53c5064d186acb317b0b72633ef5d886e3
See also https://gitlab.freedesktop.org/gstreamer/gstreamer/-/issues/4097
Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/9268 >
2025-06-23 13:11:18 +00:00
Doug Nazar
86795f6414
baseparse: test: Fix race on test start
...
It's possible that the sink pad is still flushing when the first buffer
is processed causing the test to timeout when we activate the sink after
starting the pipeline.
Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/9256 >
2025-06-19 16:26:30 +00:00
Alicia Boya García
371100c743
tracers: Fix deadlock in latency tracer
...
Fixes https://gitlab.freedesktop.org/gstreamer/gstreamer/-/issues/4317
This patch fixes a regression in
a35bf1e3847351703542869755b6b9e536b9d2fd.
The new calls to tracers in the affected change were being done while
holding the pad object lock, which wasn't the case in the old ones,
leading to the latency tracer deadlocking in gst_object_get_parent().
The dependency on the pad lock for those calls was accidental. This
patch removes it by temporarily unlocking during the affected calls,
not unlike how it's done when calling a probe callback or the
send_event() function of the downstream element.
Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/8925 >
2025-06-19 09:12:14 +00:00
Daniel Morin
b44f19ccbc
value: fix subset between arrays
...
- Adding gst_value_is_subset_array_array to test if an array is a subset of
another array.
- Check gst_caps_is_subset() between containing arrays work.
Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/9184 >
2025-06-10 19:22:34 +00:00
Daniel Morin
848d55b96a
gststructure: add gst_structure_get_caps
...
- Get field of type #GstCaps from #GstStructure
Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/9184 >
2025-06-10 19:22:34 +00:00
Víctor Manuel Jáquez Leal
82a71a7739
gstreamer-vaapi: remove subproject
...
It's almost superseded by va plugin in gst-plugins-bad.
Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/9200 >
2025-06-10 17:32:46 +00:00
James Cowgill
39a6ecf56a
vecdeque: Use correct index type in gst_vec_deque_drop_struct
...
Fixes some `-Wsign-compare` warnings. These two indices should be
`gsize` like the other variables in this function.
Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/9171 >
2025-06-05 11:53:16 +00:00
Thibault Saunier
0b12b883c9
gstinfo: Add missing log context stub functions when debugging disabled
...
When GST_DISABLE_GST_DEBUG is defined, the log context functions were
missing their stub implementations, causing link errors. Add the missing
stub functions to the disabled debug section.
Also add (nullable) annotation to gst_log_context_get_category since
it can return NULL when debugging is disabled.
Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/9122 >
2025-06-04 13:47:04 +02:00
Thibault Saunier
a0ec9a4eea
dots: Do not WARN when a file can't be removed
...
Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/9122 >
2025-06-04 10:42:55 +02:00