Skip to content

Commit

Permalink
TEST PR: don't review
Browse files Browse the repository at this point in the history
don't review, test PR.

Signed-off-by: Baofeng Tian <[email protected]>
  • Loading branch information
btian1 committed Dec 13, 2023
1 parent d661aad commit 974fdb9
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions src/audio/mixin_mixout/mixin_mixout.c
Original file line number Diff line number Diff line change
Expand Up @@ -336,7 +336,7 @@ static int mixin_process(struct processing_module *mod,
assert(free_frames >= pending_frames->frames);
sinks_free_frames = MIN(sinks_free_frames, free_frames - pending_frames->frames);
}

#if TBF_MIXIN_CHECK
if (source_avail_frames > 0) {
struct comp_buffer *source_c;

Expand All @@ -357,7 +357,9 @@ static int mixin_process(struct processing_module *mod,
*/
frames_to_copy = MIN(dev->frames, sinks_free_frames);
}

#else
frames_to_copy = dev->frames;
#endif
/* iterate over all connected mixouts and mix source data into each mixout sink buffer */
for (i = 0; i < num_output_buffers; i++) {
struct comp_dev *mixout;
Expand Down

0 comments on commit 974fdb9

Please sign in to comment.