-
Notifications
You must be signed in to change notification settings - Fork 5
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Need rtcp nack, pli and fir #5
Labels
enhancement
New feature or request
Comments
Ok I will push after I finish the test, It may take a long time. |
29654761
pushed a commit
to 29654761/librtp
that referenced
this issue
Mar 28, 2023
Hi, @29654761 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; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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?
The text was updated successfully, but these errors were encountered: