diff options
author | Sakari Ailus <sakari.ailus@iki.fi> | 2012-01-11 04:25:15 -0500 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@redhat.com> | 2012-05-14 07:44:11 -0400 |
commit | af88be3887c1a0b20d0792c3c237a67c73ef3286 (patch) | |
tree | 79047160436c63bab20241807a61d8030b6a0527 /include/media | |
parent | 440f0fadd407c66abe285ce26ed8c31fb2403f0d (diff) |
[media] media: Add link_validate() op to check links to the sink pad
The purpose of the link_validate() op is to allow an entity driver to ensure
that the properties of the pads at the both ends of the link are suitable
for starting the pipeline. link_validate is called on sink pads on active
links which belong to the active part of the graph.
Signed-off-by: Sakari Ailus <sakari.ailus@iki.fi>
Acked-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
Diffstat (limited to 'include/media')
-rw-r--r-- | include/media/media-entity.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/include/media/media-entity.h b/include/media/media-entity.h index 29e7bba78ffe..0c16f518ee09 100644 --- a/include/media/media-entity.h +++ b/include/media/media-entity.h | |||
@@ -46,6 +46,7 @@ struct media_entity_operations { | |||
46 | int (*link_setup)(struct media_entity *entity, | 46 | int (*link_setup)(struct media_entity *entity, |
47 | const struct media_pad *local, | 47 | const struct media_pad *local, |
48 | const struct media_pad *remote, u32 flags); | 48 | const struct media_pad *remote, u32 flags); |
49 | int (*link_validate)(struct media_link *link); | ||
49 | }; | 50 | }; |
50 | 51 | ||
51 | struct media_entity { | 52 | struct media_entity { |
@@ -140,8 +141,8 @@ void media_entity_graph_walk_start(struct media_entity_graph *graph, | |||
140 | struct media_entity *entity); | 141 | struct media_entity *entity); |
141 | struct media_entity * | 142 | struct media_entity * |
142 | media_entity_graph_walk_next(struct media_entity_graph *graph); | 143 | media_entity_graph_walk_next(struct media_entity_graph *graph); |
143 | void media_entity_pipeline_start(struct media_entity *entity, | 144 | __must_check int media_entity_pipeline_start(struct media_entity *entity, |
144 | struct media_pipeline *pipe); | 145 | struct media_pipeline *pipe); |
145 | void media_entity_pipeline_stop(struct media_entity *entity); | 146 | void media_entity_pipeline_stop(struct media_entity *entity); |
146 | 147 | ||
147 | #define media_entity_call(entity, operation, args...) \ | 148 | #define media_entity_call(entity, operation, args...) \ |