Part Number: TDA2EVM5777
Tool/software: Linux
Hi Guys,
My EVM board will act as USB gadget driver, i intend to make EVM board as USB webcam i need to know how to add h264 support in g_webcam driver as it has support for YUV & MPEG.
regards,
Ganesh
This thread has been locked.
If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.
Part Number: TDA2EVM5777
Tool/software: Linux
Hi Guys,
My EVM board will act as USB gadget driver, i intend to make EVM board as USB webcam i need to know how to add h264 support in g_webcam driver as it has support for YUV & MPEG.
regards,
Ganesh
Ganesh
I do not think TI SW stack support WebCam drivers, please check Gstreamer or something similar.
From Linux side you can plug IVA H264 codec by using TI IPUMM (codec Engine) SW packages
regards, Shiju
I'm using glsdk_7_04_00_03 satble kernel as per vision sdk document,
check kernel/omap/drivers/usb/gadget/legacy/webcam.c
As you can see in legacy their is support of webcam, i have even loaded webcam driver, just i haven't yet tested.
static const struct uvc_descriptor_header * const uvc_hs_streaming_cls[] = {
(const struct uvc_descriptor_header *) &uvc_input_header,
(const struct uvc_descriptor_header *) &uvc_format_yuv,
(const struct uvc_descriptor_header *) &uvc_frame_yuv_360p,
(const struct uvc_descriptor_header *) &uvc_frame_yuv_720p,
(const struct uvc_descriptor_header *) &uvc_format_mjpg,
(const struct uvc_descriptor_header *) &uvc_frame_mjpg_360p,
(const struct uvc_descriptor_header *) &uvc_frame_mjpg_720p,
(const struct uvc_descriptor_header *) &uvc_color_matching,
NULL,
};
If you check here support for yuv and mjpg support is their.
I'm looking to add H264 support?
regards,
Ganesh