diff options
author | cbdev <cb@cbcdn.com> | 2024-06-24 17:36:56 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-06-24 17:36:56 +0200 |
commit | 18fb7032ad7ce5c4c6734c47255c66925078a273 (patch) | |
tree | de746252d99f34fa60196fdd69f75392d843bcb9 | |
parent | 5051ca5daa041a2837d0f7e8f6269fc3a3f85efe (diff) | |
parent | 611c026a309d043882d9213e917b02f1639af0dd (diff) | |
download | midimonster-18fb7032ad7ce5c4c6734c47255c66925078a273.tar.gz midimonster-18fb7032ad7ce5c4c6734c47255c66925078a273.tar.bz2 midimonster-18fb7032ad7ce5c4c6734c47255c66925078a273.zip |
Merge pull request #141 from alphajbravo/master
correct sACN DMP PDU length field
-rw-r--r-- | backends/sacn.c | 2 |
1 files changed, 1 insertions, 1 deletions
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, |