linux-pipewire: Report modifiers in hex

Use hex for modifiers because they are generally formed from a high byte
and low bytes. This makes it easier to see these bytes and identify
unusual modifiers.
This commit is contained in:
Kurt Kartaltepe
2023-03-16 17:49:49 -07:00
committed by Georges Basile Stavracas Neto
parent e6873d3278
commit 9bde0afc74
+1 -1
View File
@@ -794,7 +794,7 @@ static void on_param_changed_cb(void *user_data, uint32_t id,
obs_pw->format.info.raw.format));
if (has_modifier) {
blog(LOG_INFO, "[pipewire] Modifier: %" PRIu64,
blog(LOG_INFO, "[pipewire] Modifier: 0x%" PRIx64,
obs_pw->format.info.raw.modifier);
}