[camera][v4l2][第五话]: UVC协议学习

[camera][v4l2][第五话]: UVC协议学习1.USBVideoCameraTopologya.T代表terminal,U代表unit(在程序里Unit/Terminal都称为entity)b.有两大interface##VideoControlInterface:isusedtocontroltheinnerworkingsofthefunction//VC里含有多个Unit/Terminal等功能模块,可以通过访问这些模块进行控制,比如调亮度ret=uvc…

大家好,欢迎来到IT知识分享网。

1.  USB Video Camera Topology
 

[camera][v4l2][第五话]: UVC协议学习

a. T 代表terminal, U 代表unit (在程序里Unit/Terminal都称为entity)

[camera][v4l2][第五话]: UVC协议学习

 

b. 有两大interface

## VideoControl Interface :is used to control the inner workings of
the function // VC里含有多个Unit/Terminal等功能模块,可以通过访问这些模块进行控制,比如调亮度

ret = uvc_query_ctrl(dev  /* 哪一个USB设备 */, SET_CUR, ctrl->entity->id  /* 哪一个unit/terminal */,
dev->intfnum /* 哪一个接口: VC interface */, ctrl->info->selector,
uvc_ctrl_data(ctrl, UVC_CTRL_DATA_CURRENT),
ctrl->info->size);
 

## VideoStreaming Interface: handles the data traffic received
from the camera video subsystem // 读视频数据

 ret = uvc_query_ctrl(video->dev /* 哪一个USB设备 */, SET_CUR, 0,
    video->streaming->intfnum  /* 哪一个接口: VS */,
    probe ? VS_PROBE_CONTROL : VS_COMMIT_CONTROL, data, size,
    uvc_timeout_param);

2. USB Video Camera Descriptor Hierarchy

[camera][v4l2][第五话]: UVC协议学习

a. 注意两大interface

## VideoControl Interface

## VideoStreaming Interface

b. ## VideoStreaming Interface 可以有多个 Alt.Setting, 然后每个Setting里可以有多个format,format里又可以有多种frame(比如分辨率不同等)

c. 可以用lsusb -v -d 0x1e4e(vendor id) 来查看所有的Descriptor

Device Descriptor:
  Configuration Descriptor:
    Interface Descriptor:
      VideoControl Interface Descriptor:

      VideoControl Interface Descriptor:
      VideoControl Interface Descriptor:
      VideoControl Interface Descriptor:
      VideoControl Interface Descriptor:
      Endpoint Descriptor:
    Interface Descriptor:
      VideoStreaming Interface Descriptor:

      VideoStreaming Interface Descriptor:
      VideoStreaming Interface Descriptor:
      VideoStreaming Interface Descriptor:
      VideoStreaming Interface Descriptor:
      VideoStreaming Interface Descriptor:
      VideoStreaming Interface Descriptor:
      VideoStreaming Interface Descriptor:
      VideoStreaming Interface Descriptor:

 

免责声明:本站所有文章内容,图片,视频等均是来源于用户投稿和互联网及文摘转载整编而成,不代表本站观点,不承担相关法律责任。其著作权各归其原作者或其出版社所有。如发现本站有涉嫌抄袭侵权/违法违规的内容,侵犯到您的权益,请在线联系站长,一经查实,本站将立刻删除。 本文来自网络,若有侵权,请联系删除,如若转载,请注明出处:https://yundeesoft.com/11537.html

(0)

相关推荐

发表回复

您的电子邮箱地址不会被公开。 必填项已用 * 标注

关注微信