- 11 Jun, 2016 1 commit
-
-
Sebastian Dröge authored
-
- 10 Jun, 2016 3 commits
-
-
Tim-Philipp Müller authored
-
Tim-Philipp Müller authored
Fixes parsing of "Thu May 11 15:57:46 2006 ". https://bugzilla.gnome.org/show_bug.cgi?id=767496
-
Aaron Boxer authored
This field is now required in the sink caps. https://bugzilla.gnome.org/show_bug.cgi?id=766236
-
- 09 Jun, 2016 1 commit
-
-
Fix unref assertion failure https://bugzilla.gnome.org/show_bug.cgi?id=767424
-
- 08 Jun, 2016 3 commits
-
-
Olivier Crête authored
With non-time segments, it now assumes that the arrival time of packets is not relevant and that only the RTP timestamp matter and it produces an output segment start at running time 0. https://bugzilla.gnome.org/show_bug.cgi?id=766438
-
Nicolas Dufresne authored
The heuristic to choose between packetise or not was changed to use the segment format. The problem is that this change is reading the segment during the caps event handling. The segment event will only be sent after. That prevented the decoder to go in packetize mode, and avoid useless parsing. https://bugzilla.gnome.org/show_bug.cgi?id=736252
-
Nicolas Dufresne authored
The heuristic to choose between packetise or not was change to use the segment format. The problem is that this change is reading the segment during the caps event handling. The segment event will only be sent after. That prevented the decoder to go in packetize mode, and avoid useless parsing. https://bugzilla.gnome.org/show_bug.cgi?id=736252
-
- 07 Jun, 2016 13 commits
-
-
Nicolas Dufresne authored
Instead of completely getting rid of the input buffer, copy the metadata, the flags and the timestamp into an empty buffer. This way the decoder base class can copy that information again to the output buffer. https://bugzilla.gnome.org/show_bug.cgi?id=758424
-
Nicolas Dufresne authored
-
Nicolas Dufresne authored
-
Nicolas Dufresne authored
This way one can easily ignore errors. Previously, error were always posted ont he bus. https://bugzilla.gnome.org/show_bug.cgi?id=766172
-
Nicolas Dufresne authored
This is to allow returning an error that can easily be sent as message to the application if the element needs it. Using this also allow ignoring errors. https://bugzilla.gnome.org/show_bug.cgi?id=766172
-
Nicolas Dufresne authored
v4l2src will renegotiate only if the format have changed. As of now, it's not possible to change the allocationw without resetting the camera. To avoid unwanted side effect, simply keep the old allocation if no renegotiation is taking place. This fixes assertion and possible failures in USERPTR or DMABUF import mode (when using downstream pools). https://bugzilla.gnome.org/show_bug.cgi?id=754042
-
Edward Hervey authored
Makes it easier to trace what's going on
-
Edward Hervey authored
That variable is only needed for a debug statement, move it there
-
Edward Hervey authored
No variables were added/removed. This was just a good excuse to: * Comment what most variables are used for (and when) * Order them in such a way as to show first the common variables used in all cases, followed by those only used in push-mode
-
Edward Hervey authored
Let's just remove it, been commented for 7+ years :)
-
Only if the decoder stop command fails, keep queueing empty buffers to signal end of stream as before. https://bugzilla.gnome.org/show_bug.cgi?id=733864
-
Sebastian Dröge authored
We shouldn't go through segment activation as we will only have a limited understanding of how the whole stream timeline looks like from the moof. We only know about the current fragment, while upstream knows about the whole stream. This fixes seeking in DASH streams, both for seeks after the current moof and for seeks into the current moof. The former would fail because the moof ends and we can't activate any segment, the latter would cause a segment that stops at the moof end, and no further fragments would be played because we end up being EOS. https://bugzilla.gnome.org/show_bug.cgi?id=767071
-
- 06 Jun, 2016 13 commits
-
-
Nicolas Dufresne authored
When we fixate for upstream, try to not introduce new fields when not needed. This was imported from videoconvert element.
-
* If outgoing format is unfixated, try to set it to input format. * Call gst_caps_fixate () at end of fixation routine https://bugzilla.gnome.org/show_bug.cgi?id=766719
-
Scalers may change width and height independently, allow to change pixel aspect ratio. https://bugzilla.gnome.org/show_bug.cgi?id=766712
-
To change pixel aspect ratio from DAR to PAR, the necessary scaling factor is DAR/PAR, not DAR*PAR. For good measure, add debug output similar to the fixed-width and fixed-height cases. https://bugzilla.gnome.org/show_bug.cgi?id=766711
-
Instead of relying on the default colorimetry chosen by gst_video_info_set_format(), set info.colorimetry from the values returned by G_FMT. This allows decoders to propagate their input colorimetry downstream. https://bugzilla.gnome.org/show_bug.cgi?id=766383
-
Move the extraction of colorimetry parameters from struct v4l2_format and the setting of the identity matrix for RGB formats into the function to avoid code duplication. https://bugzilla.gnome.org/show_bug.cgi?id=766383
-
gst_v4l2_probe_caps() returns the coded size, not the visible size. Subtract the known padding from probed caps with the coded size before using them as filter for caps negotiation with downstream elements. https://bugzilla.gnome.org/show_bug.cgi?id=766382
-
The gst_v4l2_object_acquire_format() function is used by v4l2videodec to obtain the currently set capture format. Since G_FMT returns the coded size, the visible size needs to be obtained from the compose rectangle in order to negotiate it with downstream elements. The G_CROP call hasn't worked on mem2mem capture queues for a long time. Instead use the G_SELECTION call to obtain the compose rectangle and only fall back to G_CROP for ancient kernels. https://bugzilla.gnome.org/show_bug.cgi?id=766381
-
On modern kernels, the G/S_FMT ioctls will always fail using V4L2_BUF_TYPE_VIDEO_OVERLAY with VFL_DIR_TX (e.g. real overlay out drivers) since this is not the intented use (rather rx, according to v4l2 API doc). Probably this is why the Video Output Overlay interface was created, so if the driver advertises it we might as well use. For old kernels (pre 2012) the old way might still work so keeping this for compatibility. https://bugzilla.gnome.org/show_bug.cgi?id=761165
-
Support for the updated V4L2_PIX_FMT_XRGB555 was added in commit 2538fee2 however, when setting the format for use in v4l2 ioctls, the old deprecated format is still used. Convert this to the new accepted format type, as the preferred format. https://bugzilla.gnome.org/show_bug.cgi?id=767300
-
Michael Olbrich authored
Without this some flags get lost in streaming mode. https://bugzilla.gnome.org/show_bug.cgi?id=767194
-
Sebastian Dröge authored
This reverts commit fdac3a7a. Was not supposed to be pushed but a local workaround for https://bugzilla.gnome.org/show_bug.cgi?id=693911#c13
-
-
- 03 Jun, 2016 6 commits
-
-
Sebastian Dröge authored
-
Sebastian Dröge authored
It would be leaked if no seek handler was currently set.
-
Sebastian Dröge authored
Previously the segment.time was wrong, and the position was not updated correctly, resulting in seeks in PUSH mode with upstream providing a BYTES segment to not work at all. https://bugzilla.gnome.org/show_bug.cgi?id=767157
-
-
Sebastian Dröge authored
dvdemux: Recalculate the frame offsets at the beginning of each BYTE segment and whenever upstream gives us a timestamp This fixes seeking in DV streams where upstream operates in PUSH mode with a TIME segment (e.g. avidemux). Without this, we would generate wrong durations and timestamps after a seek. https://bugzilla.gnome.org/show_bug.cgi?id=767157
-