diff --git a/src/include/switch_types.h b/src/include/switch_types.h
index 931c41cf67..3ffae84a4d 100644
--- a/src/include/switch_types.h
+++ b/src/include/switch_types.h
@@ -948,13 +948,6 @@ typedef struct {
 #pragma pack(push, r1, 1)
 #endif
 
-typedef struct switch_rtcp_sdes_unit_s {
-	unsigned char type;
-	unsigned char length;
-	char value[];
-} switch_rtcp_sdes_unit_t;
-
-
 #if SWITCH_BYTE_ORDER == __BIG_ENDIAN
 typedef struct switch_rtcp_hdr_s {
 	unsigned version:2;			/* protocol version                  */
diff --git a/src/switch_rtp.c b/src/switch_rtp.c
index a351af68cd..2d94601340 100644
--- a/src/switch_rtp.c
+++ b/src/switch_rtp.c
@@ -129,7 +129,11 @@ typedef struct {
 #pragma pack(push, r1, 1)
 #endif
 
-
+typedef struct switch_rtcp_sdes_unit_s {
+	unsigned char type;
+	unsigned char length;
+	char value[];
+} switch_rtcp_sdes_unit_t;
 
 typedef struct {
 	uint32_t ssrc;