From af671aa256ae0d2fa38a6740cea7fc0f6b45b5b8 Mon Sep 17 00:00:00 2001 From: Carl Hetherington Date: Tue, 7 May 2013 09:48:47 +0100 Subject: Fix typo preventing audio sync fixes when audio follows video. --- src/lib/matcher.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src') diff --git a/src/lib/matcher.cc b/src/lib/matcher.cc index 9924c003a..2723f2a2d 100644 --- a/src/lib/matcher.cc +++ b/src/lib/matcher.cc @@ -110,7 +110,7 @@ Matcher::process_audio (boost::shared_ptr b, double t) if (!_had_first_video) { /* No video yet; we must postpone these data until we have some */ _pending_audio.push_back (AudioRecord (b, t)); - } else if (this_is_first_audio && !_had_first_video) { + } else if (this_is_first_audio && _had_first_video) { /* First audio since we got video */ _pending_audio.push_back (AudioRecord (b, t)); fix_start (_first_input.get ()); -- cgit v1.2.3