提交 e78c54e8 编写于 作者: J jp9000

libobs/media-io: Add more audio debug output

上级 5af40001
......@@ -673,6 +673,12 @@ static inline uint64_t smooth_ts(struct audio_line *line, uint64_t timestamp)
(line->next_ts_min - timestamp) :
(timestamp - line->next_ts_min);
#ifdef DEBUG_AUDIO
if (diff >= TS_SMOOTHING_THRESHOLD)
blog(LOG_DEBUG, "above TS smoothing threshold by %"PRIu64,
diff);
#endif
return (diff < TS_SMOOTHING_THRESHOLD) ? line->next_ts_min : timestamp;
}
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册