2019-07-03 04:35:08 +11:00
|
|
|
/*
|
|
|
|
* fonctions pour afficher les structures de V4L2
|
2019-07-21 22:36:14 +11:00
|
|
|
*
|
|
|
|
* WARNING : this is a work in progress !
|
2019-07-03 04:35:08 +11:00
|
|
|
*/
|
|
|
|
|
|
|
|
/* --------------------------------------------------------------------- */
|
2019-07-21 22:36:14 +11:00
|
|
|
int pr_v4l2_capability(char *txt, struct v4l2_capability *ptr);
|
2019-07-22 13:10:00 +11:00
|
|
|
int pr_v4l2_input(char *txt, struct v4l2_input *ptr);
|
2019-07-03 04:35:08 +11:00
|
|
|
int pr_v4l2_format(char *txt, struct v4l2_format *ptr);
|
|
|
|
int pr_v4l2_requestbuffers(char *txt, struct v4l2_requestbuffers *ptr);
|
2019-07-27 13:03:57 +11:00
|
|
|
int pr_v4l2_fmtdesc(char *txt, struct v4l2_fmtdesc *ptr);
|
2019-07-25 02:00:07 +11:00
|
|
|
|
|
|
|
char *str_input_type(int t);
|
|
|
|
char *str_ctrl_type(int type);
|
2019-07-28 08:51:35 +11:00
|
|
|
char *str_buf_type(int type);
|
|
|
|
char *str_fourcc(uint32_t fcc); /* NOT REENTRANT */
|
|
|
|
|
2019-07-25 02:06:46 +11:00
|
|
|
void pr_ctrl_id(uint32_t id);
|
2019-07-25 02:00:07 +11:00
|
|
|
|
2019-07-03 04:35:08 +11:00
|
|
|
/* --------------------------------------------------------------------- */
|
|
|
|
|