From 611c026a309d043882d9213e917b02f1639af0dd Mon Sep 17 00:00:00 2001 From: alphajbravo Date: Mon, 17 Jun 2024 14:18:54 -0400 Subject: correct sACN DMP PDU length field DMP PDU length should be 523 for a full universe of data (512 slots + start code + 10 byte DMP header), was reporting 517. --- backends/sacn.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backends/sacn.c b/backends/sacn.c index 4e01402..3c0cdab 100644 --- a/backends/sacn.c +++ b/backends/sacn.c @@ -314,7 +314,7 @@ static int sacn_transmit(instance* inst, sacn_output_universe* output){ .sequence = data->data.last_seq++, .options = 0, .universe = htobe16(data->uni), - .flags = htobe16(0x7000 | 0x0205), + .flags = htobe16(0x7000 | 0x020b), .vector = DMP_SET_PROPERTY, .format = 0xA1, .startcode_offset = 0, -- cgit v1.2.3