summaryrefslogtreecommitdiff
path: root/examples/device/video_capture/src
diff options
context:
space:
mode:
authorhathach <[email protected]>2024-04-05 00:55:48 +0700
committerhathach <[email protected]>2024-04-05 00:55:48 +0700
commit34737f9c6061fdb05dfa3a9c4ddaf5f129b415d6 (patch)
tree53cea1fe3746780ce443d0747b3b4a45fde83d80 /examples/device/video_capture/src
parent34870d34818332657e79bc5c41775f48f2debf1f (diff)
update uvc 2ch to stream0 use yuy2, stream1 use mpeg
this help reduce sram requirement for example, also provide different format (uncompressed & mpeg)
Diffstat (limited to 'examples/device/video_capture/src')
-rw-r--r--examples/device/video_capture/src/usb_descriptors.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/device/video_capture/src/usb_descriptors.c b/examples/device/video_capture/src/usb_descriptors.c
index f308c75a7..5011bee18 100644
--- a/examples/device/video_capture/src/usb_descriptors.c
+++ b/examples/device/video_capture/src/usb_descriptors.c
@@ -56,8 +56,8 @@ char const* string_desc_arr[] = {
"TinyUSB", // 1: Manufacturer
"TinyUSB Device", // 2: Product
NULL, // 3: Serials will use unique ID if possible
- "TinyUSB UVC Control", // 4: UVC Interface
- "TinyUSB UVC Streaming", // 5: UVC Interface
+ "UVC Control", // 4: UVC Interface
+ "UVC Streaming", // 5: UVC Interface
};
//--------------------------------------------------------------------+