-
Notifications
You must be signed in to change notification settings - Fork 53
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
pbuf stats: print media type instead of SSRC
refers to GH-417
- Loading branch information
1 parent
30bceeb
commit 5306ea4
Showing
7 changed files
with
35 additions
and
15 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -10,7 +10,7 @@ | |
* Ian Wesley-Smith <[email protected]> | ||
* | ||
* Copyright (c) 2002 University of Southern California | ||
* Copyright (c) 2005-2010 CESNET z.s.p.o. | ||
* Copyright (c) 2005-2024 CESNET | ||
* | ||
* Redistribution and use in source and binary forms, with or without | ||
* modification, is permitted provided that the following conditions | ||
|
@@ -98,7 +98,7 @@ struct pdb; /* The participant database */ | |
* @param delay_ms delay to be added to playback. Main reason is to give user a possibility to | ||
* sync audio and video. | ||
*/ | ||
struct pdb *pdb_init(volatile int *delay_ms); | ||
struct pdb *pdb_init(const char *stream_id, volatile int *delay_ms); | ||
void pdb_destroy(struct pdb **db); | ||
int pdb_add(struct pdb *db, uint32_t ssrc); | ||
struct pdb_e *pdb_get(struct pdb *db, uint32_t ssrc); | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -12,7 +12,7 @@ | |
* Ian Wesley-Smith <[email protected]> | ||
* | ||
* Copyright (c) 2003-2004 University of Southern California | ||
* Copyright (c) 2005-2021 CESNET z.s.p.o. | ||
* Copyright (c) 2005-2024 CESNET | ||
* | ||
* Redistribution and use in source and binary forms, with or without | ||
* modification, is permitted provided that the following conditions | ||
|
@@ -120,7 +120,7 @@ typedef int decode_frame_t(struct coded_data *cdata, void *decode_data, struct p | |
/* | ||
* External interface: | ||
*/ | ||
struct pbuf *pbuf_init(volatile int *delay_ms); | ||
struct pbuf *pbuf_init(const char *stream_id, volatile int *delay_ms); | ||
void pbuf_destroy(struct pbuf *); | ||
void pbuf_insert(struct pbuf *playout_buf, rtp_packet *r); | ||
int pbuf_is_empty(struct pbuf *playout_buf); | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters