Lines Matching defs:pads
105 * @pads: List of media_pipeline_pad
111 struct list_head pads;
118 * @list: Entry in the media_pad pads list
124 * pipeline, and stored in the &media_pad.pads list. media_pipeline_stop()
227 * @index: Pad index in the entity pads array, numbered from 0 to n
262 * @has_pad_interdep: Return whether two pads of the entity are
263 * interdependent. If two pads are interdependent they are
264 * part of the same pipeline and enabling one of the pads
270 * Optional: If the operation isn't implemented all pads
328 * @num_pads: Number of sink and source pads.
333 * @pads: Pads array with the size defined by @num_pads.
365 struct media_pad *pads;
381 * media_entity_for_each_pad - Iterate on all pads in an entity
382 * @entity: The entity the pads belong to
385 * Iterate on all pads in a media entity.
388 for (iter = (entity)->pads; \
389 iter < &(entity)->pads[(entity)->num_pads]; \
700 * media_entity_pads_init() - Initialize the entity pads
702 * @entity: entity where the pads belong
703 * @num_pads: total number of sink and source pads
704 * @pads: Array of @num_pads pads.
706 * The pads array is managed by the entity driver and passed to
710 * If no pads are needed, drivers could either directly fill
711 * &media_entity->num_pads with 0 and &media_entity->pads with %NULL or call
714 * As the number of pads is known in advance, the pads array is not allocated
716 * pads array in a driver-specific structure, avoiding dynamic allocation.
718 * Drivers must set the direction of every pad in the pads array before calling
719 * media_entity_pads_init(). The function will initialize the other pads fields.
722 struct media_pad *pads);
727 * @entity: entity where the pads belong
745 * @entity: entity where the pads belong
764 * @source_pad: number of the source pad in the pads array
766 * @sink_pad: number of the sink pad in the pads array.
800 * @source_pad: number of the source pad in the pads array
804 * @sink_pad: number of the sink pad in the pads array.
914 * media_entity_find_link - Find a link between two pads
941 * link. If multiple (or no) remote pads are found, an error is returned.
960 * enabled link. If multiple (or no) remote pads match these criteria, an error
982 * enabled link. If multiple (or no) remote pads match these criteria, an error
1042 * multiple streams (either on different pads, or on the same pad using
1075 * mappings of media pads.
1151 * @pipe: Media pipeline to be assigned to all pads in the pipeline.
1153 * Mark all pads connected to a given pad through enabled links, either
1168 * @pipe: Media pipeline to be assigned to all pads in the pipeline.
1179 * Mark all pads connected to a given pad through enabled links, either
1204 * media_pipeline_for_each_pad - Iterate on all pads in a media pipeline
1209 * Iterate on all pads in a media pipeline. This is only valid after the