summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEdward Hervey <edward@centricular.com>2017-04-12 10:54:05 +0200
committerEdward Hervey <bilboed@bilboed.com>2017-04-12 10:54:05 +0200
commit92ce999ca6ee3969c413f8010cee35aa5f3e22d0 (patch)
tree80cbc0d6b10aca9798aa85ca3c02fb37fa90015a
parent61ba3f198689b72cfc48b6614978daa917ee7c77 (diff)
downloadgstreamer-plugins-bad-92ce999ca6ee3969c413f8010cee35aa5f3e22d0.tar.gz
mpdparser: Run gst-indent
-rw-r--r--ext/dash/gstmpdparser.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/dash/gstmpdparser.c b/ext/dash/gstmpdparser.c
index 1e0950939..bfb3cb6bf 100644
--- a/ext/dash/gstmpdparser.c
+++ b/ext/dash/gstmpdparser.c
@@ -1652,7 +1652,7 @@ gst_mpdparser_parse_mult_seg_base_type_ext (GstMultSegmentBaseType ** pointer,
#define SANITY_CHECK_REASON_TOPLEVEL_TEMPLATE 0x01
/* loop through all Representation-siblings and look for SegmentTemplate
* childs. */
- do_sanity_check = SANITY_CHECK_REASON_NO_SUBTEMPLATES; /* preset: no subseqs */
+ do_sanity_check = SANITY_CHECK_REASON_NO_SUBTEMPLATES; /* preset: no subseqs */
for (cur_node = a_node->parent->children; cur_node; cur_node = cur_node->next) {
if (cur_node->type == XML_ELEMENT_NODE) {
if (xmlStrcmp (cur_node->name, (xmlChar *) "Representation") == 0) {
@@ -1668,7 +1668,7 @@ gst_mpdparser_parse_mult_seg_base_type_ext (GstMultSegmentBaseType ** pointer,
}
if (have_segmenttemplate)
do_sanity_check &= ~SANITY_CHECK_REASON_NO_SUBTEMPLATES;
- else /* found Representation without SegmentTemplate: sanity necessary */
+ else /* found Representation without SegmentTemplate: sanity necessary */
do_sanity_check |= SANITY_CHECK_REASON_TOPLEVEL_TEMPLATE;
}
}