trtp_rtcp_rblock.h 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. /*
  2. * Copyright (C) 2012 Doubango Telecom <http://www.doubango.org>
  3. *
  4. * Contact: Mamadou Diop <diopmamadou(at)doubango.org>
  5. *
  6. * This file is part of Open Source Doubango Framework.
  7. *
  8. * DOUBANGO is free software: you can redistribute it and/or modify
  9. * it under the terms of the GNU General Public License as published by
  10. * the Free Software Foundation, either version 3 of the License, or
  11. * (at your option) any later version.
  12. *
  13. * DOUBANGO is distributed in the hope that it will be useful,
  14. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  15. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  16. * GNU General Public License for more details.
  17. *
  18. * You should have received a copy of the GNU General Public License
  19. * along with DOUBANGO.
  20. *
  21. */
  22. #ifndef TINYRTP_RTCP_REPORT_RB_H
  23. #define TINYRTP_RTCP_REPORT_RB_H
  24. #include "tinyrtp_config.h"
  25. #include "tsk_list.h"
  26. TRTP_BEGIN_DECLS
  27. #define TRTP_RTCP_RBLOCK_SIZE 24
  28. #define TRTP_RTCP_RBLOCK(self) ((trtp_rtcp_rblock_t*)(self))
  29. // RFC 3550 6.4.1 SR: Sender Report RTCP Packet => Report block part
  30. typedef struct trtp_rtcp_rblock_s {
  31. TSK_DECLARE_OBJECT;
  32. uint32_t ssrc; /* data source being reported */
  33. unsigned int fraction:8; /* fraction lost since last SR/RR */
  34. int cumulative_no_lost:24; /* cumul. no. pkts lost (signed!) */
  35. uint32_t last_seq; /* extended last seq. no. received */
  36. uint32_t jitter; /* interarrival jitter */
  37. uint32_t lsr; /* last SR packet from this source */
  38. uint32_t dlsr; /* delay since last SR packet */
  39. }
  40. trtp_rtcp_rblock_t;
  41. typedef tsk_list_t trtp_rtcp_rblocks_L_t; /**< List of @ref trtp_rtcp_rblock_t elements */
  42. trtp_rtcp_rblock_t* trtp_rtcp_rblock_create_null();
  43. trtp_rtcp_rblock_t* trtp_rtcp_rblock_deserialize(const void* data, tsk_size_t size);
  44. int trtp_rtcp_rblock_deserialize_list(const void* data, tsk_size_t size, trtp_rtcp_rblocks_L_t* dest_list);
  45. int trtp_rtcp_rblock_serialize_to(const trtp_rtcp_rblock_t* self, void* data, tsk_size_t size);
  46. TRTP_END_DECLS
  47. #endif /* TINYRTP_RTCP_REPORT_RB_H */