Browse Source

MT#55283 fix typos

Change-Id: If533daccecaa9614c4998402894efaae0f895bca
pull/1938/head
Richard Fuchs 8 months ago
parent
commit
5112c6ccda
2 changed files with 3 additions and 3 deletions
  1. +1
    -1
      daemon/codec.c
  2. +2
    -2
      daemon/helpers.c

+ 1
- 1
daemon/codec.c View File

@ -2458,7 +2458,7 @@ void codec_output_rtp(struct media_packet *mp, struct codec_scheduler *csch,
} }
send: send:
ilogs(transcoding, LOG_DEBUG, "Scheduling to send RTP packet (seq %u TS %lu) in %" PRId64 ".%01ld ms (at %" PRId64" .%06" PRId64" )",
ilogs(transcoding, LOG_DEBUG, "Scheduling to send RTP packet (seq %u TS %lu) in %" PRId64 ".%01ld ms (at %" PRId64 ".%06" PRId64 ")",
ntohs(rh->seq_num), ntohs(rh->seq_num),
ts, ts,
ts_diff_us / 1000, ts_diff_us / 1000,


+ 2
- 2
daemon/helpers.c View File

@ -312,8 +312,8 @@ static void thread_looper_helper(void *fp) {
int64_t stop = now_us(); int64_t stop = now_us();
int64_t duration_us = stop - rtpe_now; int64_t duration_us = stop - rtpe_now;
if (duration_us > warn_limit_us) if (duration_us > warn_limit_us)
ilog(LOG_WARN, "Run time of timer \"%s\": %" PRId64" .%06" PRId64" sec, "
"exceeding limit of %" PRId64" %% (%" PRId64" .%06" PRId64" sec)",
ilog(LOG_WARN, "Run time of timer \"%s\": %" PRId64 ".%06" PRId64 " sec, "
"exceeding limit of %" PRId64 "%% (%" PRId64 ".%06" PRId64 " sec)",
lh.name, lh.name,
duration_us / 1000000, duration_us % 1000000, duration_us / 1000000, duration_us % 1000000,
warn_limit_pct, warn_limit_pct,


Loading…
Cancel
Save