diff options
Diffstat (limited to 'src/mediactl-priv.h')
-rw-r--r-- | src/mediactl-priv.h | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/src/mediactl-priv.h b/src/mediactl-priv.h index 844acc7..37e60aa 100644 --- a/src/mediactl-priv.h +++ b/src/mediactl-priv.h @@ -26,6 +26,18 @@ #include "mediactl.h" +struct media_entity { + struct media_device *media; + struct media_entity_desc info; + struct media_pad *pads; + struct media_link *links; + unsigned int max_links; + unsigned int num_links; + + char devname[32]; + int fd; +}; + struct media_device { int fd; int refcount; |