pipewire/src
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
..
daemon jack: update qsynth to the new passive handling 2023-03-08 16:58:36 +01:00
examples treewide: use SPDX tags to specify copyright information 2023-02-16 10:54:48 +00:00
gst gstpipewiresrc: Set stream error on caps negotiation failure 2023-02-23 11:58:52 +00:00
modules pipewire: module-rtp: fix compilation with UBSan 2023-03-10 00:00:51 +01:00
pipewire impl-node: implement mode node.passive property values 2023-03-08 16:55:00 +01:00
tests treewide: use SPDX tags to specify copyright information 2023-02-16 10:54:48 +00:00
tools pw-cat: Keep track of excess playtime when playing encoded audio 2023-02-24 14:15:13 +01:00
meson.build treewide: meson.build: use feature.allowed() 2022-02-04 00:15:59 +01:00