module-rtp: improve logging priorities

Previous state was useless for real debug at the current implementation level
This commit is contained in:
Dmitry Sharshakov 2023-12-16 19:43:17 +03:00 committed by Wim Taymans
parent c75f6219dc
commit 1fe6feac56
6 changed files with 23 additions and 23 deletions

View file

@ -1079,7 +1079,7 @@ static int parse_sdp_a_rtpmap(struct impl *impl, char *c, struct sdp_info *info)
} else
return -EINVAL;
pw_log_debug("rate: %d, ch: %d", info->rate, info->channels);
pw_log_debug("a=rtpmap: rate: %d, ch: %d", info->rate, info->channels);
return 0;
}
@ -1134,7 +1134,7 @@ static int parse_sdp(struct impl *impl, char *sdp, struct sdp_info *info)
goto too_short;
s[l] = 0;
pw_log_debug("%d: %s", count, s);
pw_log_debug("SDP line: %d: %s", count, s);
if (count++ == 0 && strcmp(s, "v=0") != 0)
goto invalid_version;