summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTim-Philipp Müller <tim@centricular.com>2016-02-19 15:02:04 +0000
committerTim-Philipp Müller <tim@centricular.com>2016-02-19 15:04:15 +0000
commitdf341f41dc0518bf7f0f8d1aa57f976bddc3ff9c (patch)
tree4b5c284c5a86b5f97f17ffc9012d8e329de67e2e
parent30a35511632fff333d2a9df79ad011f7f0f5a5cc (diff)
downloadgstreamer-plugins-good-df341f41dc0518bf7f0f8d1aa57f976bddc3ff9c.tar.gz
flvmux, rtpvp9depay: fix indentation
-rw-r--r--gst/flv/gstflvmux.c16
-rw-r--r--gst/rtp/gstrtpvp9depay.c3
2 files changed, 9 insertions, 10 deletions
diff --git a/gst/flv/gstflvmux.c b/gst/flv/gstflvmux.c
index 30d952679..95dc449a4 100644
--- a/gst/flv/gstflvmux.c
+++ b/gst/flv/gstflvmux.c
@@ -1334,18 +1334,18 @@ gst_flv_mux_write_header (GstFlvMux * mux)
return GST_FLOW_OK;
failure_header:
- gst_buffer_unref (metadata);
+ gst_buffer_unref (metadata);
failure_metadata:
- if (video_codec_data != NULL)
- gst_buffer_unref (video_codec_data);
+ if (video_codec_data != NULL)
+ gst_buffer_unref (video_codec_data);
failure_video_codec_data:
- if (audio_codec_data != NULL)
- gst_buffer_unref (audio_codec_data);
+ if (audio_codec_data != NULL)
+ gst_buffer_unref (audio_codec_data);
failure_audio_codec_data:
- return ret;
+ return ret;
}
static void
@@ -1596,8 +1596,8 @@ gst_flv_mux_handle_buffer (GstCollectPads * pads, GstCollectData * cdata,
ret = gst_flv_mux_write_header (mux);
if (ret != GST_FLOW_OK) {
- gst_buffer_unref (buffer);
- return ret;
+ gst_buffer_unref (buffer);
+ return ret;
}
mux->state = GST_FLV_MUX_STATE_DATA;
diff --git a/gst/rtp/gstrtpvp9depay.c b/gst/rtp/gstrtpvp9depay.c
index a4114c0bc..8624192a4 100644
--- a/gst/rtp/gstrtpvp9depay.c
+++ b/gst/rtp/gstrtpvp9depay.c
@@ -81,8 +81,7 @@ gst_rtp_vp9_depay_class_init (GstRtpVP9DepayClass * gst_rtp_vp9_depay_class)
gst_element_class_set_static_metadata (element_class, "RTP VP9 depayloader",
"Codec/Depayloader/Network/RTP",
- "Extracts VP9 video from RTP packets)",
- "Stian Selnes <stian@pexip.com>");
+ "Extracts VP9 video from RTP packets)", "Stian Selnes <stian@pexip.com>");
object_class->dispose = gst_rtp_vp9_depay_dispose;