修复rtx包未修改rtp ext id的问题

This commit is contained in:
xiongziliang
2021-05-16 16:59:12 +08:00
parent d4ff84e447
commit 7cdd5ed9df
2 changed files with 6 additions and 6 deletions

View File

@@ -63,8 +63,8 @@ public:
* @param flush 是否flush socket
* @param ctx 用户指针
*/
void sendRtpPacket(char *buf, size_t len, bool flush, void *ctx = nullptr);
void sendRtcpPacket(char *buf, size_t len, bool flush, void *ctx = nullptr);
void sendRtpPacket(const char *buf, size_t len, bool flush, void *ctx = nullptr);
void sendRtcpPacket(const char *buf, size_t len, bool flush, void *ctx = nullptr);
const EventPoller::Ptr& getPoller() const;