diff options
| author | Carl Hetherington <cth@carlh.net> | 2013-02-08 13:07:16 +0000 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2013-02-08 13:07:16 +0000 |
| commit | 2e536ef0971edefea23810b99f7706881072783b (patch) | |
| tree | 8b96ac62795a5953e942bd6fc0d35d8690b6dfce /src/lib/external_audio_decoder.cc | |
| parent | 567abac0d7824f27b8fdcd6fb7da7e5ddae62a0f (diff) | |
Shuffle Job pointers around slightly.
Diffstat (limited to 'src/lib/external_audio_decoder.cc')
| -rw-r--r-- | src/lib/external_audio_decoder.cc | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/lib/external_audio_decoder.cc b/src/lib/external_audio_decoder.cc index 366051418..9c01bfb34 100644 --- a/src/lib/external_audio_decoder.cc +++ b/src/lib/external_audio_decoder.cc @@ -31,9 +31,9 @@ using std::cout; using boost::shared_ptr; using boost::optional; -ExternalAudioDecoder::ExternalAudioDecoder (shared_ptr<Film> f, DecodeOptions o, Job* j) - : Decoder (f, o, j) - , AudioDecoder (f, o, j) +ExternalAudioDecoder::ExternalAudioDecoder (shared_ptr<Film> f, DecodeOptions o) + : Decoder (f, o) + , AudioDecoder (f, o) { sf_count_t frames; vector<SNDFILE*> sf = open_files (frames); |
