summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTim-Philipp Müller <tim@centricular.com>2020-06-02 00:40:48 +0100
committerTim-Philipp Müller <tim@centricular.com>2020-06-02 12:26:41 +0100
commit4f4b67bea43a0969f6c158991164799f5342b260 (patch)
treeaa0ec16f834dd166ab6778ab1b101c8e269794e1
parent4063a319c5a7a3ffe23047c378ec19b2b9ed2ef5 (diff)
asfdemux: sprinkle some INDENT-OFF
Part-of: <https://gitlab.freedesktop.org/gstreamer/gst-plugins-ugly/-/merge_requests/54>
-rw-r--r--gst/asfdemux/gstasfdemux.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/gst/asfdemux/gstasfdemux.c b/gst/asfdemux/gstasfdemux.c
index 6a6e3876..5c21aadb 100644
--- a/gst/asfdemux/gstasfdemux.c
+++ b/gst/asfdemux/gstasfdemux.c
@@ -3171,6 +3171,7 @@ not_enough_data:
static const gchar *
gst_asf_demux_get_gst_tag_from_tag_name (const gchar * name_utf8)
{
+ /* *INDENT-OFF* */
const struct
{
const gchar *asf_name;
@@ -3186,6 +3187,7 @@ gst_asf_demux_get_gst_tag_from_tag_name (const gchar * name_utf8)
"WM/Year", GST_TAG_DATE_TIME}
/* { "WM/Composer", GST_TAG_COMPOSER } */
};
+ /* *INDENT-ON* */
gsize out;
guint i;
@@ -3304,6 +3306,7 @@ gst_asf_demux_process_ext_content_desc (GstASFDemux * demux, guint8 * data,
guint16 blockcount, i;
gboolean content3D = FALSE;
+ /* *INDENT-OFF* */
struct
{
const gchar *interleave_name;
@@ -3316,6 +3319,8 @@ gst_asf_demux_process_ext_content_desc (GstASFDemux * demux, guint8 * data,
"OverUnderLT", GST_ASF_3D_TOP_AND_BOTTOM_HALF_LR}, {
"DualStream", GST_ASF_3D_DUAL_STREAM}
};
+ /* *INDENT-ON* */
+
GST_INFO_OBJECT (demux, "object is an extended content description");
taglist = gst_tag_list_new_empty ();
@@ -3783,6 +3788,7 @@ not_enough_data:
static GstFlowReturn
gst_asf_demux_process_comment (GstASFDemux * demux, guint8 * data, guint64 size)
{
+ /* *INDENT-OFF* */
struct
{
const gchar *gst_tag;
@@ -3796,6 +3802,7 @@ gst_asf_demux_process_comment (GstASFDemux * demux, guint8 * data, guint64 size)
GST_TAG_DESCRIPTION, 0, NULL}, {
GST_TAG_COMMENT, 0, NULL}
};
+ /* *INDENT-ON* */
GstTagList *taglist;
GValue value = { 0 };
gsize in, out;