当前位置:网站首页>USB host driver - UVC swap
USB host driver - UVC swap
2022-07-06 19:19:00 【Be good to me】
1. issue description
yavta It's a test APP, test UVC Data acquisition and return of camera .
yavta -f YUYV -s 1280x720 -t 1/60 -c100 /dev/video0 -F/data/yua
Frame rate 60FPS Not working properly ,blocked, all frame fail.
yavta -f YUYV -s 1280x720 -t 1/30 -c100 /dev/video0 -F/data/yua
Frame rate 30FPS Normal operation , But there will also be some packet losses .
1.1 Some parameters of the image
Frame rate :FPS( How many frames per second ); as well as Gop( Indicates how many seconds a I frame ), Affect fluency .
-t 1/60 // Frame rate 60, One second transmission 60 frame
The resolution of the : The number of pixels contained in an inch ; VGA:Video Graphics Array( Video image resolution ), Affect clarity .
-s 1280x720 // The resolution of the 720P
Video size : The resolution of the x 2( How many bytes does each pixel occupy ) x 8 x Frame rate x Time (s) /1024/1024
YUV422 Format frame size : The resolution of the x 2 Byte
about YUV422 Format 1080P In terms of video , An image is 1920x1080x2x8/1024/1024 = 31.64Mbit,1 Second 30 Frame images , Then there are 949.2Mb/s.
1.2 yavta Control process
[email protected]-rb5:/# strace yavta -f YUYV -s 1280x720 -t 1/60 -c100 /dev/video0
// Analytical parameters
execve("/usr/bin/yavta", ["yavta", "-f", "YUYV", "-s", "1280x720", "-t", "1/60", "-c100", "/dev/video0"], 0x7fc5203a80 /* 16 vars */) = 0
// Open the device node
openat(AT_FDCWD, "/dev/video0", O_RDWR) = 3
// Echo display
write(1, "Device /dev/video0 opened.\n", 27Device /dev/video0 opened.) = 27
// Device node ioctl
ioctl(3, VIDIOC_QUERYCAP, {
driver="uvcvideo", card="KS2A418: KS2A418", bus_info="usb-xhci-hcd.0.auto-1.3", version=4.19.125, ...) = 0
// Echo display
write(1, "Device `KS2A418: KS2A418' on `us"..., 117Device `KS2A418: KS2A418' on `usb-xhci-hcd.0.auto-1.3' (driver 'uvcvideo') supports video, capture, without mplanes.) = 117
// ioctl Set parameters
ioctl(3, VIDIOC_G_PARM, {
type=V4L2_BUF_TYPE_VIDEO_CAPTURE, parm.capture={
capability=V4L2_CAP_TIMEPERFRAME, capturemode=0, timeperframe=1/60, extendedmode=0, readbuffers=0}}) = 0
write(1, "Current frame rate: 1/60\n", 25Current frame rate: 1/60) = 25
write(1, "Setting frame rate to: 1/60\n", 28Setting frame rate to: 1/60) = 28
...
these ioctl The interface of the corresponding drive is :
// \drivers\media\usb\uvc\uvc_v4l2.c
const struct v4l2_ioctl_ops uvc_ioctl_ops = {
.vidioc_querycap = uvc_ioctl_querycap,
...
.vidioc_reqbufs = uvc_ioctl_reqbufs,
.vidioc_querybuf = uvc_ioctl_querybuf,
.vidioc_qbuf = uvc_ioctl_qbuf,
.vidioc_expbuf = uvc_ioctl_expbuf,
.vidioc_dqbuf = uvc_ioctl_dqbuf,
.vidioc_create_bufs = uvc_ioctl_create_bufs,
.vidioc_streamon = uvc_ioctl_streamon,
.vidioc_streamoff = uvc_ioctl_streamoff,
...
};
边栏推荐
- 三面蚂蚁金服成功拿到offer,Android开发社招面试经验
- Oracle advanced (IV) table connection explanation
- 保证接口数据安全的10种方案
- [depth first search] Ji suanke: find numbers
- Solution of intelligent management platform for suppliers in hardware and electromechanical industry: optimize supply chain management and drive enterprise performance growth
- Installation and management procedures
- Don't miss this underestimated movie because of controversy!
- Reptiles have a good time. Are you full? These three bottom lines must not be touched!
- Leetcode topic [array] - 119 Yang Hui triangle II
- Yutai micro rushes to the scientific innovation board: Huawei and Xiaomi fund are shareholders to raise 1.3 billion
猜你喜欢

LeetCode-1279. Traffic light intersection

Xingnuochi technology's IPO was terminated: it was planned to raise 350million yuan, with an annual revenue of 367million yuan

Simple understanding of MySQL database

Multithreading Basics: basic concepts of threads and creation of threads

Oracle advanced (IV) table connection explanation

Meilu biological IPO was terminated: the annual revenue was 385million, and Chen Lin was the actual controller

PMP practice once a day | don't get lost in the exam -7.6

Pychrm Community Edition calls matplotlib pyplot. Solution of imshow() function image not popping up

Dark horse -- redis

Druid 数据库连接池 详解
随机推荐
How word displays modification traces
R language ggplot2 visual time series histogram: visual time series histogram through two-color gradient color matching color theme
First day of rhcsa study
包装行业商业供应链管理平台解决方案:布局智慧供应体系,数字化整合包装行业供应链
Leetcode topic [array] - 119 Yang Hui triangle II
A method of removing text blur based on pixel repair
Unlock 2 live broadcast themes in advance! Today, I will teach you how to complete software package integration Issues 29-30
About NPM install error 1
Analysis of frequent chain breaks in applications using Druid connection pools
多线程基础:线程基本概念与线程的创建
关于静态类型、动态类型、id、instancetype
test about BinaryTree
Modulenotfounderror: no module named 'PIL' solution
2022.2.12
抽象类与抽象方法
Interview assault 63: how to remove duplication in MySQL?
五金机电行业智能供应链管理系统解决方案:数智化供应链为传统产业“造新血”
Installation and management procedures
Multithreading Basics: basic concepts of threads and creation of threads
Oracle advanced (IV) table connection explanation