From 8d6d58e94e0374041cb8eccd8ddac2e693b520b2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Olivier=20Cr=C3=AAte?= Date: Fri, 20 Feb 2009 17:37:43 -0500 Subject: Re-indent to Gst style --- gst/dtmf/gstrtpdtmfcommon.h | 19 ++++++++++--------- 1 file changed, 10 insertions(+), 9 deletions(-) (limited to 'gst/dtmf/gstrtpdtmfcommon.h') 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__ */ -- cgit v1.2.1