#ifndef _RTCP_H_ #define _RTCP_H_ #include #include "str.h" #include "call.h" #include "media_socket.h" struct crypto_context; struct rtcp_packet; struct ssrc_ctx; struct rtcp_handler; struct call_monologue; extern struct rtcp_handler *rtcp_transcode_handler; extern struct rtcp_handler *rtcp_sink_handler; int rtcp_avp2savp(str *, struct crypto_context *, struct ssrc_ctx *); int rtcp_savp2avp(str *, struct crypto_context *, struct ssrc_ctx *); int rtcp_payload(struct rtcp_packet **out, str *p, const str *s); int rtcp_parse(GQueue *q, struct media_packet *); void rtcp_list_free(GQueue *q); rtcp_filter_func rtcp_avpf2avp_filter; void rtcp_init(void); void rtcp_send_report(struct call_media *media, struct ssrc_ctx *ssrc_out); #endif