summaryrefslogtreecommitdiff
path: root/codec.c
diff options
context:
space:
mode:
authorJohns <johns98@gmx.net>2012-07-05 23:59:28 +0200
committerJohns <johns98@gmx.net>2012-07-05 23:59:28 +0200
commit2d6d151b85a66c08eccdb6891433d1d12b23faee (patch)
treebbb05bbb20b9e0163cb5fa879319865edc99c5b9 /codec.c
parentca4f519a1f8ceb71fc800cdee6c9a0f6832218ab (diff)
downloadvdr-plugin-softhddevice-2d6d151b85a66c08eccdb6891433d1d12b23faee.tar.gz
vdr-plugin-softhddevice-2d6d151b85a66c08eccdb6891433d1d12b23faee.tar.bz2
Fix compiler warnings.
Diffstat (limited to 'codec.c')
-rw-r--r--codec.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/codec.c b/codec.c
index ca43073..7dca837 100644
--- a/codec.c
+++ b/codec.c
@@ -935,9 +935,9 @@ static void CodecAudioSetClock(AudioDecoder * audio_decoder, int64_t pts)
if (0) {
Debug(3,
- "codec/audio: interval P:%5zdms T:%5" PRId64 "ms D:%4" PRId64
- "ms %f %d\n", pts_diff / 90, tim_diff / (1000 * 1000), delay / 90,
- drift / 90.0, audio_decoder->DriftCorr);
+ "codec/audio: interval P:%5 " PRId64 "ms T:%5" PRId64 "ms D:%4"
+ PRId64 "ms %f %d\n", pts_diff / 90, tim_diff / (1000 * 1000),
+ delay / 90, drift / 90.0, audio_decoder->DriftCorr);
}
// underruns and av_resample have the same time :(((
if (abs(drift) > 10 * 90) {