Skip to content

Commit

Permalink
test: add usage of rtcp_msg_print()
Browse files Browse the repository at this point in the history
  • Loading branch information
alfredh committed Apr 25, 2024
1 parent 0e13821 commit 2170229
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions test/rtp.c
Original file line number Diff line number Diff line change
Expand Up @@ -285,6 +285,11 @@ int test_rtcp_encode(void)
while (mbuf_get_left(mb) >= 4 && !err) {
struct rtcp_msg *msg = NULL;
err = rtcp_decode(&msg, mb);
if (err)
break;

DEBUG_NOTICE("%H\n", rtcp_msg_print, msg);

msg = mem_deref(msg);
}
if (err)
Expand Down

0 comments on commit 2170229

Please sign in to comment.