summaryrefslogtreecommitdiff
path: root/sys
diff options
context:
space:
mode:
authorSebastian Dröge <sebastian@centricular.com>2018-01-25 21:22:10 +0200
committerSebastian Dröge <sebastian@centricular.com>2018-01-25 21:22:10 +0200
commit342d8403f328a331933be238f0d5f54b919f0310 (patch)
tree669dfbedc553203c871afd3a2466338cb91a44cf /sys
parentb5364f94be9429601454881e363d695e80fb9e2d (diff)
directsoundsink: Add missing \ in multi-line #define
Diffstat (limited to 'sys')
-rw-r--r--sys/directsound/gstdirectsoundsink.h18
1 files changed, 9 insertions, 9 deletions
diff --git a/sys/directsound/gstdirectsoundsink.h b/sys/directsound/gstdirectsoundsink.h
index 4dc9a4132..144dfaeef 100644
--- a/sys/directsound/gstdirectsoundsink.h
+++ b/sys/directsound/gstdirectsoundsink.h
@@ -97,15 +97,15 @@ struct _GstDirectSoundSinkClass
GType gst_directsound_sink_get_type (void);
-#define GST_DIRECTSOUND_SINK_CAPS "audio/x-raw, "
- "format = (string) S16LE, "
- "layout = (string) interleaved, "
- "rate = (int) [ 1, MAX ], " "channels = (int) [ 1, 2 ]; "
- "audio/x-raw, "
- "format = (string) U8, "
- "layout = (string) interleaved, "
- "rate = (int) [ 1, MAX ], " "channels = (int) [ 1, 2 ];"
- "audio/x-ac3, framed = (boolean) true;"
+#define GST_DIRECTSOUND_SINK_CAPS "audio/x-raw, " \
+ "format = (string) S16LE, " \
+ "layout = (string) interleaved, " \
+ "rate = (int) [ 1, MAX ], " "channels = (int) [ 1, 2 ]; " \
+ "audio/x-raw, " \
+ "format = (string) U8, " \
+ "layout = (string) interleaved, " \
+ "rate = (int) [ 1, MAX ], " "channels = (int) [ 1, 2 ];" \
+ "audio/x-ac3, framed = (boolean) true;" \
"audio/x-dts, framed = (boolean) true;"
G_END_DECLS