Skip to content
This repository has been archived by the owner on Jan 10, 2023. It is now read-only.

Commit

Permalink
internal: reformat a trace log
Browse files Browse the repository at this point in the history
Regroup start and end time and use a consistent formatting.
  • Loading branch information
ubitux committed Mar 15, 2022
1 parent f9ece03 commit ed37fcd
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/api.c
Original file line number Diff line number Diff line change
Expand Up @@ -311,10 +311,10 @@ static int set_context_fields(struct sxplayer_ctx *s)
return AVERROR(EINVAL);
}

TRACE(s, "rescaled values: start_time=%s dist:%s end_time:%s",
TRACE(s, "rescaled values: start_time=%s end_time=%s dist=%s",
PTS2TIMESTR(o->start_time64),
PTS2TIMESTR(o->dist_time_seek_trigger64),
PTS2TIMESTR(o->end_time64));
PTS2TIMESTR(o->end_time64),
PTS2TIMESTR(o->dist_time_seek_trigger64));

av_assert0(!s->actx);
s->actx = sxpi_async_alloc_context();
Expand Down

0 comments on commit ed37fcd

Please sign in to comment.