diff options
| author | Carl Hetherington <cth@carlh.net> | 2013-06-26 01:21:21 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2013-06-26 17:04:31 +0100 |
| commit | 09a9ac376db005a40a351736bcff4077f098825d (patch) | |
| tree | 64ea69741155d15d114ad96daf0f90e24b3abe28 /src/lib/encoder.cc | |
| parent | 46cd0fe7b5b514f0d9456b25f670679cc584a218 (diff) | |
Another try at sorting out the thorny question of timing.
Diffstat (limited to 'src/lib/encoder.cc')
| -rw-r--r-- | src/lib/encoder.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/encoder.cc b/src/lib/encoder.cc index 8b2db0eb3..c3865d2c1 100644 --- a/src/lib/encoder.cc +++ b/src/lib/encoder.cc @@ -169,7 +169,7 @@ Encoder::frame_done () } void -Encoder::process_video (shared_ptr<const Image> image, bool same, Time) +Encoder::process_video (shared_ptr<const Image> image, bool same) { boost::mutex::scoped_lock lock (_mutex); @@ -215,7 +215,7 @@ Encoder::process_video (shared_ptr<const Image> image, bool same, Time) } void -Encoder::process_audio (shared_ptr<const AudioBuffers> data, Time) +Encoder::process_audio (shared_ptr<const AudioBuffers> data) { _writer->write (data); } |
