Simon Arnling Bååth [Fri, 4 Oct 2019 20:31:56 +0000 (20:31 +0000)]
gstrtpjitterbuffer: Custom messages when dropping packets
This commit adds custom element messages for when gstrtpjitterbuffer
drops an incoming rtp packets due to for example arriving too late.
Applications can listen to these messages on the bus which enables
actions to be taken when packets are dropped due to for example high
network jitter.
Two properties has been added, one to enable posting drop messages and
one to set a minimum time between each message to enable throttling the
posting of messages as high drop rates.
Thibault Saunier [Tue, 3 Sep 2019 20:46:30 +0000 (16:46 -0400)]
qtdemux: Specify REDIRECT information in error message
There are in the wild (mp4) streams that basically contain no tracks
but do have a redirect info[0], in which case, we won't be able
to expose any pad (there are no tracks) so we can't post anything but
an error on the bus, as:
- it can't send EOS downstream, it has no pad,
- posting an EOS message will be useless as PAUSED state can't be
reached and there is no sink in the pipeline meaning GstBin will
simply ignore it
The approach here is to to add details to the ERROR message with a
`redirect-location` field which elements like playbin handle and use right
away.
[0]: http://movietrailers.apple.com/movies/paramount/terminator-dark-fate/terminator-dark-fate-trailer-2_480p.mov
Olivier Crête [Thu, 26 Sep 2019 22:39:48 +0000 (18:39 -0400)]
rtpjitterbuffer: Cancel timers instead of just unlocking loop thread
When the queue is full (and adding more packets would risk a seqnum
roll-over), the best approach is to just start pushing out packets
from the other side. Just pushing out the packets results in the
timers being left hanging with old seqnums, so it's safer to just
execute them immediately in this case. It does limit the timer space
to the time it takes to receiver about 32k packets, but without
extended sequence number, this is the best RTP can do.
This also results in the test no longer needed to have timeouts or
timers as pushing packets in drives everything.
Fixes #619
Nicolas Dufresne [Fri, 27 Sep 2019 18:04:28 +0000 (14:04 -0400)]
rtpjitterbuffer: Optimize offset update
As we are applying the same offset over all timers, there timer
ordering won't change, so we can safely skip time-reordering.
Nicolas Dufresne [Fri, 27 Sep 2019 20:21:22 +0000 (16:21 -0400)]
rtptimerqueue: Optimize reschedule optations
This basically add ability to choose between inserting from head, tail
or in-place in order to try and minimize the distance to walk through in
the timer queue. This removes an overhead we had seen on high drop rate.
Nicolas Dufresne [Fri, 27 Sep 2019 18:04:03 +0000 (14:04 -0400)]
rtpjitterbuffer: Fix a typo in comment
Nicolas Dufresne [Tue, 2 Jul 2019 19:52:25 +0000 (15:52 -0400)]
rtpjitterbuffer: Don't use stats timer on the timers queue
The timer passed to update_timers may be from the stats timer. At the
moment, we could endup rescheduling (reusing) that timer onto the normal
timer queue, unschedul it as if it was from the normal timer queue or
duplicate it into the stats timer queue again. This was protected before
as the with the fact the stats timer didn't have a valid idx.
Nicolas Dufresne [Fri, 21 Jun 2019 18:08:26 +0000 (14:08 -0400)]
rtpjitterbuffer: Update timers on ts-offset changes
As the offset is already applied now, we need to update and reschedule
all timers each time the offset is changed. I'm not sure who expect this
to be retro-actively applied, but there was a unit test for it.
Nicolas Dufresne [Thu, 20 Jun 2019 19:59:48 +0000 (15:59 -0400)]
rtpjitterbuffer: No need to wake the timer thread on head changes
If the jitterbuffer head change, there is no need to systematically
wakeup the timer thread. The timer thread will be waken up on if
an earlier timeout has been pushed. This prevent some more spurious
wakeup when the system is loaded. As a side effect, cranking the clock
may set the clock at an earlier position.
Nicolas Dufresne [Tue, 18 Jun 2019 23:07:29 +0000 (19:07 -0400)]
rtpjittterbuffer: Port timers array to RtpTimerQueue
In this patch we now make use of the new RtpTimerQueue instead of the
old GArray. This required a lot of changes all over the place, some of
the important changes are that `timer->timeout` is no longer a PTS but
the actual timeout. This was required to get the RtpTimerQueue sorting
right. The applied offset is saved as `timer->offset`, this allow
retreiving back the PTS when needed.
The clockid updates only happens once per incoming packet. If the
currently schedule timer is before the earliest timer in the queue, we
no longer wakeup the thread. This way, if other timers get setup in the
meantime, this will reduce the number of wakup.
The timer loop code has been mostly rewritten, though the behaviour of
running the lost timers first has been kept (even though there is no
test to show what would be the side effect of doing this differently).
Fixes #608
Nicolas Dufresne [Fri, 14 Jun 2019 18:29:36 +0000 (14:29 -0400)]
rtpjittterbuffer: Port from TimerQueue to RtpTimerQueue
Nicolas Dufresne [Thu, 13 Jun 2019 21:08:31 +0000 (17:08 -0400)]
rtpjitterbuffer: Port use the new RtpTimer structure
First iteration toward porting to the new timer queue.
Nicolas Dufresne [Wed, 12 Jun 2019 13:59:31 +0000 (09:59 -0400)]
rtptimerqueue: Consolidate a data structure for timers
Implement a single timer queue for all timers. The goal is to always use
ordered queues for storing timers. This way, extracting timers for
execution becomes O(1). This also allow separating the clock wait
scheduling from the timer itself and ensure that we only wake up the
timer thread when strictly needed.
The knew data structure is still O(n) on insertions and reschedule,
but we now use proximity optimization so that normal cases should be
really fast. The GList structure is also embeded intot he RtpTimer
structure to reduce the number of allocations.
Nicolas Dufresne [Mon, 10 Jun 2019 20:46:05 +0000 (16:46 -0400)]
tests: jitterbuffer: Demacroify some helpers
There is no reason for these to be macros anymore. This makes the
test helper much more readable.
Nicolas Dufresne [Thu, 6 Jun 2019 18:44:27 +0000 (14:44 -0400)]
rtpjitterbuffer: Move item structure outside of the element
This moves the RtpJitterBufferStructure type, alloc, free into
rtpjitterbuffer.c/h implementation. jitterbuffer.c strictly rely on
the fact this structure is compatible with GList, and so it make more
sense to keep encapsulate it. Also, anything that could possibly
reduce the amount of code in the element is a win.
In order to support that move, a function pointer to free the data
was added. This also allow making the free function option when
flushing the jitterbuffer.
Nicolas Dufresne [Thu, 6 Jun 2019 17:09:29 +0000 (13:09 -0400)]
rtpjitterbuffer: Constify timer pointers where possible
This helps understanding which function modify the Timerdata
and which one does not. This is not always obvious from thelper
name considering recalculate_timer() does not.
Philipp Zabel [Fri, 27 Sep 2019 06:46:22 +0000 (08:46 +0200)]
v4l2: Add MPEG-2 profile and level support
Add support for V4L2 MPEG-2 decoders reporting supported profiles and
levels.
Philipp Zabel [Mon, 23 Sep 2019 12:34:20 +0000 (14:34 +0200)]
v4l2object: add support for ABGR, xBGR, RGBA, and RGBx formats
Map them to the new V4L2_PIX_FMT_{BGRA32,BGRX32,RGBA32,RGBX32} pixel
formats.
Philipp Zabel [Mon, 23 Sep 2019 12:10:15 +0000 (14:10 +0200)]
v4l2: update kernel headers to latest from media tree
Update to the latest installed headers (output of make headers_install)
from the media tree, keeping the slight modifications to the includes.
This includes typo fixes in enum v4l2_mpeg_video_multi_slice_mode,
MPEG-2 level and profile enums, new FWHT and H.264 Qp controls, new
RGB(A) formats, and new continuous bytestream and dynamic resolution
format flags.
Mathieu Duponchelle [Tue, 19 Dec 2017 17:23:16 +0000 (18:23 +0100)]
rtpbin: add request-jitterbuffer signal
This can be used to pass the threadsharing jitterbuffer from
gst-plugins-rs for example.
Matthew Waters [Mon, 23 Sep 2019 08:46:16 +0000 (18:46 +1000)]
build: fix werror build with newer gcc
In file included from ../../../../dist/linux_x86_64/include/gstreamer-1.0/gst/gst.h:55,
from ../../../../dist/linux_x86_64/include/gstreamer-1.0/gst/tag/tag.h:25,
from ../gst/isomp4/qtdemux.c:56:
In function ‘qtdemux_inspect_transformation_matrix’,
inlined from ‘qtdemux_parse_trak’ at ../gst/isomp4/qtdemux.c:10676:5,
inlined from ‘qtdemux_parse_tree’ at ../gst/isomp4/qtdemux.c:14210:5:
../../../../dist/linux_x86_64/include/gstreamer-1.0/gst/gstinfo.h:645:5: error: ‘%s’ directive argument is null [-Werror=format-overflow=]
645 | gst_debug_log ((cat), (level), __FILE__, GST_FUNCTION, __LINE__, \
| ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
646 | (GObject *) (object), __VA_ARGS__); \
| ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
../../../../dist/linux_x86_64/include/gstreamer-1.0/gst/gstinfo.h:1062:35: note: in expansion of macro ‘GST_CAT_LEVEL_LOG’
1062 | #define GST_DEBUG_OBJECT(obj,...) GST_CAT_LEVEL_LOG (GST_CAT_DEFAULT, GST_LEVEL_DEBUG, obj, __VA_ARGS__)
| ^~~~~~~~~~~~~~~~~
../gst/isomp4/qtdemux.c:10294:5: note: in expansion of macro ‘GST_DEBUG_OBJECT’
10294 | GST_DEBUG_OBJECT (qtdemux, "Transformation matrix rotation %s",
| ^~~~~~~~~~~~~~~~
../gst/isomp4/qtdemux.c: In function ‘qtdemux_parse_tree’:
../gst/isomp4/qtdemux.c:10294:64: note: format string is defined here
10294 | GST_DEBUG_OBJECT (qtdemux, "Transformation matrix rotation %s",
| ^~
Sebastian Dröge [Wed, 18 Sep 2019 15:31:27 +0000 (18:31 +0300)]
qtmux: Use the new helper functions for mapping the colr atom values to colorimetry
Sebastian Dröge [Wed, 18 Sep 2019 15:29:27 +0000 (18:29 +0300)]
qtdemux: Use the new helper functions for mapping the colr atom values to colorimetry
Mathieu Duponchelle [Tue, 10 Sep 2019 20:44:20 +0000 (22:44 +0200)]
docs: update plugin cache
Mathieu Duponchelle [Tue, 10 Sep 2019 20:43:49 +0000 (22:43 +0200)]
smpte: don't register transition types twice
Doug Nazar [Mon, 9 Sep 2019 00:43:17 +0000 (20:43 -0400)]
alpha: Fix one_over_kc calculation
On arm/aarch64, converting from float directly to unsigned int uses
a different opcode and negative numbers result in 0. Cast to
signed int first.
Jan Schmidt [Wed, 31 Jul 2019 06:17:36 +0000 (16:17 +1000)]
splitmux: Add muxer-pad-map property
Add a property which explicitly maps splitmuxsink pads to the
muxer pads they should connect to, overriding the implicit logic
that tries to match pads but yields arbitrary names.
Jan Schmidt [Thu, 25 Jul 2019 16:21:59 +0000 (02:21 +1000)]
splitmuxsink: In async mode, retain previous muxer pad names.
When running in async-finalize mode, request new pads from the muxer
using the same names as old pads, instead of letting the muxer assign
new ones based on the pad template name.
Jan Schmidt [Thu, 25 Jul 2019 16:13:31 +0000 (02:13 +1000)]
splitmuxsink: Mark split-* signals as action signals. Doc fixes.
Add the G_SIGNAL_ACTION flag to the split-* signals on splitmuxsink,
and make some improvements to their docstrings
Seungha Yang [Thu, 29 Aug 2019 13:11:02 +0000 (22:11 +0900)]
qtmux: Fix incompatible type warning with MSVC
gstqtmux.c(5582): warning C4133: 'function':
incompatible types - from 'GstVideoMultiviewFlags *' to 'guint *'
Mathieu Duponchelle [Mon, 2 Sep 2019 14:33:05 +0000 (16:33 +0200)]
rtspsrc: fix git diff indentation
Mathieu Duponchelle [Fri, 30 Aug 2019 20:42:58 +0000 (22:42 +0200)]
rtspsrc: normalize variable to boolean
Mathieu Duponchelle [Thu, 29 Aug 2019 19:29:34 +0000 (21:29 +0200)]
rtspsrc: clip output segment on accurate seeks
The output segment is only used in ONVIF mode.
The previous behaviour was to output a segment computed from
the Range response sent by the server.
In ONVIF mode, servers will start serving from the appropriate
synchronization point (keyframe), and the Range in response will
start at that position.
This means rtspsrc can now perform truly accurate seeks in that
mode, by clipping the output segment to the values requested in
the seek. The decoder will then discard out of segment buffers
and playback will start without artefacts at the exact requested
position, similar to the behaviour of a demuxer when an accurate
seek is requested.
Matthew Waters [Fri, 30 Aug 2019 04:00:26 +0000 (14:00 +1000)]
vpx: fix macos werror build
../ext/vpx/gstvpxenc.c:1723:49: error: format specifies type 'long' but the argument has type 'vpx_codec_pts_t' (aka 'long long') [-Werror,-Wformat]
", gst frame pts: %" G_GINT64_FORMAT, pkt->data.frame.pts, pts);
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~
/Library/Frameworks/GStreamer.framework/Versions/1.0/include/gstreamer-1.0/gst/gstinfo.h:1065:96: note: expanded from macro 'GST_TRACE_OBJECT'
#define GST_TRACE_OBJECT(obj,...) GST_CAT_LEVEL_LOG (GST_CAT_DEFAULT, GST_LEVEL_TRACE, obj, __VA_ARGS__)
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~
/Library/Frameworks/GStreamer.framework/Versions/1.0/include/gstreamer-1.0/gst/gstinfo.h:646:31: note: expanded from macro 'GST_CAT_LEVEL_LOG'
(GObject *) (object), __VA_ARGS__); \
^~~~~~~~~~~
../ext/vpx/gstvpxenc.c:1723:70: error: format specifies type 'long' but the argument has type 'vpx_codec_pts_t' (aka 'long long') [-Werror,-Wformat]
", gst frame pts: %" G_GINT64_FORMAT, pkt->data.frame.pts, pts);
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~
/Library/Frameworks/GStreamer.framework/Versions/1.0/include/gstreamer-1.0/gst/gstinfo.h:1065:96: note: expanded from macro 'GST_TRACE_OBJECT'
#define GST_TRACE_OBJECT(obj,...) GST_CAT_LEVEL_LOG (GST_CAT_DEFAULT, GST_LEVEL_TRACE, obj, __VA_ARGS__)
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~
/Library/Frameworks/GStreamer.framework/Versions/1.0/include/gstreamer-1.0/gst/gstinfo.h:646:31: note: expanded from macro 'GST_CAT_LEVEL_LOG'
(GObject *) (object), __VA_ARGS__); \
^~~~~~~~~~~
Matthew Waters [Fri, 30 Aug 2019 03:37:59 +0000 (13:37 +1000)]
osxvideosink: call superclass in reshape
Fixes macos werror build
../sys/osxvideo/cocoawindow.m:437:1: error: method possibly missing a [super reshape] call [-Werror,-Wobjc-missing-super-calls]
}
^
Mathieu Duponchelle [Fri, 23 Aug 2019 16:56:01 +0000 (18:56 +0200)]
docstrings: port ulinks to markdown links
Tim-Philipp Müller [Sat, 10 Aug 2019 11:33:46 +0000 (12:33 +0100)]
replaygain: fix up doc links to defunct replaygain.org website
Fixes #624
Seungha Yang [Wed, 21 Aug 2019 15:18:51 +0000 (00:18 +0900)]
souphttpsrc: Fix incompatible type build warning
gstsouphttpsrc.c(2191): warning C4133:
'=': incompatible types - from 'guint (__cdecl *)(GType)' to 'GstURIType (__cdecl *)(GType)'
Tim-Philipp Müller [Mon, 19 Aug 2019 10:07:56 +0000 (11:07 +0100)]
vpx: bump libvpx requirement to 1.5.0
Was released in Nov 2015.
Tim-Philipp Müller [Mon, 19 Aug 2019 10:03:00 +0000 (11:03 +0100)]
vpx: avoid confusing meson configure output when checking for vpx versions
Used to print:
|Run-time dependency vpx found: YES 1.7.0
|Message: libvpx provides VP8 encoder interface (vpx_codec_vp8_cx_algo)
|Message: libvpx provides VP8 decoder interface (vpx_codec_vp8_dx_algo)
|Message: libvpx provides VP9 encoder interface (vpx_codec_vp9_cx_algo)
|Message: libvpx provides VP9 decoder interface (vpx_codec_vp9_dx_algo)
|Dependency vpx found: YES (cached)
|Dependency vpx found: NO found '1.7.0' but need: '>=1.8.0'
|Run-time dependency vpx found: NO (tried pkgconfig and cmake)
We can check the version of the found dep in a way that
doesn't produce this confusing output.
Amr Mahdi [Mon, 19 Aug 2019 07:30:17 +0000 (07:30 +0000)]
wavparse: Fix push mode ignoring audio with a size smaller than segment buffer
In push mode (streaming), if the audio size is smaller than segment buffer size, it would be ignored.
This happens because when the plugin receives an EOS signal while a single audio chunk that is less than the segment buffer size is buffered, it does not
flush this chunk. The fix is to flush the data chunk when it receives an EOS signal and has a single (first) chunk buffered.
How to reproduce:
1. Run gst-launch with tcp source
```
gst-launch-1.0 tcpserversrc port=3000 ! wavparse ignore-length=0 ! audioconvert ! filesink location=bug.wav
```
2. Send a wav file with unspecified data chunk length (0). Attached a test file
```
cat test.wav | nc localhost 3000
```
3. Compare the length of the source file and output file
```
ls -l test.wav bug.wav
-rw-rw-r-- 1 amr amr 0 Aug 15 11:07 bug.wav
-rwxrwxr-x 1 amr amr 3564 Aug 15 11:06 test.wav
```
The expected length of the result of the gst-lauch pipeline should be the same as the test file minus the headers (44), which is ```3564 - 44 = 3520``` but the actual output length is ```0```
After the fix:
```
ls -l test.wav fix.wav
-rw-rw-r-- 1 amr amr 3520 Aug 15 11:09 fix.wav
-rwxrwxr-x 1 amr amr 3564 Aug 15 11:06 test.wav
```
Sebastian Dröge [Mon, 12 Aug 2019 15:56:34 +0000 (18:56 +0300)]
rtpvp8depay: Add property for waiting until the next keyframe after packet loss
If VP8 is not encoded with error resilience enabled then any packet loss
causes very bad artefacts when decoding and waiting for the next
keyframe instead improves user experience considerably.
Nicolas Dufresne [Wed, 7 Aug 2019 02:27:40 +0000 (22:27 -0400)]
v4l2: Fix type compatibility issue with glibc 2.30
From now on, we will use linux/types.h on Linux, and use typedef of the
various flavour of BSD.
Fixes #635
Mathieu Duponchelle [Wed, 7 Aug 2019 22:29:25 +0000 (18:29 -0400)]
valgrind: suppress Cond error coming from gnutls
taken from https://salsa.debian.org/debian/flatpak/commit/
fb4a8dda211c4bc036781f2b0d706266e95ce068
Mart Raudsepp [Wed, 10 Jul 2019 19:07:05 +0000 (22:07 +0300)]
matroska: Provide audio lead-in for some lossy formats
Various audio formats require an audio lead-in to decode it properly.
Most parsers would take care of it, but when a container like matroska is
involved, the demuxer handles the seeking and without its own lead-in
handling would never even pass the lead-in data to the parser.
This commit provides an initial implementation of that for audio/mpeg,
audio/x-ac3 and audio/x-eac3 by calculating the worst case lead-in time
needed from known samplerate, potential lead-in frames need and the
maximum blocksize possible for the format (as we don't parse that out
exactly in matroskademux) and seeking that much earlier in case of
accurate seeks. This is especially important for NLE use-cases with GES.
If accurate seeking to a position that happens to have a video keyframe,
it'll go back to the previous keyframe than needed, but with typical
video files that's the best we can do anyway without falling back to
scanning the clusters, as typically only keyframes are indexed in
Cueing Data.
If the media doesn't have a CUE, then we bisect for the cluster to seek
to with the same modified time as well in case of accurate seeking,
ensuring sufficient lead-in. This code path is typically hit only with
(suboptimal) audio-only matroska files, e.g. when created with ffmpeg,
which doesn't add a CUE for audio-only mkv muxing.
Antonio Ospite [Mon, 11 Mar 2019 14:15:12 +0000 (15:15 +0100)]
test: rtpbin_buffer_list: add a test for invalid packets in buffer list
Upstream elements can send all kinds of data in a buffer list, so cover
the case of an invalid RTP packet mixed with valid RTP packets.
Antonio Ospite [Mon, 11 Mar 2019 14:12:03 +0000 (15:12 +0100)]
test: rtpbin_buffer_list: add a test for multiplexed RTP and RTCP
RTP and RTCP packets can be muxed together on the same channel (see
RFC5761) and can arrive in the same buffer list.
The GStreamer rtpsession element support RFC5761, so add a test to cover
this case for buffer lists too.
Antonio Ospite [Mon, 11 Mar 2019 14:09:27 +0000 (15:09 +0100)]
test: rtpbin_buffer_list: add a test for different timestamps in buffer list
Buffers with different timestamps (e.g. packets belonging to different
frames) can arrive together in the same buffer list,
Add a test to cover this case.
Antonio Ospite [Tue, 12 Mar 2019 14:24:26 +0000 (15:24 +0100)]
test: rtpbin_buffer_list: add function to check timestamp
Antonio Ospite [Tue, 2 Apr 2019 16:02:19 +0000 (18:02 +0200)]
test: rtpbin_buffer_list: add a test about reordered or duplicated seqnums
Antonio Ospite [Tue, 2 Apr 2019 15:52:54 +0000 (17:52 +0200)]
test: rtpbin_buffer_list: add a test for lange jump in seqnums with recovery
Antonio Ospite [Tue, 2 Apr 2019 15:50:35 +0000 (17:50 +0200)]
test: rtpbin_buffer_list: add a test for large jump in sequence numbers
Antonio Ospite [Tue, 2 Apr 2019 15:47:27 +0000 (17:47 +0200)]
test: rtpbin_buffer_list: add a test for wrapping sequence numbers
Antonio Ospite [Mon, 11 Mar 2019 14:07:08 +0000 (15:07 +0100)]
test: rtpbin_buffer_list: add a test for permissible gap in sequence numbers
Antonio Ospite [Mon, 11 Mar 2019 14:03:31 +0000 (15:03 +0100)]
test: rtpbin_buffer_list: add a test for the case of failed probation
When a new source fails to pass the probation period (i.e. new packets
have non-consecutive sequence numbers), then no buffer shall be pushed
downstream. Add a test to validate this case.
Antonio Ospite [Tue, 12 Mar 2019 14:23:16 +0000 (15:23 +0100)]
test: rtpbin_buffer_list: add function to check sequence number
Antonio Ospite [Wed, 3 Apr 2019 12:46:35 +0000 (14:46 +0200)]
test: rtpbin_buffer_list: add test to verify that receiving stats are correct
Add a test to verify that stats about received packets are correct when
using buffer lists in the rtpsession receive path.
Split get_session_source_stats() in two to be able to get stats from
a GstRtpSession object directly.
Antonio Ospite [Wed, 27 Feb 2019 15:17:57 +0000 (16:17 +0100)]
test: rtpbin_buffer_list: add a test for buffer lists on the recv path
Antonio Ospite [Wed, 27 Feb 2019 16:03:44 +0000 (17:03 +0100)]
rtpsession: add support for buffer lists on the recv path
The send path in rtpsession processes the buffer list along the way,
sharing info and stats between packets in the same list, because it
assumes that all packets in a buffer list are from the same frame.
However, in the receiving path packets can arrive in all sorts of
arrangements:
- different sources,
- different frames (different timestamps),
- different types (multiplexed RTP and RTCP, invalid RTP packets).
so a more general approach should be used to correctly support buffer
lists in the receive path.
It turns out that it's simpler and more robust to process buffers
individually inside the rtpsession element even if they come in a buffer
list, and then reassemble a new buffer list when pushing the buffers
downstream.
This avoids complicating the existing code to make all functions
buffer-list-aware with the risk of introducing regressions,
To support buffer lists in the receive path and reduce the "push
overhead" in the pipeline, a new private field named processed_list is
added to GstRtpSessionPrivate, it is set in the chain_list handler and
used in the process_rtp callback; this is to achieve the following:
- iterate over the incoming buffer list;
- process the packets one by one;
- add the valid ones to a new buffer list;
- push the new buffer list downstream.
The processed_list field is reset before pushing a buffer list to be on
the safe side in case a single buffer was to be pushed by upstream
at some later point.
NOTE:
The proposed modifications do not change the behavior of the send path.
The process_rtp callback is called in rtpsource.c by the push_rtp
callback (via source_push_rtp) only when the source is not internal.
So even though push_rtp is also called in the send path, it won't end up
using process_rtp in this case because the source would be internal in
the send path.
The reasoning from above may suggest a future refactoring: push_rtp
might be split to better differentiate the send and receive path.
Doug Nazar [Wed, 7 Aug 2019 14:01:34 +0000 (10:01 -0400)]
matroska: Handle interlaced field order
Amr Mahdi [Wed, 7 Aug 2019 12:09:46 +0000 (12:09 +0000)]
wavparse: Fix ignoring of last chunk in push mode
In push mode (streaming), if the last audio payload chunk is less than the segment rate buffer size, it would be ignored since the plugin waits until it has at least segment rate bufer size of audio.
The fix is to introduce a flushing flag that indicates that no more audio will be available so that the plugin can recognize this condition and flush the data is has even if it is less
than the desired segment rate buffer size.
Robert Tiemann [Tue, 6 Aug 2019 14:27:37 +0000 (16:27 +0200)]
souphttpsrc: Log any error returned by soup_session_send()
luke.lin [Wed, 7 Aug 2019 02:42:21 +0000 (11:42 +0900)]
qtdemux: enlarge the maximal atom size
For 8K content, frame size is over 25MB, and cause the negotiation failure.
Enlarge the limitation of QTDEMUX_MAX_ATOM_SIZE to 32MB.
Mathieu Duponchelle [Sat, 27 Jul 2019 02:05:01 +0000 (04:05 +0200)]
rtspsrc: expose and implement is-live property
This is useful to support the ONVIF case: when is-live is set to
FALSE and onvif-rate-control is no, the client can control the
rate of delivery and arrange for the server to block and still
keep sending when unblocked, without requiring back and forth
PAUSE / PLAY requests. This enables, amongst other things, fast
frame stepping on the client side.
When is-live is FALSE, we don't use a manager at all. This case
was actually already pretty well handled by the current code. The
standard manager, rtpbin, is simply no longer needed in this case.
Applications can instantiate a downloadbuffer after rtspsrc if
needed.
Mathieu Duponchelle [Sat, 27 Jul 2019 02:03:44 +0000 (04:03 +0200)]
rtspsrc: reset_time when flush stopping
Mathieu Duponchelle [Fri, 12 Jul 2019 20:33:08 +0000 (22:33 +0200)]
rtspsrc: expose and implement onvif-mode property
Refactor the code for parsing and generating the Range, taking
advantage of existing API in GstRtspTimeRange.
Only use the TCP protocol in that mode, as per the specification.
Generate an accurate segment when in that mode, and signal to the
depayloader that it should not generate its own segment, through
the "onvif-mode" field in the caps, see
<https://gitlab.freedesktop.org/gstreamer/gst-plugins-base/merge_requests/328>
for more information.
Translate trickmode seek flags to their ONVIF representation
Expose an onvif-rate-control property
Mathieu Duponchelle [Mon, 1 Jul 2019 18:38:20 +0000 (20:38 +0200)]
rtspsrc: improve handling of rate in seeks
Mathieu Duponchelle [Wed, 31 Jul 2019 19:55:16 +0000 (21:55 +0200)]
rtpfunnel: forward correct segment when switching pad
Forwarding a single segment event from the pad that first gets
chained is incorrect: when that first event was sent by an element
such as x264enc, with its offset start, we end pushing out of segment
buffers for the other pad(s).
Instead, everytime the active pad changes, forward the appropriate
segment event.
Fixes https://gitlab.freedesktop.org/gstreamer/gst-plugins-bad/issues/1028
Sebastian Dröge [Mon, 5 Aug 2019 16:35:36 +0000 (19:35 +0300)]
rtspsrc: Use new GstRTSPMessage API to set message body from a buffer directly
Antonio Ospite [Thu, 4 Apr 2019 11:17:34 +0000 (13:17 +0200)]
rtpsource: fix receiver source stats to consider previously queued packets
When it is not clear yet if a packet relative to a source should be
pushed, the packet is put into a queue, this happens in two cases:
- the source is still in probation;
- there is a large jump in seqnum, and it is not clear what
the cause is, future packets will help making a guess.
In either case stats about received packets are not updated at all; and
even if they were, when init_seq() is called it resets all receiver
stats, effectively loosing any possible stat about previously received
packets.
Fix this by taking into account the queued packets and update the stats
when calling init_seq().
Antonio Ospite [Tue, 9 Apr 2019 08:46:39 +0000 (10:46 +0200)]
rtpsource: clarify meaning of the octets-sent and octets-received stats
The octets-send and octets-received stats count the payload bytes
excluding RTP and lower level headers, clarify that in the
documentation.
Antonio Ospite [Thu, 4 Apr 2019 11:16:36 +0000 (13:16 +0200)]
rtpsource: expose field bytes_received in RTPSourceStats
Since commit
c971d1a9a (rtpsource: refactor bitrate estimation,
2010-03-02) bytes_received filed in RTPSourceStats is set but then never
used again, expose it so that it can be used by user code to verify how
many bytes have been received.
Antonio Ospite [Fri, 21 Jun 2019 15:46:36 +0000 (17:46 +0200)]
rtpmanager: consider UDP and IP headers in bandwidth calculation
According to RFC3550 lower-level headers should be considered for
bandwidth calculation.
See https://tools.ietf.org/html/rfc3550#section-6.2 paragraph 4:
Bandwidth calculations for control and data traffic include
lower-layer transport and network protocols (e.g., UDP and IP) since
that is what the resource reservation system would need to know.
Fix the source data to accommodate that.
Assume UDPv4 over IP for now, this is a simplification but it's good
enough for now.
While at it define a constant and use that instead of a magic number.
NOTE: this change basically reverts the logic of commit
529f443a6
(rtpsource: use payload size to estimate bitrate, 2010-03-02)
Seungha Yang [Thu, 1 Aug 2019 06:02:23 +0000 (15:02 +0900)]
qtdemux: Use empty-array safe way to cleanup GPtrArray
Fix assertion fail
GLib-CRITICAL **: g_ptr_array_remove_range: assertion 'index_ < rarray->len' failed
Marc Leeman [Thu, 1 Aug 2019 14:28:04 +0000 (14:28 +0000)]
rtpmp4vpay: config-interval -1 send at idr
adjust/port from rtph264pay and allow sending the configuration data at
every IDR
The payloader was stripping the configuration data when the
config-interval was set to 0. The code was written in such a way !(a >
0) that it stripped the config when it was set at -1 (send config_data
as soon as possible).
This resulted in some MPEG4 streams where no GOP/VOP-I was detected to
be sent out without configuration.
Doug Nazar [Sat, 27 Jul 2019 18:21:34 +0000 (14:21 -0400)]
matroskademux: Ignore crc32 element while peeking at cluster.
Guillaume Desmottes [Thu, 25 Jul 2019 15:51:26 +0000 (21:21 +0530)]
gtkglsink: fix crash when widget is resized after element destruction
Prevent _size_changed_cb() to be called after gtkglsink has been finalized.
Fix #632
Mathieu Duponchelle [Fri, 26 Jul 2019 00:45:51 +0000 (02:45 +0200)]
qtdemux: fix reverse playback EOS conditions
In reverse playback, we don't want to rely on the position of the current
keyframe to decide a stream is EOS: the last GOP we push will start with
a keyframe, which position is likely to be outside of the segment.
Instead, let the normal seek_to_previous_keyframe mechanism do its job,
it works just fine.
Mathieu Duponchelle [Mon, 22 Jul 2019 23:42:02 +0000 (01:42 +0200)]
qtdemux: fix key unit seek corner case
If a key unit seek is performed with a time position that matches
the offset of a keyframe, but not its actual PTS, we need to
adjust the segment nevertheless.
For example consider the following case:
* stream starts with a keyframe at 0 nanosecond, lasting 40 milliseconds
* user does a key unit seek at 20 milliseconds
* we don't adjust the segment as the time position is "over" a keyframe
* we push a segment that starts at 20 milliseconds
* we push a buffer with PTS == 0
* an element downstream (eg rtponviftimestamp) tries to calculate the
stream time of the buffer, fails to do so and drops it
Sebastian Dröge [Thu, 25 Jul 2019 12:08:54 +0000 (15:08 +0300)]
jpegdec: Don't dereference NULL input state if we have no caps in TIME segments
Simply assume that the JPEG frame is not going to be interlaced instead
of crashing.
Knut Andre Tidemann [Mon, 22 Jul 2019 08:28:50 +0000 (10:28 +0200)]
rtp: opuspay: fix memory leak in gst_rtp_opus_pay_setcaps.
The src caps were never dereferenced, causing a memory leak.
Mathieu Duponchelle [Fri, 12 Jul 2019 18:51:44 +0000 (20:51 +0200)]
qtdemux: implement support for trickmode interval
When the seek event contains a (newly-added) trickmode interval,
and TRICKMODE_KEY_UNITS was requested, only let through keyframes
separated with the required interval
Nirbheek Chauhan [Wed, 17 Jul 2019 13:42:19 +0000 (19:12 +0530)]
meson: Don't generate doc cache when no plugins are enabled
Fixes gst-build with -Dauto-features=disabled
Seungha Yang [Mon, 15 Jul 2019 14:24:05 +0000 (23:24 +0900)]
matroska: Port to color_{primaries,transfer,matrix}_to_iso
... and remove duplicated code.
Jan Schmidt [Sat, 25 May 2019 12:08:05 +0000 (22:08 +1000)]
splitmuxsink: add the ability to mux auxilliary video streams
The primary video stream is used to select fragment cut points
at keyframe boundaries. Auxilliary video streams may be
broken up at any packet - so fragments may not start with a keyframe
for those streams.
Jan Schmidt [Tue, 11 Jun 2019 13:17:30 +0000 (23:17 +1000)]
splitmuxsrc: Add video_%d pad template.
splitmuxsrc actually supports multiple video pads. Make that clear,
especially since it was already creating pads named "video_0" etc.
Mathieu Duponchelle [Tue, 9 Jul 2019 21:12:45 +0000 (23:12 +0200)]
qtdemux: fix conditions for end of segment in reverse playback
The time_position field of the stream is offset by the media_start
of its QtDemuxSegment compared to the start of the GstSegment of
the demuxer, take it into account when making comparisons.
Seungha Yang [Tue, 9 Jul 2019 14:06:12 +0000 (23:06 +0900)]
matroskademux: Fix mismatched transfer characteristic
TransferCharacteristics(18) should be ARIB STD-B67 (HLG)
See https://www.webmproject.org/docs/container/#TransferCharacteristics
Also map more color primaries indexes which have been handled by matroska-mux.
Seungha Yang [Tue, 9 Jul 2019 10:49:57 +0000 (19:49 +0900)]
v4l2: Remove misleading comments
gst_pad_template_new() does not take ownership of the caps
Olivier Crête [Wed, 23 Jan 2019 23:27:06 +0000 (18:27 -0500)]
rtp session: Add test for collision loopback detection
Ignore further collisions if the remote SSRC change with ours, it's
probably because someone is sending us back the packets we send out.
Olivier Crête [Wed, 23 Jan 2019 23:14:23 +0000 (18:14 -0500)]
rtpsession tests: Add test for third-party collision detection
Add tests to validate the code that ignores the same packets coming
from 2 different sources (an third-party collision).
Olivier Crête [Wed, 23 Jan 2019 22:19:15 +0000 (17:19 -0500)]
rtpsession: Add test for collision on incoming packets
Make sure that the collision is properly detected on incoming packets.
Olivier Crête [Wed, 23 Jan 2019 22:09:27 +0000 (17:09 -0500)]
rtpsession test: Verify that on-ssrc-collision message is emitted
Olivier Crête [Wed, 23 Jan 2019 21:58:22 +0000 (16:58 -0500)]
rtpsession: Also send conflict event when sending packet
If the conflict is detected when sending a packet, then also send an
upstream event to tell the source to reconfigure itself.
Also ignore the collision if we see more than one collision from the same
remote source to avoid problems on loops.
Song Bing [Mon, 15 Apr 2019 23:32:03 +0000 (16:32 -0700)]
v4l2transform: set right buffer count.
Set right buffer count to avoid one buffer.
Olivier Crête [Thu, 27 Jun 2019 23:47:41 +0000 (19:47 -0400)]
rtph265pay: Also immediately send packet if it is a suffix NAL
Immediately send packet if it contains any suffix NAL, this is required
in case they come after the VCL nal to not have to wait until the next frame.
Olivier Crête [Thu, 27 Jun 2019 23:46:01 +0000 (19:46 -0400)]
rtph265pay: Don't drop second byte of NAL header
At least keep 2 bytes per NAL even if the second one is 0, the
second byte of the NAL header could very well be 0.
Olivier Crête [Wed, 26 Jun 2019 20:42:44 +0000 (16:42 -0400)]
rtph26xpay: Avoid print when there is no bundle at end of packet
Olivier Crête [Wed, 26 Jun 2019 20:25:01 +0000 (16:25 -0400)]
rtph26xpay: Wait until there is a VCL or suffix NAL to send
With unit tests.
Olivier Crête [Wed, 19 Jun 2019 21:16:03 +0000 (17:16 -0400)]
rtph265pay test: Add unit tests for aggregation