Skip to content
Closed
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
4 changes: 4 additions & 0 deletions src/audio/src/src.c
Original file line number Diff line number Diff line change
Expand Up @@ -685,6 +685,10 @@ static int src_get_copy_limits(struct comp_data *cd,
s1 = cd->src.stage1;
s2 = cd->src.stage2;

/* Workaround for a pipeline issue in beginning of processing */
if (!source_get_frame_bytes(source))
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@singalsu lets take the real fix, the WA is just hiding the issue.

Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Agree, it looks like SSP copier is clearing the source parameters in copy start.

return -EIO;

/* Calculate how many blocks can be processed with
* available source and free sink frames amount.
*/
Expand Down