obs-ffmpeg: Fix a couple printf compiler warnings.

This commit is contained in:
Warren Turkal
2016-10-30 19:53:56 -07:00
parent 1728a5d1b7
commit 40a5436549
2 changed files with 2 additions and 2 deletions

View File

@@ -892,7 +892,7 @@ static void check_to_drop_frames(struct rtmp_stream *stream, bool pframes)
buffer_duration_usec = stream->last_dts_usec - first.dts_usec;
if (buffer_duration_usec > drop_threshold) {
debug("buffer_duration_usec: %lld", buffer_duration_usec);
debug("buffer_duration_usec: %" PRId64, buffer_duration_usec);
drop_frames(stream, name, priority, p_min_dts_usec);
}
}