diff options
author | Tim-Philipp Müller <tim@centricular.com> | 2018-04-22 18:27:37 +0100 |
---|---|---|
committer | Tim-Philipp Müller <tim@centricular.com> | 2018-04-22 18:27:37 +0100 |
commit | 79c13988e4fdfcc0634f78d6a9dfa033ab26d229 (patch) | |
tree | 164123c8aa73535b2a9a05554874951b77dcd0a4 /ext | |
parent | 595392d18770f17f8ff90d46bf1891e2eb240d13 (diff) |
Fix code indentation
Diffstat (limited to 'ext')
-rw-r--r-- | ext/dash/gstmpdparser.c | 2 | ||||
-rw-r--r-- | ext/dts/gstdtsdec.c | 4 | ||||
-rw-r--r-- | ext/faad/gstfaad.c | 4 |
3 files changed, 5 insertions, 5 deletions
diff --git a/ext/dash/gstmpdparser.c b/ext/dash/gstmpdparser.c index c0bbecdc1..6535cae52 100644 --- a/ext/dash/gstmpdparser.c +++ b/ext/dash/gstmpdparser.c @@ -904,7 +904,7 @@ gst_mpdparser_get_xml_prop_dateTime (xmlNode * a_node, GST_LOG (" - %s: %4d/%02d/%02d %02d:%02d:%09.6lf", property_name, year, month, day, hour, minute, second); - if (strrchr (str, '+') || strrchr (str, '-')){ + if (strrchr (str, '+') || strrchr (str, '-')) { /* reuse some code from gst-plugins-base/gst-libs/gst/tag/gstxmptag.c */ gint gmt_offset = -1; gchar *plus_pos = NULL; diff --git a/ext/dts/gstdtsdec.c b/ext/dts/gstdtsdec.c index 2f786f738..d0e487737 100644 --- a/ext/dts/gstdtsdec.c +++ b/ext/dts/gstdtsdec.c @@ -131,8 +131,8 @@ G_DEFINE_TYPE (GstDtsDec, gst_dtsdec, GST_TYPE_AUDIO_DECODER); static gboolean gst_dtsdec_start (GstAudioDecoder * dec); static gboolean gst_dtsdec_stop (GstAudioDecoder * dec); static gboolean gst_dtsdec_set_format (GstAudioDecoder * bdec, GstCaps * caps); -static GstFlowReturn gst_dtsdec_parse (GstAudioDecoder * dec, GstAdapter * adapter, - gint * offset, gint * length); +static GstFlowReturn gst_dtsdec_parse (GstAudioDecoder * dec, + GstAdapter * adapter, gint * offset, gint * length); static GstFlowReturn gst_dtsdec_handle_frame (GstAudioDecoder * dec, GstBuffer * buffer); diff --git a/ext/faad/gstfaad.c b/ext/faad/gstfaad.c index 0c6122fdb..e7b11334b 100644 --- a/ext/faad/gstfaad.c +++ b/ext/faad/gstfaad.c @@ -93,8 +93,8 @@ static void gst_faad_reset (GstFaad * faad); static gboolean gst_faad_start (GstAudioDecoder * dec); static gboolean gst_faad_stop (GstAudioDecoder * dec); static gboolean gst_faad_set_format (GstAudioDecoder * dec, GstCaps * caps); -static GstFlowReturn gst_faad_parse (GstAudioDecoder * dec, GstAdapter * adapter, - gint * offset, gint * length); +static GstFlowReturn gst_faad_parse (GstAudioDecoder * dec, + GstAdapter * adapter, gint * offset, gint * length); static GstFlowReturn gst_faad_handle_frame (GstAudioDecoder * dec, GstBuffer * buffer); static void gst_faad_flush (GstAudioDecoder * dec, gboolean hard); |