From cb5af7ca001c748091e54c0bb304f7a4755457fe Mon Sep 17 00:00:00 2001 From: Adriaan Niess Date: Thu, 27 Jun 2024 18:09:48 +0200 Subject: [PATCH] Update CVF examples Signed-off-by: Adriaan Niess --- examples/cvf/cvf-listener.c | 2 +- examples/cvf/cvf-talker.c | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/examples/cvf/cvf-listener.c b/examples/cvf/cvf-listener.c index 37ad835..735a82d 100644 --- a/examples/cvf/cvf-listener.c +++ b/examples/cvf/cvf-listener.c @@ -76,7 +76,7 @@ #include "avtp/cvf/Cvf.h" #include "avtp/cvf/H264.h" #include "avtp/CommonHeader.h" -#include "examples/common.h" +#include "common.h" #define STREAM_ID 0xAABBCCDDEEFF0001 #define DATA_LEN 1400 diff --git a/examples/cvf/cvf-talker.c b/examples/cvf/cvf-talker.c index b86c555..f89141d 100644 --- a/examples/cvf/cvf-talker.c +++ b/examples/cvf/cvf-talker.c @@ -78,7 +78,7 @@ #include "avtp.h" #include "avtp/cvf/Cvf.h" #include "avtp/cvf/H264.h" -#include "examples/common.h" +#include "common.h" #include "avtp/CommonHeader.h" #define STREAM_ID 0xAABBCCDDEEFF0001 @@ -267,7 +267,7 @@ int main(int argc, char *argv[]) argp_parse(&argp, argc, argv, 0, NULL, NULL); - fd = create_talker_socket(priority, 0); + fd = create_talker_socket(priority); if (fd < 0) return 1;