|
@@ -251,11 +251,17 @@ static void vsp1_video_frame_end(struct vsp1_pipeline *pipe,
|
|
|
static void vsp1_video_pipeline_run(struct vsp1_pipeline *pipe)
|
|
|
{
|
|
|
struct vsp1_device *vsp1 = pipe->output->entity.vsp1;
|
|
|
+ struct vsp1_entity *entity;
|
|
|
unsigned int i;
|
|
|
|
|
|
if (!pipe->dl)
|
|
|
pipe->dl = vsp1_dl_list_get(pipe->output->dlm);
|
|
|
|
|
|
+ list_for_each_entry(entity, &pipe->entities, list_pipe) {
|
|
|
+ if (entity->ops->configure)
|
|
|
+ entity->ops->configure(entity, pipe, pipe->dl, false);
|
|
|
+ }
|
|
|
+
|
|
|
for (i = 0; i < vsp1->info->rpf_count; ++i) {
|
|
|
struct vsp1_rwpf *rwpf = pipe->inputs[i];
|
|
|
|
|
@@ -632,7 +638,7 @@ static int vsp1_video_setup_pipeline(struct vsp1_pipeline *pipe)
|
|
|
vsp1_entity_route_setup(entity, pipe->dl);
|
|
|
|
|
|
if (entity->ops->configure)
|
|
|
- entity->ops->configure(entity, pipe, pipe->dl);
|
|
|
+ entity->ops->configure(entity, pipe, pipe->dl, true);
|
|
|
}
|
|
|
|
|
|
return 0;
|