platform/upstream/gstreamer.git
2 years agotrigger_cerbero_pipeline.py: Do not hardcode gitlab instance
Xavier Claessens [Tue, 5 Oct 2021 15:20:32 +0000 (11:20 -0400)]
trigger_cerbero_pipeline.py: Do not hardcode gitlab instance

When GStreamer is forked into a private GitLab instance we should
trigger cerbero into that private instance too. Otherwise the token
won't be accepted.

Also do not hardcode the cerbero project ID because it is instance
specific.

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

2 years agova: Use macro rather than VAMemory feature string.
Víctor Manuel Jáquez Leal [Fri, 17 Sep 2021 11:02:38 +0000 (13:02 +0200)]
va: Use macro rather than VAMemory feature string.

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

2 years agoci: remove duplicate stage key in documentation job
Jordan Petridis [Tue, 5 Oct 2021 20:28:57 +0000 (23:28 +0300)]
ci: remove duplicate stage key in documentation job

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

2 years agoci: Remove "check allow-edit" job because gitlab does it by default
Xavier Claessens [Tue, 5 Oct 2021 00:44:15 +0000 (20:44 -0400)]
ci: Remove "check allow-edit" job because gitlab does it by default

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

2 years agoci: Update fedora image for cerbero trigger
Xavier Claessens [Tue, 5 Oct 2021 00:24:58 +0000 (20:24 -0400)]
ci: Update fedora image for cerbero trigger

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

2 years agoci: Fix gst-indent path
Xavier Claessens [Tue, 5 Oct 2021 12:51:08 +0000 (08:51 -0400)]
ci: Fix gst-indent path

It used to be downloaded into PATH, but we can now instead run it from
git. Also move it to top source dir instead of gstreamer subproject.

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

2 years agoci: Fix subprojects caching in Windows image
Xavier Claessens [Tue, 5 Oct 2021 00:25:54 +0000 (20:25 -0400)]
ci: Fix subprojects caching in Windows image

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

2 years agoci/docker/fedora: update rustc and meson versions
Jordan Petridis [Mon, 27 Sep 2021 07:03:31 +0000 (10:03 +0300)]
ci/docker/fedora: update rustc and meson versions

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

2 years agoci: port to fd.o citemplates
Jordan Petridis [Mon, 27 Sep 2021 06:41:10 +0000 (09:41 +0300)]
ci: port to fd.o citemplates

https://gitlab.freedesktop.org/freedesktop/ci-templates

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

2 years agoci: remove duplicate keys
Jordan Petridis [Mon, 27 Sep 2021 06:42:18 +0000 (09:42 +0300)]
ci: remove duplicate keys

They are redefined/copied just below

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

2 years agoci: Add a dummy trigger job/stage
Nicolas Dufresne [Tue, 5 Oct 2021 13:27:50 +0000 (09:27 -0400)]
ci: Add a dummy trigger job/stage

This is to avoid triggering docker images for no reason, and bring back
running gst-indent always.

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

2 years agoci: Document the difference between the two doc jobs
Nicolas Dufresne [Tue, 5 Oct 2021 13:06:32 +0000 (09:06 -0400)]
ci: Document the difference between the two doc jobs

Naming is hard, so I opted for a small comment to explain this one.

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

2 years agortsp-media: Also mark receive-only (RECORD) medias as prepared when unsuspending
Sebastian Dröge [Tue, 5 Oct 2021 16:37:40 +0000 (19:37 +0300)]
rtsp-media: Also mark receive-only (RECORD) medias as prepared when unsuspending

Previously the status was only changed for other medias.

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

2 years agodocs: update "Building from Source using Meson" for mono repo
Tim-Philipp Müller [Tue, 5 Oct 2021 12:26:52 +0000 (13:26 +0100)]
docs: update "Building from Source using Meson" for mono repo

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

2 years agosplitmuxsink: Keep track of the pending input GOPs in a queue
Sebastian Dröge [Tue, 21 Sep 2021 10:37:35 +0000 (13:37 +0300)]
splitmuxsink: Keep track of the pending input GOPs in a queue

This cleans up input GOP handling and makes it possible to handle more
than 2 pending GOPs, which could happen before if keyframes are arriving
with too short of a distance between them.

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

2 years agosplitmuxsink: Handle frame reordering due to B frames better
Sebastian Dröge [Thu, 16 Sep 2021 16:36:27 +0000 (19:36 +0300)]
splitmuxsink: Handle frame reordering due to B frames better

Instead of assuming that the PTS of a keyframe is the lowest PTS of a
GOP, wait until the DTS has passed this PTS and take the minimum PTS up
to that point. That way the minimum PTS of a GOP can be determined, at
least for closed GOP streams. Open GOP streams still can't be handled
properly.

By knowing the minimum PTS of each GOP, keyframes can be requested at
the correct time relative to the GOP (and thus fragment) start and
fragment overflow calculations can calculate the correct durations of
the GOPs.

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

2 years agosplitmuxsink: Reset timecodes when resetting the sink
Sebastian Dröge [Thu, 16 Sep 2021 11:07:27 +0000 (14:07 +0300)]
splitmuxsink: Reset timecodes when resetting the sink

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

2 years agosplitmuxsink: Use GST_CLOCK_STIME_NONE instead of 0 to initialize max out running...
Sebastian Dröge [Thu, 16 Sep 2021 10:11:20 +0000 (13:11 +0300)]
splitmuxsink: Use GST_CLOCK_STIME_NONE instead of 0 to initialize max out running time

Otherwise streams with only DTS would misbehave while it is negative.

For outputting everything immediately at EOS, use G_MAXINT64 instead
which is bigger-or-equal to any other running time.

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

2 years agosplitmuxsink: Only update max in/out running time if it's actually bigger
Sebastian Dröge [Thu, 16 Sep 2021 10:02:29 +0000 (13:02 +0300)]
splitmuxsink: Only update max in/out running time if it's actually bigger

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

2 years agosplitmuxsink: Only count keyframes for the reference context, consistently
Sebastian Dröge [Thu, 16 Sep 2021 09:53:12 +0000 (12:53 +0300)]
splitmuxsink: Only count keyframes for the reference context, consistently

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

2 years agoci: Rework workflow rules to prevent duplicate pipelines
Jordan Petridis [Wed, 29 Sep 2021 12:15:03 +0000 (15:15 +0300)]
ci: Rework workflow rules to prevent duplicate pipelines

Currently gitlab spawns 2 pipelines, one for the branch and
another for the merge request.

Update our rules so that only one of them is spawned depending
on the situation.

https://docs.gitlab.com/ee/ci/yaml/index.html#switch-between-branch-pipelines-and-merge-request-pipelines

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

2 years agodocs/running: Describe GST_REGISTRY_MODE
Robert Rosengren [Fri, 24 Sep 2021 13:24:15 +0000 (15:24 +0200)]
docs/running: Describe GST_REGISTRY_MODE

Change-Id: I45e9fe90137d4a8306c3a5e4f636fa43425b978f
Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/825>

2 years agoregistrybinary: registry file mode via GST_REGISTRY_MODE
Robert Rosengren [Mon, 10 May 2021 10:50:18 +0000 (12:50 +0200)]
registrybinary: registry file mode via GST_REGISTRY_MODE

In an embedded system where all services run as seperate users it is
useful to have the gstreamer registry readable by all so it can be
re-used, in similar manner as a host system where one user have seperate
applications running but all share same registry.

To make this possible introducing GST_REGISTRY_MODE for adjusting the
changing mode of the registry binary when finishing up with the
temporary file (which has restricted access).

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

2 years agompegtsparse: Don't assert the packet_size when filling for EOS
Jan Alexander Steffens (heftig) [Fri, 24 Sep 2021 09:53:56 +0000 (11:53 +0200)]
mpegtsparse: Don't assert the packet_size when filling for EOS

If the packetizer got reset for any reason (failure to find PCR?) then
the packet_size can be zero here even though we already enqueued some
packets.

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

2 years agopbutils: Remove sample entry code "raw"
Ludvig Rappe [Wed, 15 Sep 2021 14:49:16 +0000 (16:49 +0200)]
pbutils: Remove sample entry code "raw"

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

2 years agomultiqueue: Fix query unref race on flush
Jan Alexander Steffens (heftig) [Mon, 4 Oct 2021 11:49:44 +0000 (13:49 +0200)]
multiqueue: Fix query unref race on flush

If the query has already been destroyed at this point, GST_IS_QUERY will
read garbage, can return false and we will try to unref it again.
Instead, make note of whether the item is a query when we dequeue it.

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

2 years agohandle-subprojects-cache.py: Fix shebang
Xavier Claessens [Mon, 4 Oct 2021 23:59:58 +0000 (19:59 -0400)]
handle-subprojects-cache.py: Fix shebang

2 years agocodecs: mpeg2decoder: Use GstFlowReturn everywhere
Seungha Yang [Tue, 21 Sep 2021 15:05:43 +0000 (00:05 +0900)]
codecs: mpeg2decoder: Use GstFlowReturn everywhere

boolean return value is not sufficient for representing the reason
of error in most cases. For instance, any errors around new_sequence()
would mean negotiation error, not just *ERROR*.
And some subclasses will allocate buffer/memory/surface on new_picture()
but it could be failed because of expected error, likely flushing

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

2 years agocodecs: h264decoder: Use GstFlowReturn everywhere
Seungha Yang [Tue, 21 Sep 2021 13:21:51 +0000 (22:21 +0900)]
codecs: h264decoder: Use GstFlowReturn everywhere

boolean return value is not sufficient for representing the reason
of error in most cases. For instance, any errors around new_sequence()
would mean negotiation error, not just *ERROR*.
And some subclasses will allocate buffer/memory/surface on new_picture()
but it could be failed because of expected error, likely flushing

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

2 years agocodecs: h265decoder: Use GstFlowReturn everywhere
Seungha Yang [Mon, 20 Sep 2021 15:23:13 +0000 (00:23 +0900)]
codecs: h265decoder: Use GstFlowReturn everywhere

boolean return value is not sufficient for representing the reason
of error in most cases. For instance, any errors around new_sequence()
would mean negotiation error, not just *ERROR*.
And some subclasses will allocate buffer/memory/surface on new_picture()
but it could be failed because of expected error, likely flushing

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

2 years agoclosedcaption: Fix broken debug function macros with MSVC build
Seungha Yang [Sat, 2 Oct 2021 12:22:23 +0000 (21:22 +0900)]
closedcaption: Fix broken debug function macros with MSVC build

warning C4003: not enough arguments for function-like macro invocation 'warning'

G_STMT_END macro is extended to the below form with MSVC
__pragma(warning(push)) \
__pragma(warning(disable:4127)) \
while(0) \
__pragma(warning(pop))

So MSVC preprocessor will extend it further to
__pragma(VBI_CAT_LEVEL_LOG(push)) ...

Should rename warning() debug macro function therefore.

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

2 years agompegtsmux: basetsmux: Don't try to return value from void function
Seungha Yang [Sat, 2 Oct 2021 11:12:07 +0000 (20:12 +0900)]
mpegtsmux: basetsmux: Don't try to return value from void function

gstbasetsmux.c(1508): warning C4098: 'free_splice': 'void' function returning a value

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

2 years agomove_mrs: Disable our commit hook during the move
Nicolas Dufresne [Fri, 1 Oct 2021 19:49:12 +0000 (15:49 -0400)]
move_mrs: Disable our commit hook during the move

As GNU indent version can be different on the user system, we see some
differences during migration thas causes conflicts. Making cherry-pick
difficults to recover without breaking the style temporily. Note that
cherry-pick continuation does not allow passing the -n option to skip
the hooks.

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

2 years agomove_mrs: Fix coding style using autopep8
Nicolas Dufresne [Fri, 1 Oct 2021 19:47:44 +0000 (15:47 -0400)]
move_mrs: Fix coding style using autopep8

And some small edits for:
- E741 ambiguous variable name 'l'
- E722 do not use bare 'except'
- W504 line break after binary operator

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

2 years agova: Make libgudev dependency optional.
Víctor Manuel Jáquez Leal [Sun, 3 Oct 2021 14:53:54 +0000 (16:53 +0200)]
va: Make libgudev dependency optional.

libgudev is a problematic dependency, particularly in sandboxed
environments, such as flatpak.

This patch implements a way to get the available VA devices using
brute-forced traverse of /dev/drm/renderD* directory. Thus usable in
those sandboxed environments.

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

2 years agova: meson: Move back libgudev dependency to plugin.
Víctor Manuel Jáquez Leal [Sun, 3 Oct 2021 13:45:58 +0000 (15:45 +0200)]
va: meson: Move back libgudev dependency to plugin.

When move the libgstva, libgudev dependency was moved as part of the
library, though it's not use by the library but the plugin. This patch
moves back libgudev dependency to the plugin.

Also HAVE_LIBDRM is move to the library which is the one who use it.

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

2 years agonvcodec: nvh264sldec: Add support for interlaced stream
Seungha Yang [Sun, 3 Oct 2021 10:14:07 +0000 (19:14 +0900)]
nvcodec: nvh264sldec: Add support for interlaced stream

Implement missing interlaced stream support

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

2 years agonvcodec: nvh264sldec: Consider additional render delay DPB pictures
Seungha Yang [Sun, 3 Oct 2021 08:41:40 +0000 (17:41 +0900)]
nvcodec: nvh264sldec: Consider additional render delay DPB pictures

At least additional 4 pictures are required

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

2 years agonvcodec: nvvp9sldec: Fix for VP9 profile2 decoding
Seungha Yang [Sun, 3 Oct 2021 08:37:02 +0000 (17:37 +0900)]
nvcodec: nvvp9sldec: Fix for VP9 profile2 decoding

Fix for output video format to be selected correctly

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

2 years agomsdk: meson: Fix build on Windows
Seungha Yang [Sat, 2 Oct 2021 17:14:17 +0000 (02:14 +0900)]
msdk: meson: Fix build on Windows

subprojects\gst-plugins-bad\sys\msdk\meson.build:160:2: ERROR: Unknown variable "libva_dep".

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

2 years agod3d11: d3d11vp9dec: Fix use_prev_in_find_mv_refs value setting
Seungha Yang [Sat, 2 Oct 2021 16:45:57 +0000 (01:45 +0900)]
d3d11: d3d11vp9dec: Fix use_prev_in_find_mv_refs value setting

"last_show_frame" should be updated based on
GstVp9FrameHeader::show_frame, not show_existing_frame

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

2 years agocodecs: {vp8,vp9}decoder: Drain on new_sequence()
Seungha Yang [Sat, 18 Sep 2021 13:51:53 +0000 (22:51 +0900)]
codecs: {vp8,vp9}decoder: Drain on new_sequence()

Decoder should drain queued frame (if any) and empty DPB before
starting new sequence.

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

2 years agonvcodec: nv{vp8,vp9}sldec: Implement get_preferred_output_delay()
Seungha Yang [Thu, 30 Sep 2021 15:27:42 +0000 (00:27 +0900)]
nvcodec: nv{vp8,vp9}sldec: Implement get_preferred_output_delay()

Equivalent to that of nvh264sldec. Use render delay in case of non-live
pipeline for the better throughput performance.

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

2 years agocodecs: {vp8,vp9}decoder: Cleanup drain code
Seungha Yang [Thu, 30 Sep 2021 16:00:24 +0000 (01:00 +0900)]
codecs: {vp8,vp9}decoder: Cleanup drain code

Make them consistent with h26x decoder baseclass

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

2 years agocodecs: vp8decoder: Fix typo
Seungha Yang [Thu, 30 Sep 2021 17:58:44 +0000 (02:58 +0900)]
codecs: vp8decoder: Fix typo

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

2 years agocodecs: vp9decoder: add support for render delay
Seungha Yang [Sat, 2 Oct 2021 11:21:41 +0000 (20:21 +0900)]
codecs: vp9decoder: add support for render delay

Some decoding APIs support delayed output for performance reasons.
One example would be to request decoding for multiple frames and
then query for the oldest frame in the output queue.

This also increases throughput for transcoding and improves seek
performance when supported by the underlying backend.

Introduce support in the vp9 base class, so that backends that
support render delays can actually implement it.

Co-authored by Seungha Yang <seungha@centricular.com>

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

2 years agocodecs: vp9decoder: Fix class struct documentation
Seungha Yang [Sat, 2 Oct 2021 10:47:45 +0000 (19:47 +0900)]
codecs: vp9decoder: Fix class struct documentation

s/GstVp9Decoder/GstVp9DecoderClass

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

2 years agoges:uri-asset: Ignore streams with no ID
Thibault Saunier [Thu, 30 Sep 2021 22:03:40 +0000 (19:03 -0300)]
ges:uri-asset: Ignore streams with no ID

Since 0d95d9258b97 we respect the asset stream-id in `GESUriSource` so
we can not work with unknown or broken stream ID in the assets.

We just ignore them, warning about it and we should fix that in
demuxer so they don't expose pad without providing a stream id for them.

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

2 years agotypefindfunctions: differentiate h265 from h264
Stéphane Cerveau [Thu, 16 Sep 2021 13:18:24 +0000 (15:18 +0200)]
typefindfunctions: differentiate h265 from h264

in some cases, the algo gives the same probability
to h264 and h265 for h26x stream resulting in a h265
stream detected as a h264.
if sps/pps/vps detected, increase the probabilty.

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

2 years agova: meson: Update and enhance meson syntax usage.
Víctor Manuel Jáquez Leal [Thu, 30 Sep 2021 15:38:33 +0000 (17:38 +0200)]
va: meson: Update and enhance meson syntax usage.

This patch contains two updates:

1. Instead of checking for dependency already checked just to verify a
   version, we use the dependency version API.
2. Update the deprecated function get_pkgconfig_variable.

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

2 years agomsdk: meson: Don't get dependency variable before it's valid.
Víctor Manuel Jáquez Leal [Thu, 30 Sep 2021 15:43:09 +0000 (17:43 +0200)]
msdk: meson: Don't get dependency variable before it's valid.

It's possible to have installed MediaSDK environment
package (libmfx-dev in Debian) without libva environment package. This
setup will lead to a breakage of meson configuration.

The fix is to get the libva's driver directory variable after the
dependency is validated as found.

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

2 years agoristsink: set sync to FALSE on RTCP sink
Marc Leeman [Thu, 30 Sep 2021 11:32:44 +0000 (13:32 +0200)]
ristsink: set sync to FALSE on RTCP sink

See commit 921e9a54: rtpsink: set sync off on rtcp_sink

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

2 years agortpsink: set sync off on rtcp_sink
Marc Leeman [Thu, 30 Sep 2021 11:19:40 +0000 (13:19 +0200)]
rtpsink: set sync off on rtcp_sink

When using the following setup (the error can be reproduced using
simpler sender pipelines), the receiver resynchronises the clock on RTCP
packets. The effect was that a couple seconds were cut out of the
playback because an initial RTCP packet was dropped.

When sending out all RTCP packets (setting sync=FALSE on the RTCP
updsink), the playback is fine.

This syncs rtpsink with rtpsrc (where this property was already set).

gst-launch-1.0 filesrc location=899-en.mp3 \
    ! mpegaudioparse \
    ! mpg123audiodec \
    ! audioconvert \
    ! audioresample \
    ! avenc_g722 \
    ! rtpg722pay
    ! rtpsink uri=rtp://239.1.2.3:1234

gst-launch-1.0 uridecodebin rtp://239.1.2.3:1234?encoding-name=G722 \
    ! autoaudiosink

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

2 years agortsp-session: Don't unref medias twice if it is removed inside gst_rtsp_session_filte...
Sebastian Dröge [Fri, 1 Oct 2021 10:51:37 +0000 (13:51 +0300)]
rtsp-session: Don't unref medias twice if it is removed inside gst_rtsp_session_filter() while the mutex is shortly released

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

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

2 years agortpmanagerbad: do not set iface on sink
Marc Leeman [Thu, 17 Sep 2020 13:06:38 +0000 (15:06 +0200)]
rtpmanagerbad: do not set iface on sink

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

2 years agoci: Rebuild windows image
Jordan Petridis [Fri, 1 Oct 2021 09:11:04 +0000 (12:11 +0300)]
ci: Rebuild windows image

Get updates and newer ca-certificates in.

Also update the way we install chocolatey

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

2 years agoci:doc: Rewrite script to import doc on fdo ensuring the right job is used
Thibault Saunier [Thu, 30 Sep 2021 15:47:20 +0000 (12:47 -0300)]
ci:doc: Rewrite script to import doc on fdo ensuring the right job is used

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

2 years agomove-script: Do not expect user to be members of the gstreamer project
Thibault Saunier [Thu, 30 Sep 2021 13:37:05 +0000 (10:37 -0300)]
move-script: Do not expect user to be members of the gstreamer project

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

2 years agomove-script: Handle users not having forked gstreamer core
Thibault Saunier [Thu, 30 Sep 2021 13:36:00 +0000 (10:36 -0300)]
move-script: Handle users not having forked gstreamer core

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

2 years agocore: remove outdated mention to gst-build
Stéphane Cerveau [Wed, 29 Sep 2021 09:23:38 +0000 (11:23 +0200)]
core: remove outdated mention to gst-build

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

2 years agomfdeviceprovider: Add support for device update
Seungha Yang [Fri, 27 Aug 2021 10:19:57 +0000 (19:19 +0900)]
mfdeviceprovider: Add support for device update

Similar to the wasapi2 plugin, GstWinRT library will be used for UWP,
and adding new GstWin32DeviceWatcher object implementation for
Win32 desktop application.

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

2 years agowasapi2deviceprovider: Add support for device update
Seungha Yang [Thu, 26 Aug 2021 13:38:37 +0000 (22:38 +0900)]
wasapi2deviceprovider: Add support for device update

... by using newly implemented GstWinRT library

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

2 years agolibs: Introduce GstWinRT library
Seungha Yang [Thu, 26 Aug 2021 10:47:51 +0000 (19:47 +0900)]
libs: Introduce GstWinRT library

Adding a helper library for various WinRT specific implementations.
Currently this library supports only DeviceWatcher abstraction object
which can be used for dynamic device add/remove detection.
See also
https://docs.microsoft.com/en-us/uwp/api/windows.devices.enumeration.devicewatcher?view=winrt-20348

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

2 years agovideo: make GST_VIDEO_FORMAT_INFO_IS_*() macros booleans
Tim-Philipp Müller [Sun, 26 Sep 2021 00:55:39 +0000 (01:55 +0100)]
video: make GST_VIDEO_FORMAT_INFO_IS_*() macros booleans

Spotted by Stirling Westrup.

Fixes #726

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

2 years agoaudio: make GST_AUDIO_INFO_IS_UNPOSITIONED return a boolean
Tim-Philipp Müller [Sun, 26 Sep 2021 00:52:12 +0000 (01:52 +0100)]
audio: make GST_AUDIO_INFO_IS_UNPOSITIONED return a boolean

Luckily this worked right since the flag we check is the
only flag and its vale is 1, but feels more correct to
actually check for non-zeroness.

Spotted by Stirling Westrup.

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

2 years agoscripts:move_mrs: Revert cherry-picking when aborting
Thibault Saunier [Wed, 29 Sep 2021 13:07:48 +0000 (10:07 -0300)]
scripts:move_mrs: Revert cherry-picking when aborting

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

2 years agoAdd .editorconfig used by some IDE like vscode
Xavier Claessens [Wed, 29 Sep 2021 14:21:21 +0000 (10:21 -0400)]
Add .editorconfig used by some IDE like vscode

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

2 years agoFix gitignore
Xavier Claessens [Wed, 29 Sep 2021 13:56:58 +0000 (09:56 -0400)]
Fix gitignore

- `*build*/` is not needed because Meson puts a .gitignore in builddir
already.

- `meson/` why?

- `/gst*` is too wide, it includes e.g. gst-env.py, list symlinks
explicitly instead.

- `subprojects/*` excludes all .wrap files, and `!subprojects/gst*` is
not enough because e.g. `macos-bison-binary` is still ignored. Instead
ignore only directories except those we include in our git repository.

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

2 years agoDelete .arcconfig files
Xavier Claessens [Tue, 28 Sep 2021 19:45:19 +0000 (15:45 -0400)]
Delete .arcconfig files

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

2 years agoindent: Ignore any changes in medias/
Thibault Saunier [Wed, 29 Sep 2021 12:22:06 +0000 (09:22 -0300)]
indent: Ignore any changes in medias/

It is a submodule and we do not care about it

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

2 years agodocs: Always build documentation on gstreamer/gstreamer main branch
Thibault Saunier [Tue, 28 Sep 2021 19:29:12 +0000 (16:29 -0300)]
docs: Always build documentation on gstreamer/gstreamer main branch

So artifacts can the be imported on gst.fd.o.

And update the importation script accordingly

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

2 years agoci: Remove useless GIT_LFS_SKIP_SMUDGE and GIT_STRATEGY
Xavier Claessens [Mon, 27 Sep 2021 16:12:22 +0000 (12:12 -0400)]
ci: Remove useless GIT_LFS_SKIP_SMUDGE and GIT_STRATEGY

GIT_LFS_SKIP_SMUDGE is not needed because we don't have git-lfs any
more.

GIT_STRATEGY is not needed because "fetch" is the default strategy.

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

2 years agodocs: faq: monorepo: add another question and clarify bisecting section
Tim-Philipp Müller [Tue, 28 Sep 2021 23:05:21 +0000 (00:05 +0100)]
docs: faq: monorepo: add another question and clarify bisecting section

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

2 years agodocs: faq: monorepo: import gitlab access token dialog screenshot
Tim-Philipp Müller [Tue, 28 Sep 2021 23:04:37 +0000 (00:04 +0100)]
docs: faq: monorepo: import gitlab access token dialog screenshot

Best not to rely on external hosting.

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

2 years agortphdrext: Give "inherited" direction in set_attributes
Olivier Crête [Mon, 27 Sep 2021 20:11:33 +0000 (16:11 -0400)]
rtphdrext: Give "inherited" direction in set_attributes

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

2 years agortphdrext: Use NULL-safe case insensitive comparison
Olivier Crête [Mon, 27 Sep 2021 14:19:51 +0000 (10:19 -0400)]
rtphdrext: Use NULL-safe case insensitive comparison

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

2 years agortphdrext: Print warnings when trying to parse caps
Olivier Crête [Mon, 27 Sep 2021 14:01:02 +0000 (10:01 -0400)]
rtphdrext: Print warnings when trying to parse caps

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

2 years agortphdrext: Pass just the attributes to the subclass
Olivier Crête [Fri, 24 Sep 2021 17:38:39 +0000 (13:38 -0400)]
rtphdrext: Pass just the attributes to the subclass

Since the base class now does the parsing, there is no need
to reproduce that code in all the subclasses, just pass the attributes
which are the only relevant bit anyway.

Also, only store the direction if the subclass accepted the caps

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

2 years agortphdrext: Use fail_unless_equals_string() to make tests easier to debug
Olivier Crête [Fri, 24 Sep 2021 17:19:22 +0000 (13:19 -0400)]
rtphdrext: Use fail_unless_equals_string() to make tests easier to debug

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

2 years agortphdrext test: Use helper function for caps
Olivier Crête [Fri, 24 Sep 2021 17:02:13 +0000 (13:02 -0400)]
rtphdrext test: Use helper function for caps

Also, let the base class parse the direction for us.

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

2 years agortphdrext-rfc6464: Use helper function to set caps field
Olivier Crête [Fri, 24 Sep 2021 16:52:37 +0000 (12:52 -0400)]
rtphdrext-rfc6464: Use helper function to set caps field

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

2 years agortphdrext: Add helper function to set fields in caps
Olivier Crête [Fri, 24 Sep 2021 16:51:01 +0000 (12:51 -0400)]
rtphdrext: Add helper function to set fields in caps

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

2 years agortphdrext: Parse direction from the caps
Olivier Crête [Thu, 23 Sep 2021 20:37:45 +0000 (16:37 -0400)]
rtphdrext: Parse direction from the caps

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

2 years agortphdrext: Set the direction in the caps from the property
Olivier Crête [Thu, 23 Sep 2021 20:33:32 +0000 (16:33 -0400)]
rtphdrext: Set the direction in the caps from the property

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

2 years agortphdrext: Store the direction in the base class
Olivier Crête [Thu, 23 Sep 2021 20:24:04 +0000 (16:24 -0400)]
rtphdrext: Store the direction in the base class

Store the direction associated wit the RTP header extension in the
base class so it can use it.

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

2 years agortphdrext: Set caps without attributes as the default
Olivier Crête [Thu, 23 Sep 2021 20:01:40 +0000 (16:01 -0400)]
rtphdrext: Set caps without attributes as the default

Most subclasses just use the simple function, so just let the base class
do it. It makes less code in subclasses.

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

2 years agortphdrext: Put simple caps generation as the base class default
Olivier Crête [Thu, 23 Sep 2021 19:36:00 +0000 (15:36 -0400)]
rtphdrext: Put simple caps generation as the base class default

Instead of having a helper function that gets called by almost every
subclass, just let the base class set the caps fields automatically.

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

2 years agodocs: add mono repo FAQ
Tim-Philipp Müller [Tue, 28 Sep 2021 18:07:19 +0000 (19:07 +0100)]
docs: add mono repo FAQ

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

2 years agomove-mrs-script: Add an option to select which modules and MR to work on
Thibault Saunier [Sun, 26 Sep 2021 22:51:48 +0000 (19:51 -0300)]
move-mrs-script: Add an option to select which modules and MR to work on

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

2 years agomove-mrs-script: Add options to use python gitlab config files
Thibault Saunier [Sun, 26 Sep 2021 22:51:48 +0000 (19:51 -0300)]
move-mrs-script: Add options to use python gitlab config files

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

2 years agomove-mrs-script: Get back to checked out branch
Thibault Saunier [Sun, 26 Sep 2021 22:37:07 +0000 (19:37 -0300)]
move-mrs-script: Get back to checked out branch

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

2 years agoscripts: Add a script to rebase branches from old modules into monorepo
Thibault Saunier [Sun, 26 Sep 2021 00:03:06 +0000 (21:03 -0300)]
scripts: Add a script to rebase branches from old modules into monorepo

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

2 years agomove-mrs-script: Add prefix to mr titles if no provided
Thibault Saunier [Sat, 25 Sep 2021 01:47:17 +0000 (22:47 -0300)]
move-mrs-script: Add prefix to mr titles if no provided

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

2 years agomove-mrs-script: Add a notion of when comments where added
Thibault Saunier [Fri, 24 Sep 2021 23:02:02 +0000 (20:02 -0300)]
move-mrs-script: Add a notion of when comments where added

And resolve already resolved discussions

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

2 years agoAdd a scripts to ease moving pending MRs to the monorepo
Thibault Saunier [Tue, 23 Feb 2021 16:20:33 +0000 (13:20 -0300)]
Add a scripts to ease moving pending MRs to the monorepo

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

2 years agogitignore: Ignore symlinks
Thibault Saunier [Fri, 24 Sep 2021 12:59:20 +0000 (09:59 -0300)]
gitignore: Ignore symlinks

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

2 years agoci: Wait for cerbero pipeline to finish
Thibault Saunier [Mon, 27 Sep 2021 22:37:18 +0000 (19:37 -0300)]
ci: Wait for cerbero pipeline to finish

So we are sure the pipeline is marked as failed if the cerbero sub pipeline fails

See https://gitlab.com/gitlab-org/gitlab/-/issues/341737 for details

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

2 years agodoc: update IRC links to OFTC
Brad Hards [Tue, 28 Sep 2021 00:11:15 +0000 (10:11 +1000)]
doc: update IRC links to OFTC

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

2 years agoci: trigger cerbero
Xavier Claessens [Mon, 27 Sep 2021 14:15:22 +0000 (10:15 -0400)]
ci: trigger cerbero

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

2 years agod3d11videosink: Add support for crop meta
Seungha Yang [Sat, 18 Sep 2021 14:37:20 +0000 (23:37 +0900)]
d3d11videosink: Add support for crop meta

... when upstream element is d3d11.

Note that, if upstream element is not d3d11, crop meta is almost
pointless since d3d11videosink will upload video frame to GPU memory
in any case.

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