summaryrefslogtreecommitdiffstats
path: root/gst/dtmf/gstrtpdtmfcommon.h
diff options
context:
space:
mode:
Diffstat (limited to 'gst/dtmf/gstrtpdtmfcommon.h')
-rw-r--r--gst/dtmf/gstrtpdtmfcommon.h19
1 files changed, 10 insertions, 9 deletions
diff --git a/gst/dtmf/gstrtpdtmfcommon.h b/gst/dtmf/gstrtpdtmfcommon.h
index 097afa90..c1ab82e0 100644
--- a/gst/dtmf/gstrtpdtmfcommon.h
+++ b/gst/dtmf/gstrtpdtmfcommon.h
@@ -3,20 +3,21 @@
#define __GST_RTP_DTMF_COMMON_H__
-typedef struct {
- unsigned event:8; /* Current DTMF event */
+typedef struct
+{
+ unsigned event:8; /* Current DTMF event */
#if G_BYTE_ORDER == G_LITTLE_ENDIAN
- unsigned volume:6; /* power level of the tone, in dBm0 */
- unsigned r:1; /* Reserved-bit */
- unsigned e:1; /* End-bit */
+ unsigned volume:6; /* power level of the tone, in dBm0 */
+ unsigned r:1; /* Reserved-bit */
+ unsigned e:1; /* End-bit */
#elif G_BYTE_ORDER == G_BIG_ENDIAN
- unsigned e:1; /* End-bit */
- unsigned r:1; /* Reserved-bit */
- unsigned volume:6; /* power level of the tone, in dBm0 */
+ unsigned e:1; /* End-bit */
+ unsigned r:1; /* Reserved-bit */
+ unsigned volume:6; /* power level of the tone, in dBm0 */
#else
#error "G_BYTE_ORDER should be big or little endian."
#endif
- unsigned duration:16; /* Duration of digit, in timestamp units */
+ unsigned duration:16; /* Duration of digit, in timestamp units */
} GstRTPDTMFPayload;
#endif /* __GST_RTP_DTMF_COMMON_H__ */