first draft for ACMP/ timeout handling, and communication between SRP/ADP and the ACMP state machine

This commit is contained in:
hackerman-kl 2026-01-19 09:39:49 +01:00 committed by Wim Taymans
parent ad543e37f5
commit 4856f85de2
18 changed files with 2970 additions and 285 deletions

View file

@ -80,7 +80,7 @@ static struct descriptor *es_buidler_desc_stream_general_prepare(struct server *
}
pstream_input = desc->ptr;
stream = &pstream_input->stream;
stream = &pstream_input->common.stream;
direction = SPA_DIRECTION_INPUT;
break;
case AVB_AEM_DESC_STREAM_OUTPUT:
@ -96,7 +96,7 @@ static struct descriptor *es_buidler_desc_stream_general_prepare(struct server *
}
pstream_output = desc->ptr;
stream = &pstream_output->stream;
stream = &pstream_output->common.stream;
direction = SPA_DIRECTION_OUTPUT;
break;