summaryrefslogtreecommitdiff
path: root/tests/check/libs
diff options
context:
space:
mode:
authorJordan Petridis <jordan@centricular.com>2018-11-28 13:35:35 +0200
committerTim-Philipp Müller <tim@centricular.com>2018-11-28 14:18:26 +0000
commit1f562870ee16ee2cbfc94022bf84894c95ee5f7c (patch)
tree8f413e02f4dd22de1a2f711838ab5faa9a8f00bc /tests/check/libs
parent465ea32d73be9c1ca2ec96ff1319bf136a9aa3b6 (diff)
downloadgstreamer-plugins-bad-1f562870ee16ee2cbfc94022bf84894c95ee5f7c.tar.gz
Run gst-indent through the files
This is required before we enabled an indent test in the CI. https://gitlab.freedesktop.org/gstreamer/gstreamer-project/issues/33
Diffstat (limited to 'tests/check/libs')
-rw-r--r--tests/check/libs/planaraudioadapter.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/check/libs/planaraudioadapter.c b/tests/check/libs/planaraudioadapter.c
index 8f845d8e5..96503935f 100644
--- a/tests/check/libs/planaraudioadapter.c
+++ b/tests/check/libs/planaraudioadapter.c
@@ -60,7 +60,7 @@ generate_buffer (GstAudioInfo * info, gsize nsamples,
}
static void
-verify_buffer_contents (GstBuffer * buf, GstAudioInfo *info,
+verify_buffer_contents (GstBuffer * buf, GstAudioInfo * info,
gint expect_n_planes, gsize expect_plane_size,
gpointer base, gsize real_plane_size, gsize expect_plane_start_offset)
{
@@ -84,7 +84,7 @@ verify_buffer_contents (GstBuffer * buf, GstAudioInfo *info,
/* verify all contents */
byte = abuf.planes[i];
while (byte < ((guint8 *) abuf.planes[i]) + expect_plane_size) {
- GST_TRACE("%d | %p", i, byte);
+ GST_TRACE ("%d | %p", i, byte);
fail_unless_equals_int_hex (*byte, i | 0xF0);
++byte;
}