summaryrefslogtreecommitdiff
path: root/src/lib
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib')
-rw-r--r--src/lib/matcher.cc3
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));
}