Linux 4.8.3
[linux/fpc-iii.git] / Documentation / media / uapi / mediactl / media-ioc-enum-links.rst
blob87443b1ce42d56c1031254b161767b691eef3dc4
1 .. -*- coding: utf-8; mode: rst -*-
3 .. _media_ioc_enum_links:
5 **************************
6 ioctl MEDIA_IOC_ENUM_LINKS
7 **************************
9 Name
10 ====
12 MEDIA_IOC_ENUM_LINKS - Enumerate all pads and links for a given entity
15 Synopsis
16 ========
18 .. cpp:function:: int ioctl( int fd, int request, struct media_links_enum *argp )
21 Arguments
22 =========
24 ``fd``
25     File descriptor returned by :ref:`open() <media-func-open>`.
27 ``request``
28     MEDIA_IOC_ENUM_LINKS
30 ``argp``
33 Description
34 ===========
36 To enumerate pads and/or links for a given entity, applications set the
37 entity field of a struct :ref:`media_links_enum <media-links-enum>`
38 structure and initialize the struct
39 :ref:`media_pad_desc <media-pad-desc>` and struct
40 :ref:`media_link_desc <media-link-desc>` structure arrays pointed by
41 the ``pads`` and ``links`` fields. They then call the
42 MEDIA_IOC_ENUM_LINKS ioctl with a pointer to this structure.
44 If the ``pads`` field is not NULL, the driver fills the ``pads`` array
45 with information about the entity's pads. The array must have enough
46 room to store all the entity's pads. The number of pads can be retrieved
47 with :ref:`MEDIA_IOC_ENUM_ENTITIES`.
49 If the ``links`` field is not NULL, the driver fills the ``links`` array
50 with information about the entity's outbound links. The array must have
51 enough room to store all the entity's outbound links. The number of
52 outbound links can be retrieved with :ref:`MEDIA_IOC_ENUM_ENTITIES`.
54 Only forward links that originate at one of the entity's source pads are
55 returned during the enumeration process.
58 .. _media-links-enum:
60 .. flat-table:: struct media_links_enum
61     :header-rows:  0
62     :stub-columns: 0
63     :widths:       1 1 2
66     -  .. row 1
68        -  __u32
70        -  ``entity``
72        -  Entity id, set by the application.
74     -  .. row 2
76        -  struct :ref:`media_pad_desc <media-pad-desc>`
78        -  \*\ ``pads``
80        -  Pointer to a pads array allocated by the application. Ignored if
81           NULL.
83     -  .. row 3
85        -  struct :ref:`media_link_desc <media-link-desc>`
87        -  \*\ ``links``
89        -  Pointer to a links array allocated by the application. Ignored if
90           NULL.
94 .. _media-pad-desc:
96 .. flat-table:: struct media_pad_desc
97     :header-rows:  0
98     :stub-columns: 0
99     :widths:       1 1 2
102     -  .. row 1
104        -  __u32
106        -  ``entity``
108        -  ID of the entity this pad belongs to.
110     -  .. row 2
112        -  __u16
114        -  ``index``
116        -  0-based pad index.
118     -  .. row 3
120        -  __u32
122        -  ``flags``
124        -  Pad flags, see :ref:`media-pad-flag` for more details.
128 .. _media-link-desc:
130 .. flat-table:: struct media_link_desc
131     :header-rows:  0
132     :stub-columns: 0
133     :widths:       1 1 2
136     -  .. row 1
138        -  struct :ref:`media_pad_desc <media-pad-desc>`
140        -  ``source``
142        -  Pad at the origin of this link.
144     -  .. row 2
146        -  struct :ref:`media_pad_desc <media-pad-desc>`
148        -  ``sink``
150        -  Pad at the target of this link.
152     -  .. row 3
154        -  __u32
156        -  ``flags``
158        -  Link flags, see :ref:`media-link-flag` for more details.
161 Return Value
162 ============
164 On success 0 is returned, on error -1 and the ``errno`` variable is set
165 appropriately. The generic error codes are described at the
166 :ref:`Generic Error Codes <gen-errors>` chapter.
168 EINVAL
169     The struct :ref:`media_links_enum <media-links-enum>` ``id``
170     references a non-existing entity.