Skip to content
Snippets Groups Projects
Commit 006e7a34 authored by Robert Krakora's avatar Robert Krakora Committed by Tim-Philipp Müller
Browse files

uvch264src: don't error out on incomplete aux data segment

It appears that the Logitech C920 sometimes drops the next
to last segment of RAW aux data contained within the MJPEG
container.  H264 data that is multiplexed with in the same
container does not appear to be affected.  This appears to
be a bug in the Logitech C920 firmware and uvch264src should
not error out in this case.

Sometimes it can take 24 hours of continuous streaming for
the problem to occur, but sometimes it takes only a couple
of hours.

https://bugzilla.gnome.org/show_bug.cgi?id=706276
parent 7667b792
No related branches found
No related tags found
Loading
......@@ -481,6 +481,7 @@ gst_uvc_h264_mjpg_demux_chain (GstPad * pad,
guint last_offset;
guint i;
GstMapInfo info;
guint16 segment_size;
self = GST_UVC_H264_MJPG_DEMUX (GST_PAD_PARENT (pad));
......@@ -496,7 +497,6 @@ gst_uvc_h264_mjpg_demux_chain (GstPad * pad,
for (i = 0; i < info.size - 1; i++) {
/* Check for APP4 (0xe4) marker in the jpeg */
if (info.data[i] == 0xff && info.data[i + 1] == 0xe4) {
guint16 segment_size;
/* Sanity check sizes and get segment size */
if (i + 4 >= info.size) {
......@@ -686,9 +686,10 @@ gst_uvc_h264_mjpg_demux_chain (GstPad * pad,
}
if (aux_buf != NULL) {
GST_ELEMENT_ERROR (self, STREAM, DEMUX,
("Incomplete auxiliary stream. %d bytes missing", aux_size), (NULL));
ret = GST_FLOW_ERROR;
GST_DEBUG_OBJECT (self, "Incomplete auxiliary stream: %d bytes missing, "
"%d segment size remaining -- missing segment, C920 bug?",
aux_size, segment_size);
ret = GST_FLOW_OK;
goto done;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment