Commit b6e8d39f authored by Rémi Denis-Courmont's avatar Rémi Denis-Courmont

clock: use msg_Err()

parent d92c4331
...@@ -417,8 +417,8 @@ int input_clock_ConvertTS( vlc_object_t *p_object, input_clock_t *cl, ...@@ -417,8 +417,8 @@ int input_clock_ConvertTS( vlc_object_t *p_object, input_clock_t *cl,
if( !cl->b_has_reference ) if( !cl->b_has_reference )
{ {
vlc_mutex_unlock( &cl->lock ); vlc_mutex_unlock( &cl->lock );
vlc_Log(p_object, VLC_MSG_ERR, "clock", msg_Err(p_object, "Timestamp conversion failed for %"PRId64": "
"Timestamp conversion failed for %"PRId64": no reference clock", *pi_ts0); "no reference clock", *pi_ts0);
*pi_ts0 = VLC_TS_INVALID; *pi_ts0 = VLC_TS_INVALID;
if( pi_ts1 ) if( pi_ts1 )
*pi_ts1 = VLC_TS_INVALID; *pi_ts1 = VLC_TS_INVALID;
...@@ -450,7 +450,7 @@ int input_clock_ConvertTS( vlc_object_t *p_object, input_clock_t *cl, ...@@ -450,7 +450,7 @@ int input_clock_ConvertTS( vlc_object_t *p_object, input_clock_t *cl,
/* Check ts validity */ /* Check ts validity */
if (i_ts_bound != INT64_MAX && *pi_ts0 > VLC_TS_INVALID) { if (i_ts_bound != INT64_MAX && *pi_ts0 > VLC_TS_INVALID) {
if (*pi_ts0 >= mdate() + i_ts_delay + i_ts_buffering + i_ts_bound) { if (*pi_ts0 >= mdate() + i_ts_delay + i_ts_buffering + i_ts_bound) {
vlc_Log(p_object, VLC_MSG_ERR, "clock", msg_Err(p_object,
"Timestamp conversion failed (delay %"PRId64", buffering " "Timestamp conversion failed (delay %"PRId64", buffering "
"%"PRId64", bound %"PRId64")", "%"PRId64", bound %"PRId64")",
i_ts_delay, i_ts_buffering, i_ts_bound); i_ts_delay, i_ts_buffering, i_ts_bound);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment