summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTim-Philipp Müller <tim@centricular.com>2016-02-19 15:03:04 +0000
committerTim-Philipp Müller <tim@centricular.com>2016-02-19 15:03:41 +0000
commit30a35511632fff333d2a9df79ad011f7f0f5a5cc (patch)
tree8bed98d7427fcb2d60b9c298df76607fd54d4e05
parent7787f439fca95f5fdf121477493ada8da91fb8a2 (diff)
downloadgstreamer-plugins-good-30a35511632fff333d2a9df79ad011f7f0f5a5cc.tar.gz
v4l2src: fix indentation
-rw-r--r--sys/v4l2/gstv4l2src.c13
-rw-r--r--sys/v4l2/gstv4l2videodec.c5
2 files changed, 10 insertions, 8 deletions
diff --git a/sys/v4l2/gstv4l2src.c b/sys/v4l2/gstv4l2src.c
index e8bfb187a..235eda471 100644
--- a/sys/v4l2/gstv4l2src.c
+++ b/sys/v4l2/gstv4l2src.c
@@ -811,7 +811,8 @@ retry:
/* use generated offset values only if there are not already valid ones
* set by the v4l2 device */
- if (!GST_BUFFER_OFFSET_IS_VALID (*buf) || !GST_BUFFER_OFFSET_END_IS_VALID (*buf)) {
+ if (!GST_BUFFER_OFFSET_IS_VALID (*buf)
+ || !GST_BUFFER_OFFSET_END_IS_VALID (*buf)) {
GST_BUFFER_OFFSET (*buf) = v4l2src->offset++;
GST_BUFFER_OFFSET_END (*buf) = v4l2src->offset;
} else {
@@ -820,15 +821,17 @@ retry:
GST_BUFFER_OFFSET (*buf) += v4l2src->renegotiation_adjust;
GST_BUFFER_OFFSET_END (*buf) += v4l2src->renegotiation_adjust;
/* check for frame loss with given (from v4l2 device) buffer offset */
- if ((v4l2src->offset != 0) && (GST_BUFFER_OFFSET (*buf) != (v4l2src->offset + 1))) {
+ if ((v4l2src->offset != 0)
+ && (GST_BUFFER_OFFSET (*buf) != (v4l2src->offset + 1))) {
guint64 lost_frame_count = GST_BUFFER_OFFSET (*buf) - v4l2src->offset - 1;
GST_WARNING_OBJECT (v4l2src,
- "lost frames detected: count = %" G_GUINT64_FORMAT " - ts: %" GST_TIME_FORMAT,
- lost_frame_count, GST_TIME_ARGS (timestamp));
+ "lost frames detected: count = %" G_GUINT64_FORMAT " - ts: %"
+ GST_TIME_FORMAT, lost_frame_count, GST_TIME_ARGS (timestamp));
qos_msg = gst_message_new_qos (GST_OBJECT_CAST (v4l2src), TRUE,
GST_CLOCK_TIME_NONE, GST_CLOCK_TIME_NONE, timestamp,
- GST_CLOCK_TIME_IS_VALID (duration) ? lost_frame_count * duration : GST_CLOCK_TIME_NONE);
+ GST_CLOCK_TIME_IS_VALID (duration) ? lost_frame_count *
+ duration : GST_CLOCK_TIME_NONE);
gst_element_post_message (GST_ELEMENT_CAST (v4l2src), qos_msg);
}
diff --git a/sys/v4l2/gstv4l2videodec.c b/sys/v4l2/gstv4l2videodec.c
index dc09a6075..a1f0573e7 100644
--- a/sys/v4l2/gstv4l2videodec.c
+++ b/sys/v4l2/gstv4l2videodec.c
@@ -519,15 +519,14 @@ gst_v4l2_video_dec_handle_frame (GstVideoDecoder * decoder,
caps = gst_pad_peer_query_caps (decoder->srcpad, filter);
gst_caps_unref (filter);
- GST_DEBUG_OBJECT (self, "Possible decoded caps: %" GST_PTR_FORMAT,
- caps);
+ GST_DEBUG_OBJECT (self, "Possible decoded caps: %" GST_PTR_FORMAT, caps);
if (gst_caps_is_empty (caps)) {
gst_caps_unref (caps);
goto not_negotiated;
}
/* Fixate pixel format */
- caps = gst_caps_fixate(caps);
+ caps = gst_caps_fixate (caps);
GST_DEBUG_OBJECT (self, "Chosen decoded caps: %" GST_PTR_FORMAT, caps);