diff options
author | Johns <johns98@gmx.net> | 2012-07-05 23:59:28 +0200 |
---|---|---|
committer | Johns <johns98@gmx.net> | 2012-07-05 23:59:28 +0200 |
commit | 2d6d151b85a66c08eccdb6891433d1d12b23faee (patch) | |
tree | bbb05bbb20b9e0163cb5fa879319865edc99c5b9 /codec.c | |
parent | ca4f519a1f8ceb71fc800cdee6c9a0f6832218ab (diff) | |
download | vdr-plugin-softhddevice-2d6d151b85a66c08eccdb6891433d1d12b23faee.tar.gz vdr-plugin-softhddevice-2d6d151b85a66c08eccdb6891433d1d12b23faee.tar.bz2 |
Fix compiler warnings.
Diffstat (limited to 'codec.c')
-rw-r--r-- | codec.c | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -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) { |