diff options
| author | Carl Hetherington <cth@carlh.net> | 2013-03-06 14:20:39 +0000 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2013-03-06 14:20:39 +0000 |
| commit | da9ab56f39b1d658ccd0e40de2df8e18c9e4cd89 (patch) | |
| tree | 3672d210f17e3ee2d35f30549b7704ee620dd168 /src | |
| parent | b3dfeeb7f960b6d3418005351f52c5f6b99e9636 (diff) | |
A little logging.
Diffstat (limited to 'src')
| -rw-r--r-- | src/lib/matcher.cc | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/lib/matcher.cc b/src/lib/matcher.cc index 2c697157f..93531dbc5 100644 --- a/src/lib/matcher.cc +++ b/src/lib/matcher.cc @@ -116,6 +116,9 @@ Matcher::process_end () /* We won't do anything */ return; } + + _log->log (String::compose ("Matcher has seen %1 video frames (which equals %2 audio frames) and %3 audio frames", + _video_frames, video_frames_to_audio_frames (_video_frames, _sample_rate, _frames_per_second), _audio_frames)); match ((double (_audio_frames) / _sample_rate) - (double (_video_frames) / _frames_per_second)); } |
