Add get_video_name

This commit is contained in:
John Zhao
2018-03-30 16:39:35 +08:00
parent 30b038a623
commit 2df1ab635a
3 changed files with 7 additions and 6 deletions

View File

@@ -68,7 +68,7 @@ int main(int argc, char *argv[]) {
for (size_t i = 0; i < n; i++) {
auto device = mynteye_devices[i];
auto name = uvc::get_name(*device);
auto name = uvc::get_video_name(*device);
auto vid = uvc::get_vendor_id(*device);
auto pid = uvc::get_product_id(*device);
LOG(INFO) << "index: " << i << ", name: " << name << ", vid: " << vid