Add RTSP support via live555

This commit is contained in:
Kamil Trzcinski
2022-08-25 15:28:45 +02:00
parent 7a584dc16d
commit d49169070a
7 changed files with 295 additions and 4 deletions

View File

@ -4,11 +4,16 @@
"name": "Linux",
"includePath": [
"${workspaceFolder}/**",
"/usr/include/libcamera"
"/usr/include/libcamera",
"/usr/include/liveMedia",
"/usr/include/groupsock",
"/usr/include/BasicUsageEnvironment",
"/usr/include/UsageEnvironment"
],
"defines": [
"USE_LIBCAMERA=1",
"USE_FFMPEG=1"
"USE_FFMPEG=1",
"USE_RTSP=1"
],
"compilerPath": "/usr/bin/gcc",
"cStandard": "gnu17",

View File

@ -78,6 +78,8 @@
"opts.h": "c",
"ioctl.h": "c",
"syscall.h": "c",
"unistd.h": "c"
"unistd.h": "c",
"rtsp.h": "c",
"http.h": "c"
}
}