diff options
author | phintuka <phintuka> | 2006-07-05 01:21:36 +0000 |
---|---|---|
committer | phintuka <phintuka> | 2006-07-05 01:21:36 +0000 |
commit | d744897e36e56cd9d60f0193c566ecba0afb4d2e (patch) | |
tree | 2f0fc59948cb8a765d1730d35a9571212e2fea8e | |
parent | 20f2a2ddaef996d83bbe14af50ab9d8406610fab (diff) | |
download | xineliboutput-d744897e36e56cd9d60f0193c566ecba0afb4d2e.tar.gz xineliboutput-d744897e36e56cd9d60f0193c566ecba0afb4d2e.tar.bz2 |
*** empty log message ***
-rw-r--r-- | xine_input_vdr_net.h | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/xine_input_vdr_net.h b/xine_input_vdr_net.h index 5dfc75b2..31d9a41c 100644 --- a/xine_input_vdr_net.h +++ b/xine_input_vdr_net.h @@ -4,7 +4,7 @@ * See the main source file 'xineliboutput.c' for copyright information and * how to reach the author. * - * $Id: xine_input_vdr_net.h,v 1.2 2006-07-04 01:53:23 phintuka Exp $ + * $Id: xine_input_vdr_net.h,v 1.3 2006-07-05 01:21:36 phintuka Exp $ * */ @@ -169,7 +169,7 @@ typedef struct { }; uint8_t raw[4]; }; -} rtcp_common_t; +} __attribute__ ((packed)) rtcp_common_t; /* RTCP RR (Reception report) */ typedef struct { @@ -180,8 +180,8 @@ typedef struct { uint32_t jitter; /* interarrival jitter */ uint32_t lsr; /* last SR packet from this source */ uint32_t dlsr; /* delay since last SR packet */ -} rtcp_rr_t; - +} __attribute__ ((packed)) rtcp_rr_t; + /* RTCP SR (Sender report) */ typedef struct { uint32_t ssrc; @@ -191,14 +191,14 @@ typedef struct { uint32_t psent; /* packets sent */ uint32_t osent; /* octets sent */ rtcp_rr_t rr[0]; /* variable-length list */ -} rtcp_sr_t; +} __attribute__ ((packed)) rtcp_sr_t; /* RTCP SDES item */ typedef struct { uint8_t type; /* type of item (rtcp_sdes_type_t) */ uint8_t length; /* length of item (in octets) */ char data[0]; /* text, not null-terminated */ -} rtcp_sdes_item_t; +} __attribute__ ((packed)) rtcp_sdes_item_t; /* RTCP packet */ typedef struct { @@ -218,7 +218,7 @@ typedef struct { /* can't express trailing text for reason */ } bye; }; -} rtcp_packet_t; +} __attribute__ ((packed)) rtcp_packet_t; #if defined __cplusplus |