qtdemux: run gst-indent
authorThiago Santos <thiagoss@osg.samsung.com>
Mon, 7 Mar 2016 13:27:41 +0000 (10:27 -0300)
committerThiago Santos <thiagoss@osg.samsung.com>
Mon, 7 Mar 2016 18:26:13 +0000 (15:26 -0300)
Otherwise commits will fail with our indent check hook

gst/isomp4/qtdemux.c

index 5334b6c..1085e20 100644 (file)
@@ -5223,25 +5223,27 @@ gst_qtdemux_loop_state_movie (GstQTDemux * qtdemux)
   if (qtdemux->cenc_aux_info_offset > 0) {
     GstMapInfo map;
     GstByteReader br;
-    GstBufferaux_info = NULL;
+    GstBuffer *aux_info = NULL;
 
     /* pull the data stored before the sample */
-    ret = gst_qtdemux_pull_atom (qtdemux, qtdemux->offset, offset + stream->offset_in_sample - qtdemux->offset, &aux_info);
+    ret =
+        gst_qtdemux_pull_atom (qtdemux, qtdemux->offset,
+        offset + stream->offset_in_sample - qtdemux->offset, &aux_info);
     if (G_UNLIKELY (ret != GST_FLOW_OK))
       goto beach;
-    gst_buffer_map(aux_info, &map, GST_MAP_READ);
+    gst_buffer_map (aux_info, &map, GST_MAP_READ);
     GST_DEBUG_OBJECT (qtdemux, "parsing cenc auxiliary info");
     gst_byte_reader_init (&br, map.data + 8, map.size);
     if (!qtdemux_parse_cenc_aux_info (qtdemux, stream, &br,
-                                      qtdemux->cenc_aux_info_sizes, qtdemux->cenc_aux_sample_count)) {
+            qtdemux->cenc_aux_info_sizes, qtdemux->cenc_aux_sample_count)) {
       GST_ERROR_OBJECT (qtdemux, "failed to parse cenc auxiliary info");
-      gst_buffer_unmap(aux_info, &map);
-      gst_buffer_unref(aux_info);
+      gst_buffer_unmap (aux_info, &map);
+      gst_buffer_unref (aux_info);
       ret = GST_FLOW_ERROR;
       goto beach;
     }
-    gst_buffer_unmap(aux_info, &map);
-    gst_buffer_unref(aux_info);
+    gst_buffer_unmap (aux_info, &map);
+    gst_buffer_unref (aux_info);
   }
 
   GST_LOG_OBJECT (qtdemux, "reading %d bytes @ %" G_GUINT64_FORMAT, size,