diff options
| author | Carl Hetherington <cth@carlh.net> | 2013-05-07 09:48:47 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2013-05-07 09:48:47 +0100 |
| commit | af671aa256ae0d2fa38a6740cea7fc0f6b45b5b8 (patch) | |
| tree | feb0daef138128f8f5f1a919a4134bba017f6381 /src | |
| parent | 6e5c4e570f26e05124ab0ef67e39c07bab9cb4d5 (diff) | |
Fix typo preventing audio sync fixes when audio follows video.
Diffstat (limited to 'src')
| -rw-r--r-- | src/lib/matcher.cc | 2 |
1 files changed, 1 insertions, 1 deletions
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<const AudioBuffers> 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 ()); |
