Skip to content

Commit

Permalink
Reduced size of RTP header struct in core
Browse files Browse the repository at this point in the history
  • Loading branch information
lminiero committed Apr 22, 2024
1 parent 32aa5e6 commit 95ae900
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/plugins/plugin.h
Expand Up @@ -171,7 +171,7 @@ janus_plugin *create(void) {
* Janus instance or it will crash.
*
*/
#define JANUS_PLUGIN_API_VERSION 104
#define JANUS_PLUGIN_API_VERSION 105

/*! \brief Initialization of all plugin properties to NULL
*
Expand Down
2 changes: 1 addition & 1 deletion src/rtp.h
Expand Up @@ -53,7 +53,7 @@ typedef struct rtp_header
uint16_t seq_number;
uint32_t timestamp;
uint32_t ssrc;
uint32_t csrc[16];
uint32_t csrc[0];
} rtp_header;
typedef rtp_header janus_rtp_header;

Expand Down

0 comments on commit 95ae900

Please sign in to comment.