platform/upstream/gstreamer.git
3 months agosubparse: Check for NULL return of strchr() when parsing LRC subtitles
Sebastian Dröge [Wed, 9 Oct 2024 15:23:47 +0000 (11:23 -0400)]
subparse: Check for NULL return of strchr() when parsing LRC subtitles

Thanks to Antonio Morales for finding and reporting the issue.

Fixes GHSL-2024-263
Fixes https://gitlab.freedesktop.org/gstreamer/gstreamer/-/issues/3892

Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/8051>

4 months agoopusdec: Set at most 64 channels to NONE position
Sebastian Dröge [Tue, 1 Oct 2024 10:22:50 +0000 (13:22 +0300)]
opusdec: Set at most 64 channels to NONE position

Thanks to Antonio Morales for finding and reporting the issue.

Fixes GHSL-2024-116
Fixes https://gitlab.freedesktop.org/gstreamer/gstreamer/-/issues/3871

Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/8049>

4 months agossaparse: Don't use strstr() on strings that are potentially not NULL-terminated
Sebastian Dröge [Mon, 30 Sep 2024 15:36:19 +0000 (18:36 +0300)]
ssaparse: Don't use strstr() on strings that are potentially not NULL-terminated

Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/8048>

4 months agossaparse: Search for closing brace after opening brace
Sebastian Dröge [Mon, 30 Sep 2024 18:40:44 +0000 (21:40 +0300)]
ssaparse: Search for closing brace after opening brace

Otherwise removing anything between the braces leads to out of bound writes if
there is a closing brace before the first opening brace.

Thanks to Antonio Morales for finding and reporting the issue.

Fixes GHSL-2024-228
Fixes https://gitlab.freedesktop.org/gstreamer/gstreamer/-/issues/3870

Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/8048>

4 months agovorbisdec: Set at most 64 channels to NONE position
Sebastian Dröge [Mon, 30 Sep 2024 18:35:07 +0000 (21:35 +0300)]
vorbisdec: Set at most 64 channels to NONE position

Thanks to Antonio Morales for finding and reporting the issue.

Fixes GHSL-2024-115
Fixes https://gitlab.freedesktop.org/gstreamer/gstreamer/-/issues/3869

Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/8047>

4 months agoid3v2: Don't try parsing extended header if not enough data is available
Sebastian Dröge [Thu, 26 Sep 2024 10:43:06 +0000 (13:43 +0300)]
id3v2: Don't try parsing extended header if not enough data is available

Thanks to Antonio Morales for finding and reporting the issue.

Fixes GHSL-2024-235
Fixes https://gitlab.freedesktop.org/gstreamer/gstreamer/-/issues/3842

Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/8045>

4 months agoqtdemux: Avoid integer overflow when parsing Theora extension
Sebastian Dröge [Thu, 26 Sep 2024 19:16:06 +0000 (22:16 +0300)]
qtdemux: Avoid integer overflow when parsing Theora extension

Thanks to Antonio Morales for finding and reporting the issue.

Fixes GHSL-2024-166
Fixes https://gitlab.freedesktop.org/gstreamer/gstreamer/-/issues/3851

Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/8044>

4 months agoallocator: Avoid integer overflow when allocating sysmem
Sebastian Dröge [Thu, 26 Sep 2024 19:07:22 +0000 (22:07 +0300)]
allocator: Avoid integer overflow when allocating sysmem

Thanks to Antonio Morales for finding and reporting the issue.

Fixes GHSL-2024-166
Fixes https://gitlab.freedesktop.org/gstreamer/gstreamer/-/issues/3851

Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/8044>

4 months agolevel: Fix integer overflow when filling LevelMeta
Nicolas Dufresne [Fri, 29 Nov 2024 18:41:54 +0000 (13:41 -0500)]
level: Fix integer overflow when filling LevelMeta

The level in GstAudioLevelMeta is represented as a signed 8bit value from 0 to
127 (with 127 meaning silence). When converting from double, make sure to clip
the value, this also prevent integer overflow in the conversion. This fixes an
issue where a lower then -127db is reported and random level with near silent
streams (due to integer overflow).

Fixes #4068

Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/8029>

4 months agokmssink: Add mediatek auto-detection
Pablo Sun [Mon, 2 Dec 2024 11:34:14 +0000 (19:34 +0800)]
kmssink: Add mediatek auto-detection

Add MediaTek display controller into list of
auto-detected modules.

Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/8027>

4 months agortp: Fix precision loss in gst_rtcp_ntp_to_unix()
Philippe Normand [Fri, 29 Nov 2024 17:33:29 +0000 (17:33 +0000)]
rtp: Fix precision loss in gst_rtcp_ntp_to_unix()

Without this patch the UNIX timestamp resulting from the translation from NTP
would be off by one nano-second.

Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/8022>

4 months agosystemclock: Don't keep the clock entry locked while getting the time from the clock
Sebastian Dröge [Thu, 28 Nov 2024 14:06:17 +0000 (16:06 +0200)]
systemclock: Don't keep the clock entry locked while getting the time from the clock

gst_clock_get_time() will take the clock mutex, which would then result in a lock
order violation and possible deadlocks. If both mutexes are to be locked, the
clock must always be locked first.

Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/8019>

4 months agosystemclock: Get rid of conditional unlocking of the clock entries
Sebastian Dröge [Thu, 28 Nov 2024 13:49:24 +0000 (15:49 +0200)]
systemclock: Get rid of conditional unlocking of the clock entries

At every point it is known whether the entry needs to be unlocked or not.

Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/8019>

4 months agosystemclock: Remove confusing conditional unlock
Sebastian Dröge [Thu, 28 Nov 2024 13:43:08 +0000 (15:43 +0200)]
systemclock: Remove confusing conditional unlock

At this point the entry is always locked and needs to be unlocked.

Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/8019>

4 months agosystemclock: Use a flag while waiting for the async thread to start
Sebastian Dröge [Thu, 28 Nov 2024 13:25:47 +0000 (15:25 +0200)]
systemclock: Use a flag while waiting for the async thread to start

Otherwise there can be spurious wakeups.

Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/8019>

4 months agomxfmux: Fix off-by-one in the month when generating a timestamp for now
Sebastian Dröge [Sun, 1 Dec 2024 09:45:34 +0000 (11:45 +0200)]
mxfmux: Fix off-by-one in the month when generating a timestamp for now

Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/8018>

4 months agoshout2send: Unref event at the end of the event function
Sebastian Dröge [Thu, 28 Nov 2024 10:56:33 +0000 (12:56 +0200)]
shout2send: Unref event at the end of the event function

The function takes ownership of it and should get rid of it at the end.

Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/8006>

4 months agortspsrc: Optionally timestamp RTP packets with their receive times in TCP/HTTP mode
Sebastian Dröge [Wed, 3 Apr 2024 12:01:52 +0000 (15:01 +0300)]
rtspsrc: Optionally timestamp RTP packets with their receive times in TCP/HTTP mode

Until https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/6509
this was accidentally done inside rtpjitterbuffer for many years, and
doing so potentially solves problems on some streams while introducing
problems on others.

Make this configurable on rtspsrc and default to not set timestamps.

Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/8004>

4 months agopad: Never push sticky events in response to a FLUSH_STOP
Alicia Boya García [Wed, 9 Oct 2024 17:35:33 +0000 (13:35 -0400)]
pad: Never push sticky events in response to a FLUSH_STOP

FLUSH_STOP is meant to clear the flushing state of pads and elements
downstream, not to process data. Hence, a FLUSH_STOP should not
propagate sticky events. This is also consistent with how flushes are a
special case for probes.

Currently this is almost always the case, since a FLUSH_STOP is
__usually__ preceded by a FLUSH_START, and events (sticky or not) are
discarded while a pad has the FLUSHING flag active (set by FLUSH_START).

However, it is currently assumed that a FLUSH_STOP not preceded by a
FLUSH_START is correct behavior, and this will occur while autoplugging
pipelines are constructed. This leaves us with an unhandled edge case!

This patch explicitly disables sending sticky events when pushing a
FLUSH_STOP, instead of relying on the flushing flag of the pad, which
will break in the edge case of a FLUSH_STOP not preceded by a
FLUSH_START.

If sticky events are propagated in response to a FLUSH_STOP, the
flushing thread can end up deadlocked in blocking code of a downstream
pad, such as a blocking probe. Instead, those events should be
propagated from the streaming thread of the pad when handling a
non-flushing synchronized event or buffer.

This fixes a deadlock found in WebKit with playbin3 when seeks occur
before preroll, where the seeking thread ended up stuck in the blocking
probe of playsink:
https://github.com/WebPlatformForEmbedded/WPEWebKit/issues/1367

Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/8003>

4 months agogstreamer: prefix debug dot node names to prevent splitting
wbartel [Wed, 27 Nov 2024 10:19:02 +0000 (11:19 +0100)]
gstreamer: prefix debug dot node names to prevent splitting

Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/7998>

4 months agostreamsynchronizer: Only send GAP events out of source pads
Sebastian Dröge [Mon, 25 Nov 2024 10:27:03 +0000 (12:27 +0200)]
streamsynchronizer: Only send GAP events out of source pads

If streamsynchronizer is waiting on the stream's sinkpad and srcpad at the same
time, it can happen that the GAP event is otherwise sent out of the sinkpad,
which is in the wrong direction.

Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/7997>

4 months agoci: docker: use cargo install --locked for cargo-c installation
Tim-Philipp Müller [Wed, 27 Nov 2024 19:39:53 +0000 (19:39 +0000)]
ci: docker: use cargo install --locked for cargo-c installation

Backported from commit 2263caff

Should fix the following error on image regeneration:

  package `cargo-util v0.2.15` cannot be built because it requires rustc 1.80
  or newer, while the currently active rustc version is 1.76.0

Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/7989>

4 months agoFix build error due to upgrade to ffmpeg 7.1 36/321036/2 accepted/tizen/unified/20241202.132936 accepted/tizen/unified/x/20241218.032649 accepted/tizen/unified/x/asan/20241224.004417
hjkim [Wed, 27 Nov 2024 01:18:33 +0000 (10:18 +0900)]
Fix build error due to upgrade to ffmpeg 7.1

All patches are from gst-libav-1.24.9

Change-Id: I02fdb4e79ad3a5a47948a67f1164a763dcc41b42

4 months agodiscoverer: Also copy missing element details when copying a GstDiscovererInfo
Sebastian Dröge [Tue, 26 Nov 2024 13:20:45 +0000 (15:20 +0200)]
discoverer: Also copy missing element details when copying a GstDiscovererInfo

Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/7986>

4 months agodiscoverer: Make sure the missing elements details array is NULL-terminated in a...
Sebastian Dröge [Tue, 26 Nov 2024 13:41:24 +0000 (15:41 +0200)]
discoverer: Make sure the missing elements details array is NULL-terminated in a thread-safe way

And also avoid a possible out-of-bounds read if the array contains no elements.

Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/7986>

4 months agodiscoverer: Fix typos
Thibault Saunier [Mon, 28 Oct 2024 15:38:39 +0000 (12:38 -0300)]
discoverer: Fix typos

discovererd / discoverered -> discovered

Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/7986>

4 months agov4l2videodec: fix freeze race condition
Jonas Rebmann [Wed, 27 Nov 2024 11:16:37 +0000 (12:16 +0100)]
v4l2videodec: fix freeze race condition

This fixes a possible deadlock between gst_v4l2_video_dec_change_state
and gst_v4l2_video_dec_loop on the buffer pool.

When stopping capture, the flushing state of the v4l2 capture buffer
pool gets reverted in the processing loop after it was set via
gst_v4l2_object_unlock (self->v4l2capture) (in
gst_v4l2_video_dec_change_state). As a result, gst_v4l2_video_dec_loop
does not return and consequently, gst_pad_stop_task gets stuck waiting
for the GST_PAD_STREAM_LOCK. To circumvent this, skip acquiring the
buffer pool if stopping capture.

Suggested-by: Nicolas Dufresne <nicolas.dufresne@collabora.com>
Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/7987>

4 months agox265: Allow building with x265-4.1
Xi Ruoyao [Tue, 26 Nov 2024 13:34:25 +0000 (21:34 +0800)]
x265: Allow building with x265-4.1

In x265-4.1 masteringDisplayColorVolume is changed from a pointer to a
character array embedded in struct x265_param.

Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/7983>

4 months agomeson: Don't unconditionally invoke the libsoup subproject
Nirbheek Chauhan [Tue, 26 Nov 2024 11:22:05 +0000 (16:52 +0530)]
meson: Don't unconditionally invoke the libsoup subproject

fallback: kwarg will invoke the specified subproject even if required:
false, which is not what we want here.

Reported at https://gitlab.freedesktop.org/gstreamer/gstreamer/-/issues/4045#note_2674340

Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/7982>

4 months agowebrtc: don't crash on invalid bundle id
Albert Sjolund [Tue, 26 Nov 2024 08:23:51 +0000 (09:23 +0100)]
webrtc: don't crash on invalid bundle id

If the bundle id forwarded to connect_rtpfunnel is not valid,
the assertion fails and crashes the program. This is now instead
an error.

Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/7966>

4 months agoappsink: fix timeout logic for gst_app_sink_try_pull_sample
Tomáš Polomský [Tue, 26 Nov 2024 05:40:34 +0000 (06:40 +0100)]
appsink: fix timeout logic for gst_app_sink_try_pull_sample

In case of gst_app_sink_try_pull_object returns an object instead of a sample,
the whole process must be restarted with the reduced timeout, otherwise requested
timeout could be easily exceeded.

Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/7980>

4 months agoqt(6)/material: ensure that we always update the context in setBuffer()
Matthew Waters [Fri, 22 Nov 2024 07:59:53 +0000 (18:59 +1100)]
qt(6)/material: ensure that we always update the context in setBuffer()

Scenario is that there are two (or more) GstGLContext's wrapping Qt's GL
context from either multiple qml(6)glsink or qml(6)glsrc elements.  Call flow is this:

1. material 1 setBuffer()
2. material 1 bind()
3. material 2 setBuffer()
4. material 2 bind()

If the call to setBuffer() reuses the same buffer as previous call, then the
qt context is not updated in the material.  If however the previously used qt
context by the material had been deactivated or freed, then bind() would fail
and could result in a critical like so:

gst_gl_context_thread_add: assertion 'context->priv->active_thread == g_thread_self ()' failed

Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/7978>

4 months agoccutils: Fix a typo in cc_buffer_take_cea608_field2
Jan Alexander Steffens (heftig) [Tue, 19 Nov 2024 16:21:16 +0000 (17:21 +0100)]
ccutils: Fix a typo in cc_buffer_take_cea608_field2

There are no users of cc_buffer_take_cea608_field2, so this never was a
problem.

Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/7973>

4 months agoccutils: Fix a typo in max_buffer_time handling
Jan Alexander Steffens (heftig) [Tue, 19 Nov 2024 15:42:11 +0000 (16:42 +0100)]
ccutils: Fix a typo in max_buffer_time handling

All users set max_buffer_time to GST_CLOCK_TIME_NONE, effectively
infinite, so this never was a problem.

Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/7973>

4 months agoccutils: Remove broken branch
Jan Alexander Steffens (heftig) [Tue, 19 Nov 2024 12:47:55 +0000 (13:47 +0100)]
ccutils: Remove broken branch

This branch was added in dd00dab5e9e8650f3f00660c2e611f81f1e8cd5b but is
never actually taken, as it requires `cc_data` to be null but
`cc_data_len` to be non-null. It would then dereference the null
`cc_data`.

Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/7973>

4 months agov4l2object: Fixed incorrect maximum value for int range
Tomáš Polomský [Mon, 25 Nov 2024 14:47:22 +0000 (15:47 +0100)]
v4l2object: Fixed incorrect maximum value for int range

There are objects where maximum is not multiplication of the step,
e.g. there was a combination where max was 65535 with step 2.

Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/7961>

4 months agotracers: unlock leaks tracer if already tracking
wbartel [Mon, 25 Nov 2024 15:28:51 +0000 (16:28 +0100)]
tracers: unlock leaks tracer if already tracking

Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/7960>

4 months agosplitmuxsrc: Convert part reader to a bin with a non-async bus
Sebastian Dröge [Mon, 25 Nov 2024 12:25:52 +0000 (14:25 +0200)]
splitmuxsrc: Convert part reader to a bin with a non-async bus

A pipeline always has an async bus, which involves allocating an fd pair. As
splitmuxsrc only uses the bus' sync handler, this is not required and can easily
cause splitmuxsrc to exceed the fd limit for no good reason.

The other features of GstPipeline are also not needed here, e.g. clock selection.

Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/7957>

4 months agodecodebin3: Unify collection switching checks
Edward Hervey [Fri, 22 Nov 2024 10:50:05 +0000 (11:50 +0100)]
decodebin3: Unify collection switching checks

We only want to switch to a selection of an output collection if all streams are
present.

This was previously only done in one place (when triggering by new incoming
streams) but not when triggered by user/application.

Avoid this by moving the check to handle_stream_switch()

Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/7956>

4 months agomeson: Fix libva.wrap meson build
Seungmin Kim [Wed, 12 Jun 2024 15:09:20 +0000 (15:09 +0000)]
meson: Fix libva.wrap meson build

Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/7955>

4 months agodiscoverer: fix segfault in race condition adding a new uri's
Andoni Morales Alastruey [Wed, 20 Nov 2024 12:32:20 +0000 (13:32 +0100)]
discoverer: fix segfault in race condition adding a new uri's

There is a race condition adding new uri's right after receiving
the `discovered` event. We must wait until we have cleaned-up
the last discovery to start processing the new one

Fix #3758

Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/7934>

4 months agomeson: Don't use libdrm_dep in cc.has_header()
Nirbheek Chauhan [Tue, 19 Nov 2024 22:53:32 +0000 (04:23 +0530)]
meson: Don't use libdrm_dep in cc.has_header()

It can't handle subproject dependencies. Pointed out in
https://gitlab.freedesktop.org/gstreamer/gstreamer/-/issues/4033#note_2665974

Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/7932>

4 months agosdp: Add debug categories for message and mikey modules
Philippe Normand [Thu, 10 Oct 2024 19:51:36 +0000 (15:51 -0400)]
sdp: Add debug categories for message and mikey modules

Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/7926>

4 months agolibav: avviddec: log the old resolution when updating the pool
Guillaume Desmottes [Mon, 18 Nov 2024 14:09:43 +0000 (15:09 +0100)]
libav: avviddec: log the old resolution when updating the pool

Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/7925>

4 months agolibav: viddec: provide details if meta has the wrong resolution
Guillaume Desmottes [Fri, 15 Nov 2024 10:34:07 +0000 (11:34 +0100)]
libav: viddec: provide details if meta has the wrong resolution

Will produce a more useful assert error message.

Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/7925>

4 months agoRevert "avviddec: Unlock video decoder stream lock temporarily while finishing frames"
Guillaume Desmottes [Tue, 19 Nov 2024 10:54:12 +0000 (11:54 +0100)]
Revert "avviddec: Unlock video decoder stream lock temporarily while finishing frames"

This reverts commit 6b18f0233900ae4ecdbcde0ce76ab55fd85286f4.

This commit introduced a regression, see
https://gitlab.freedesktop.org/gstreamer/gstreamer/-/issues/4032

Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/7921>

4 months agojpegparse: Change plugin rank GST_RANK_NONE to GST_RANK_SECONDARY 84/320584/4 accepted/tizen/unified/20241121.162155
Gilbok Lee [Tue, 19 Nov 2024 03:34:52 +0000 (12:34 +0900)]
jpegparse: Change plugin rank GST_RANK_NONE to GST_RANK_SECONDARY

- In order to use v4l2jpegdec, plugin need a parsed:true caps.
  During autoplugin, it is GST_RANK_NONE, so parsebin can't find
  jpegparse and therefore can't use v4l2jpegdec
- Increase the rank of the jpegparse plugin to use v4l2jpegdec

Change-Id: Icd89c177836580d91d0b730e31731cc8b383c23a

4 months agogstdeviceprovider: fix leaking hidden providers
Robert Rosengren [Mon, 18 Nov 2024 07:47:12 +0000 (08:47 +0100)]
gstdeviceprovider: fix leaking hidden providers

Free list of hidden providers upon stop and dispose.

Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/7915>

4 months agortpmanager: don't map READWRITE in twcc header ext
Albert Sjolund [Fri, 15 Nov 2024 10:44:17 +0000 (11:44 +0100)]
rtpmanager: don't map READWRITE in twcc header ext

There is no need to map the buffer as writable, as there is
only a read performed on the mapped buffer. This is in line
with other header extensions, as no other extensions maps
it as readwrite.

Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/7910>

4 months agoplaybackutils: Fix caps leak in get_n_common_capsfeatures()
Philippe Normand [Sat, 16 Nov 2024 18:24:23 +0000 (18:24 +0000)]
playbackutils: Fix caps leak in get_n_common_capsfeatures()

The gst_static_caps_get() return value is transfer-full.

Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/7909>

4 months agoglupload: Upgrade uploader selection message to INFO
Nicolas Dufresne [Thu, 14 Nov 2024 20:15:43 +0000 (15:15 -0500)]
glupload: Upgrade uploader selection message to INFO

This allow using INFO log to quickly see what uploader we
picked. This is very useful as the DEBUG category has became
very noisy.

Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/7907>

4 months agoglupload: dmabuf: Fix emulated tiled import
Nicolas Dufresne [Thu, 14 Nov 2024 20:13:50 +0000 (15:13 -0500)]
glupload: dmabuf: Fix emulated tiled import

The added check for LINEAR modifier broke dmabuf import for
NV12 emulation (R8/RG88) of all sort (linear and tiled).

Fixes !5461

Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/7907>

4 months agoaudiostreamalign: Don't report disconts for every buffer if alignment-threshold is...
Sebastian Dröge [Thu, 14 Nov 2024 13:58:58 +0000 (15:58 +0200)]
audiostreamalign: Don't report disconts for every buffer if alignment-threshold is too small

If it is too small, the maximum allowed diff becomes 0 samples which would then
trigger if there is no discontinuity at all.

Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/7906>

4 months agompegtsmux: Mux timestampless buffers immediately
Jan Alexander Steffens (heftig) [Thu, 1 Jul 2021 11:09:04 +0000 (13:09 +0200)]
mpegtsmux: Mux timestampless buffers immediately

Instead of leaving them queued indefinitely, or until we're timing out
and it's the only buffer queued.

Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/7901>

4 months agompegtsmux: Don't time out in live mode if no timestamped next buffer is available
Sebastian Dröge [Tue, 12 Nov 2024 09:01:03 +0000 (11:01 +0200)]
mpegtsmux: Don't time out in live mode if no timestamped next buffer is available

The muxer can only advance the time if it has a timestamped buffer that can be
output, otherwise it will just busy-wait and use up a lot of CPU.

Fixes https://gitlab.freedesktop.org/gstreamer/gstreamer/-/issues/3912

Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/7901>

4 months agoflvmux: Mux timestampless buffers immediately
Jan Alexander Steffens (heftig) [Mon, 21 Sep 2020 14:48:38 +0000 (16:48 +0200)]
flvmux: Mux timestampless buffers immediately

Instead of leaving them queued indefinitely, or until we're timing out
and it's the only buffer queued.

Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/7902>

4 months agoflvmux: Don't time out in live mode if no timestamped next buffer is available
Sebastian Dröge [Tue, 12 Nov 2024 09:25:38 +0000 (11:25 +0200)]
flvmux: Don't time out in live mode if no timestamped next buffer is available

But also don't wait for a buffer on both pads, which might take forever in case
of gaps in one of the streams.

The muxer can only advance the time if it has a timestamped buffer that can be
output, otherwise it will just busy-wait and use up a lot of CPU.

Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/7902>

4 months agoudpsrc: protect cancellable from unlock/unlock_stop race
Robert Rosengren [Wed, 13 Nov 2024 14:49:57 +0000 (15:49 +0100)]
udpsrc: protect cancellable from unlock/unlock_stop race

Protect cancellable from simultaneous unlock and unlock_stop calls from
basesrc class.

Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/7897>

4 months agoci: Don't use a massive image for the cerbero trigger
Edward Hervey [Fri, 15 Nov 2024 08:16:56 +0000 (09:16 +0100)]
ci: Don't use a massive image for the cerbero trigger

Fixes https://gitlab.freedesktop.org/gstreamer/gstreamer/-/issues/4024

Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/7896>

4 months agompegvideoparse: do not set delta unit flag on unknown frame type
Théo Maillart [Tue, 5 Nov 2024 13:34:03 +0000 (14:34 +0100)]
mpegvideoparse: do not set delta unit flag on unknown frame type

When encoding an image to mpeg2 video, with something like:
  gst-launch-1.0 encodebin name=e profile=mpegpsmux:video/mpeg,mpegversion=2,systemstream=false ! \
                 filesink location=sample.mpg filesrc num-buffers=1 blocksize=$(stat -c%s sample.png) \
                 location=sample/dts.png ! pngdec ! e.
The only frame's type is set to an invalid value 0
The consequence is that mpegvideoparse sets the delta unit flag on the buffer because
it is not an I frame, then decodebin3 drops this only frame because the delta
unit flag is set and the decoder receives eos before it was able to receive any
encoded data

Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/7876>

4 months agoptp: use ip_mreq instead of ip_mreqn for macOS
Taruntej Kanakamalla [Thu, 7 Nov 2024 10:14:25 +0000 (15:44 +0530)]
ptp: use ip_mreq instead of ip_mreqn for macOS

To join a multicast the macOS still uses the interface address
from the ip_mreq instead of the ip_mreqn unlike other Linux systems.

So add a new conditional block for macOS to use ip_mreq for IP_ADD_MEMBERSHIP
and ip_mreqn for IP_MULTICAST_IF

This is similar to the fix in the glib for multicast join/leave
operation on macOS
https://gitlab.gnome.org/GNOME/glib/-/merge_requests/4333

Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/7864>

4 months agoccconverter: Don't override in_fps_entry when trying to take output
Sebastian Dröge [Tue, 17 Sep 2024 08:47:47 +0000 (11:47 +0300)]
ccconverter: Don't override in_fps_entry when trying to take output

This allows to handle CDP streams where the framerate is not provided by the
caps and generally gives preference to the framerate inside the CDP packets over
the one in the caps.

Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/7862>

4 months agourisourcebin: Also use event probe for HLS use-cases
Edward Hervey [Mon, 4 Nov 2024 08:21:44 +0000 (09:21 +0100)]
urisourcebin: Also use event probe for HLS use-cases

Fixes https://gitlab.freedesktop.org/gstreamer/gstreamer/-/issues/3957

Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/7857>

4 months agotimecodestamper: Don't fail the latency query in LTC mode if we have no framerate
Sebastian Dröge [Tue, 5 Nov 2024 12:23:05 +0000 (14:23 +0200)]
timecodestamper: Don't fail the latency query in LTC mode if we have no framerate

Only in LTC mode we introduce additional latency that is depending on only on a
property and not on the framerate, so waiting for the framerate is not necessary.

In all other modes no latency is introduced at all and the latency query can
simply be proxied.

Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/7846>

4 months agov4l2object: Remove little endian marker on 8 bit bayer format names
Stefan Riedmüller [Mon, 4 Nov 2024 09:49:25 +0000 (10:49 +0100)]
v4l2object: Remove little endian marker on 8 bit bayer format names

There is no point in having an endian marker on 8 bit bayer format names since
it is just one byte. Thus remove it.

This also fixes an incompatibility with plugins bad where there is no endian
marker on 8 bit bayer format names as well.

Fixes: #3729
Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/7845>

4 months agovideo-converter: Set TIME segment format on appsrc
Jan Schmidt [Wed, 6 Nov 2024 07:51:21 +0000 (18:51 +1100)]
video-converter: Set TIME segment format on appsrc

Combine the appsrc and appsink settings into one place and ensure that
the appsrc will output a TIME segment, to avoid incorrect segment format
criticals in some situations.

The D3D11 path was already setting the segment format correctly.

Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/7842>

4 months agortpfunnel: Ensure segment events are forwarded after flushs
Philippe Normand [Tue, 5 Nov 2024 11:49:32 +0000 (11:49 +0000)]
rtpfunnel: Ensure segment events are forwarded after flushs

gst_rtp_funnel_forward_segment() returns early when the current_pad is set.
Without clearing current_pad a critical warning would be emitted when
attempting to chain a buffer following a flush.

Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/7835>

4 months agoavcodecmap: Use avcodec_get_supported_config() instead of struct fields
Sebastian Dröge [Mon, 4 Nov 2024 09:22:37 +0000 (11:22 +0200)]
avcodecmap: Use avcodec_get_supported_config() instead of struct fields

The struct fields are deprecated.

Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/7833>

4 months agococoa: fix rendering artefacts in retina displays
Andoni Morales Alastruey [Mon, 4 Nov 2024 23:01:56 +0000 (00:01 +0100)]
cocoa: fix rendering artefacts in retina displays

Set the correct contentsScale in the CALayer instead of using
the default (1.0) which causes rendering artefacts in retina
displays due to using a smaller bitamp than the display size.

See: https://developer.apple.com/documentation/quartzcore/calayer/1410746-contentsscale?language=objc

Fix: #3942
Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/7834>

4 months agoci: handle changing wrap file refs
Matthew Waters [Mon, 4 Nov 2024 04:52:11 +0000 (15:52 +1100)]
ci: handle changing wrap file refs

Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/7809>

4 months agoci: update macos CI to 15 Sequoia
Matthew Waters [Tue, 29 Oct 2024 07:46:05 +0000 (18:46 +1100)]
ci: update macos CI to 15 Sequoia

Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/7809>

4 months agogst-plugins-ugly: update translations
Tim-Philipp Müller [Sun, 3 Nov 2024 17:37:09 +0000 (17:37 +0000)]
gst-plugins-ugly: update translations

Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/7820>

4 months agogst-plugins-bad: update translations
Tim-Philipp Müller [Sun, 3 Nov 2024 17:37:03 +0000 (17:37 +0000)]
gst-plugins-bad: update translations

Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/7820>

4 months agogst-plugins-good: update translations
Tim-Philipp Müller [Sun, 3 Nov 2024 17:36:46 +0000 (17:36 +0000)]
gst-plugins-good: update translations

Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/7820>

4 months agogst-plugins-base: update translations
Tim-Philipp Müller [Sun, 3 Nov 2024 17:36:38 +0000 (17:36 +0000)]
gst-plugins-base: update translations

Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/7820>

4 months agogstreamer: update translations
Tim-Philipp Müller [Sun, 3 Nov 2024 17:36:22 +0000 (17:36 +0000)]
gstreamer: update translations

Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/7820>

5 months agoci: tag rustfmt job as placeholder job
Tim-Philipp Müller [Fri, 1 Nov 2024 14:52:32 +0000 (14:52 +0000)]
ci: tag rustfmt job as placeholder job

Not really cpu bound and should finish quickly in any case.
Reduces wait time for initial stage and contention with the
normal job queue.

Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/7815>

5 months agortph264depay, rtph265depay: various parameter-set string handling fixes
Sebastian Dröge [Thu, 31 Oct 2024 15:46:40 +0000 (17:46 +0200)]
rtph264depay, rtph265depay: various parameter-set string handling fixes

Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/7812>

5 months agoappsrc: Fix use-after-free when making buffer / buffer-lists writable
Albert Sjolund [Fri, 25 Oct 2024 08:38:36 +0000 (10:38 +0200)]
appsrc: Fix use-after-free when making buffer / buffer-lists writable

make_writable can cause a reallocation of the buffer, meaning that obj
would point to an invalid object, both for buffer and for bufferlist.

Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/7806>

5 months agovalidate: Fix leaks in ssim components
Edward Hervey [Tue, 29 Oct 2024 14:36:49 +0000 (15:36 +0100)]
validate: Fix leaks in ssim components

Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/7802>

5 months agoBack to development after 1.24.9
Tim-Philipp Müller [Wed, 30 Oct 2024 20:40:12 +0000 (20:40 +0000)]
Back to development after 1.24.9

5 months agoRelease 1.24.9 upstream/1.24.9 1.24.9
Tim-Philipp Müller [Wed, 30 Oct 2024 20:33:30 +0000 (20:33 +0000)]
Release 1.24.9

5 months agoflvmux: Consider timestamps before segment start to map to segment start
Sebastian Dröge [Tue, 29 Oct 2024 15:39:02 +0000 (17:39 +0200)]
flvmux: Consider timestamps before segment start to map to segment start

Instead of mapping them to running time 0, which is wrong if e.g. the segment
base is not equal to 0.

Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/7798>

5 months agoflvmux: Use first running time on the initial header instead of 0
Sebastian Dröge [Tue, 29 Oct 2024 13:30:59 +0000 (15:30 +0200)]
flvmux: Use first running time on the initial header instead of 0

Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/7798>

5 months agosrt: Don't attempt to reconnect on authentication failures
Edward Hervey [Tue, 29 Oct 2024 10:29:05 +0000 (11:29 +0100)]
srt: Don't attempt to reconnect on authentication failures

This is a fatal issue which can't be recovered

Fixes https://gitlab.freedesktop.org/gstreamer/gstreamer/-/issues/1550

Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/7797>

5 months agomultiqueue: Do not unref the query we get in pad->query
Thibault Saunier [Mon, 28 Oct 2024 13:41:08 +0000 (10:41 -0300)]
multiqueue: Do not unref the query we get in pad->query

We do not own any ref to queries when running them.

If we end up processing the query from the streaming thread, it means that it was
a serialized query, and the query is being waited to be processed on the sinkpad
streaming thread, thread which owns the reference.

Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/7796>

5 months agotwcc: Handle wrapping of reference time
Johan Sternerup [Thu, 8 Aug 2024 12:28:11 +0000 (12:28 +0000)]
twcc: Handle wrapping of reference time

Previously the wrapping of the 24-bit reference time was not handled
correctly when transforming it into GstClockTime. Given the unit of 64ms
the span that could be represented by 24 bits is 12 days and depending
on the start value we could get a wrapping problem anytime within this
time frame. This turned out to be particularly problematic for the GCC
algorithm in gst-plugins-rs which tried to evict old packages based on
the "oldest" timestamp, which due to wrapping problems could be in the
future. Thus, the container managing the packets could grow without
limits for a long time thereby creating both CPU and memory problems.

Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/7792>

5 months agowebrtcbin: Clean up bin elements when datachannel is removed
Emil Ljungdahl [Mon, 14 Oct 2024 09:26:20 +0000 (11:26 +0200)]
webrtcbin: Clean up bin elements when datachannel is removed

When a datachannel within a session is removed after proper close,
reference to the error_ignore_bin elements of the datachannel
appsrc/appsink were left in webrtcbin.

This caused the bin-objects to be left and not freed until the whole
webrtc session was terminated. Among other things that includes a thread
from the appsrc.

Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/7791>

5 months agoci: Set SUBPROJECTS_CACHE_DIR variable
Jordan Petridis [Thu, 29 Aug 2024 19:52:25 +0000 (22:52 +0300)]
ci: Set SUBPROJECTS_CACHE_DIR variable

It's used in the build script and it fails if it's undefined.

Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/7789>

5 months agowayland: Add NV15 support
Nicolas Dufresne [Tue, 24 Sep 2024 17:55:39 +0000 (13:55 -0400)]
wayland: Add NV15 support

This format, which maps to NV12_10LE40 in GStreamer is produced by Rockchip
video decoders when decoding 4:2:0 10 bit content.

Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/7789>

5 months agoci: Update fluster VP8 result
Seungha Yang [Tue, 29 Oct 2024 15:08:07 +0000 (00:08 +0900)]
ci: Update fluster VP8 result

Updating vp80-03-segmentation-1425 and vp80-03-segmentation-1436
results

Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/7787>

5 months agovp8decoder: Fix resolution change handling
Seungha Yang [Tue, 22 Oct 2024 14:41:13 +0000 (23:41 +0900)]
vp8decoder: Fix resolution change handling

Do not store resolution in set_format() so that resolution change
can be detected on keyframe as intended.

Fixes: https://gitlab.freedesktop.org/gstreamer/gstreamer/-/issues/3928
Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/7787>

5 months agortmp2sink: Initialize base_ts / last_ts with the actual first observed timestamp
Sebastian Dröge [Fri, 25 Oct 2024 13:37:15 +0000 (16:37 +0300)]
rtmp2sink: Initialize base_ts / last_ts with the actual first observed timestamp

Initializing it with zero can falsely trigger the overflow / underflow detection
code if the first observed timestamp is a big integer.

Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/7786>

5 months agortppassthrough: fix rtp-stats message compatibility with GstRTPBasePayload
Tim-Philipp Müller [Tue, 29 Oct 2024 16:43:33 +0000 (16:43 +0000)]
rtppassthrough: fix rtp-stats message compatibility with GstRTPBasePayload

"clock-rate" and "pt" are G_TYPE_UINT in the base class, so let's
keep them like that here too, since the entire purposes of the
passthrough element is to fake being a payloader. The types in the
message don't have to be consistent with the types in the caps.

Reverts part of commit a6fa53b7 of !7526

https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/7552#note_2576653

Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/7784>

5 months agompegtsdemux: Handle PTS/DTS wraparound with ignore-pcr=true
Sebastian Dröge [Mon, 30 Sep 2024 12:51:04 +0000 (15:51 +0300)]
mpegtsdemux: Handle PTS/DTS wraparound with ignore-pcr=true

The wraparound handling code assumes that the PCR gets updated regularly for
being able to detect wraparounds. With ignore-pcr=true that was not the case and
it stayed initialized at 1h forever.

To avoid this problem, update the fake PCR whenever the PTS advanced by more
than 5s, and also detect wraparounds in these fake PCRs.

Problem can be reproduced with

  $ gst-launch-1.0 videotestsrc pattern=black ! video/x-raw,framerate=1/5 ! \
    x264enc speed-preset=ultrafast tune=zerolatency ! mpegtsmux ! \
    tsdemux ignore-pcr=true ! fakesink

which restarts timestamps at 0 after around 26h30m.

Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/7763>

5 months agoplay: Improve play message API inconsistencies
Sebastian Dröge [Sat, 26 Oct 2024 08:42:48 +0000 (11:42 +0300)]
play: Improve play message API inconsistencies

  * Check for the correct message type when parsing
  * Use correct field name for warning message details

Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/7779>

5 months agoaggregator: fix start time selection first with force-live
Mathieu Duponchelle [Fri, 25 Oct 2024 17:12:17 +0000 (19:12 +0200)]
aggregator: fix start time selection first with force-live

When force-live is true, we don't want to wait for a first buffer
to select a start time.

Fixes https://gitlab.freedesktop.org/gstreamer/gstreamer/-/issues/1783

Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/7778>

5 months agortpmanager: skip RTPSources which are not ready in the RTCP generation
Ognyan Tonchev [Fri, 25 Oct 2024 10:02:54 +0000 (12:02 +0200)]
rtpmanager: skip RTPSources which are not ready in the RTCP generation

If a stream has an 'irregular' frame rate (e.g. metadata) RTCP SR
may be generated way too early, before the RTPSource has received
the first packet after Latency was configured in the pipeline.
We skip such RTPSources in the RTCP generation.

Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/7777>

5 months agoplayback: Improve stream list search
Edward Hervey [Wed, 23 Oct 2024 13:39:17 +0000 (15:39 +0200)]
playback: Improve stream list search

There is the possibility than an element/code/helper creates an identical
`GstStream` (same type and stream-id) instance instead of re-using a previous
one.

For those cases, when detecting whether a `GstStream` is already present in a
collection, we need to do more checks than just comparing the pointer.

Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/7764>

5 months agourisourcebin: Aggregate collections from multiple parsebin
Edward Hervey [Wed, 23 Oct 2024 13:17:22 +0000 (15:17 +0200)]
urisourcebin: Aggregate collections from multiple parsebin

In the case where multiple parsebin are present (ex: from rtsp sources), we want
to aggregate the collections provided by the different parsebin and expose a
single "unified" collection.

Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/7764>