Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions tools/testbench/testbench.c
Original file line number Diff line number Diff line change
Expand Up @@ -450,6 +450,9 @@ int main(int argc, char **argv)
if (!tp->channels_out)
tp->channels_out = tp->channels_in;

if (!tp->fs_out)
tp->fs_out = tp->fs_in;

/* check mandatory args */
if (!tp->tplg_file) {
fprintf(stderr, "topology file not specified, use -t file.tplg\n");
Expand Down
4 changes: 2 additions & 2 deletions tools/testbench/topology_ipc4.c
Original file line number Diff line number Diff line change
Expand Up @@ -1055,8 +1055,8 @@ static inline int tb_insert_comp(struct testbench_prm *tp)

list_item_append(&comp_info->item, &tp->widget_list);

printf("debug: loading comp_id %d: widget %s type %d size %d at offset %ld is_pages %d\n",
comp_id, ctx->widget->name, ctx->widget->id, ctx->widget->size,
printf("debug: loading comp_id %d: pipeline_id %d: widget %s type %d size %d at offset %ld is_pages %d\n",
comp_id, ctx->pipeline_id, ctx->widget->name, ctx->widget->id, ctx->widget->size,
ctx->tplg_offset, comp_info->basecfg.is_pages);

return 0;
Expand Down
Loading