summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2013-05-07 10:21:12 +0100
committerCarl Hetherington <cth@carlh.net>2013-05-07 10:21:12 +0100
commit188a4c094775a0fa8b69722bba7c18ae3e2bb5d3 (patch)
tree66891a6b180bbd4eb5992eb751584da9e29a3186 /src
parent213f1b6c74585a16ea48bdeb550dbc6d11bb0f74 (diff)
Fix more incorrect logic.
Diffstat (limited to 'src')
-rw-r--r--src/lib/matcher.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/matcher.cc b/src/lib/matcher.cc
index 2723f2a2d..f8d5c5fcd 100644
--- a/src/lib/matcher.cc
+++ b/src/lib/matcher.cc
@@ -104,7 +104,7 @@ Matcher::process_audio (boost::shared_ptr<const AudioBuffers> b, double t)
_first_input = t;
}
- bool const this_is_first_audio = _had_first_audio;
+ bool const this_is_first_audio = !_had_first_audio;
_had_first_audio = true;
if (!_had_first_video) {