Open 29654761 opened 1 year ago
Ok I will push after I finish the test, It may take a long time.
Ok I will push after I finish the test, It may take a long time.
Hi, @29654761 RTCP_RTPFB
and RTCP_PSFB
are undefined.
rtcp_fb.c:100:12: error: use of undeclared identifier 'RTCP_RTPFB'
rtcp_fb.c:100:32: error: use of undeclared identifier 'RTCP_PSFB'
It should be defined as below according to RFC4585 6.1: Common Packet Format for Feedback Messages
#define RTCP_RTPFB 205
#define PSFB 206
or
typedef enum {
RTCP_SR = 200,
RTCP_RR = 201,
RTCP_SDES = 202,
RTCP_BYE = 203,
RTCP_APP = 204,
RTCP_RTPFB = 205, // Transport layer FB message
RTCP_PSFB = 206 // Payload-specific FB message
} rtcp_packet_type;
Librtp is a very helpful library. It has helped me a lot. Thanks to the authors. But I noticed that librtp does not implement some rtcp commands link nack, pli and fir. Do you have any plans to improve it?