如何使用v4l2 linux界面从网络摄像头获取视频?

问题描述 投票:0回答:1

我试图从v4l2 API run the sample code。当我尝试运行示例代码时,我在编译程序本身时遇到了问题。请检查错误,在编译步骤中是否需要安装或标记传递?

ubox:~/capVideoFrame$ gcc v4l2grab.c && ./a.out
/tmp/cc0E2uRM.o: In function `xioctl':
v4l2grab.c:(.text+0x2b): undefined reference to `v4l2_ioctl'
/tmp/cc0E2uRM.o: In function `main':
v4l2grab.c:(.text+0xf3): undefined reference to `v4l2_open'
v4l2grab.c:(.text+0x30f): undefined reference to `v4l2_mmap'
v4l2grab.c:(.text+0x6a2): undefined reference to `v4l2_munmap'
v4l2grab.c:(.text+0x6c4): undefined reference to `v4l2_close'
collect2: error: ld returned 1 exit status

源代码头文件:

#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <fcntl.h>
#include <errno.h>
#include <sys/ioctl.h>
#include <sys/types.h>
#include <sys/time.h>
#include <sys/mman.h>
#include <linux/videodev2.h>
#include "/usr/include/libv4l2.h" // I am using ubuntu, so pointing to this location
c linux ioctl v4l2 v4l
1个回答
1
投票

要成功编译,您需要为它添加标志-lv4l1 -lv4l2

gcc v4l2grab.c -lv4l1 -lv4l2
© www.soinside.com 2019 - 2024. All rights reserved.