pipewire/src/modules/module-rtp
Barnabás Pőcze 82e30d46a9 pipewire: module-rtp: fix compilation with UBSan
The type of `0xffff` is `int`, and UBSan does not like
when that value is shifted left by 16 bits, which causes
e.g.

  case APPLE_MIDI_CMD_IN:

to not compile with the following error:

  error: case label does not reduce to an integer constant

One could use `0xffffu` to force the type to be `unsigned int`,
or simply use `0xffff0000` which has no shifts. This patch
does the latter.
2023-03-10 00:00:51 +01:00
..
apple-midi.h pipewire: module-rtp: fix compilation with UBSan 2023-03-10 00:00:51 +01:00
audio.c module-rtp: add timer for ck requests 2023-03-09 13:14:23 +01:00
midi.c module-rtp: improve properties and some cleanups 2023-03-09 13:14:22 +01:00
rtp.h module-rtp: Add rtp-midi support 2023-02-16 16:47:29 +01:00
sap.h treewide: use SPDX tags to specify copyright information 2023-02-16 10:54:48 +00:00
stream.c module-rtp: add timer for ck requests 2023-03-09 13:14:23 +01:00
stream.h module-rtp: add timer for ck requests 2023-03-09 13:14:23 +01:00