Lines Matching full:sink

35 		 * sink pad.  in vsp1_entity_route_setup()
48 * sink pad. in vsp1_entity_route_setup()
62 route = source->sink->route->inputs[source->sink_pad]; in vsp1_entity_route_setup()
170 * media bus codes on the sink pad and reports a source pad format identical to
171 * the sink pad.
190 * The entity can't perform format conversion, the sink format in vsp1_subdev_enum_mbus_code()
221 * minimum and maximum frame width and height on the sink pad, and a fixed
222 * source pad size identical to the sink pad.
256 * the size on the sink pad. in vsp1_subdev_enum_frame_size()
284 * supplied minimum and maximum, and propagates the sink pad format to the
403 struct vsp1_entity *sink in vsp1_entity_link_setup_source() local
410 if (sink->type != VSP1_ENTITY_HGO && in vsp1_entity_link_setup_source()
411 sink->type != VSP1_ENTITY_HGT) { in vsp1_entity_link_setup_source()
412 if (source->sink) in vsp1_entity_link_setup_source()
414 source->sink = sink; in vsp1_entity_link_setup_source()
418 source->sink = NULL; in vsp1_entity_link_setup_source()
429 struct vsp1_entity *sink; in vsp1_entity_link_setup_sink() local
432 sink = media_entity_to_vsp1_entity(sink_pad->entity); in vsp1_entity_link_setup_sink()
437 if (sink->sources[sink_pad->index]) in vsp1_entity_link_setup_sink()
440 sink->sources[sink_pad->index] = source; in vsp1_entity_link_setup_sink()
442 sink->sources[sink_pad->index] = NULL; in vsp1_entity_link_setup_sink()
485 /* If we're the sink the source will never be an HGO or HGT. */ in vsp1_entity_remote_pad()
486 if (link->sink == pad) in vsp1_entity_remote_pad()
492 /* If the sink isn't a subdevice it can't be an HGO or HGT. */ in vsp1_entity_remote_pad()
493 if (!is_media_entity_v4l2_subdev(link->sink->entity)) in vsp1_entity_remote_pad()
494 return link->sink; in vsp1_entity_remote_pad()
496 entity = media_entity_to_vsp1_entity(link->sink->entity); in vsp1_entity_remote_pad()
499 return link->sink; in vsp1_entity_remote_pad()
602 /* Single-pad entities only have a sink. */ in vsp1_entity_init()