summaryrefslogtreecommitdiff
path: root/src/video.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/video.c')
-rw-r--r--src/video.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/video.c b/src/video.c
index 9077a0c..a73ea34 100644
--- a/src/video.c
+++ b/src/video.c
@@ -255,7 +255,7 @@ static void vidqueue_poll(struct vtx *vtx, uint64_t jfs, uint64_t prev_jfs)
sent += mbuf_get_left(qent->mb);
- stream_send(vtx->video->strm, qent->marker, qent->pt,
+ stream_send(vtx->video->strm, false, qent->marker, qent->pt,
qent->ts, qent->mb);
le = le->next;
@@ -654,10 +654,13 @@ static int pt_handler(struct video *v, uint8_t pt_old, uint8_t pt_new)
/* Handle incoming stream data from the network */
static void stream_recv_handler(const struct rtp_header *hdr,
+ struct rtpext *extv, size_t extc,
struct mbuf *mb, void *arg)
{
struct video *v = arg;
int err;
+ (void)extv;
+ (void)extc;
if (!mb)
goto out;