diff options
| author | Carl Hetherington <cth@carlh.net> | 2017-03-02 15:37:13 +0000 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2017-04-19 23:04:32 +0100 |
| commit | 67a68bd971ebe1b35daa3f75873b4ccb53c00ba0 (patch) | |
| tree | 9b1fea4070c3b15f346cc57075bbeed1b963329d /src/lib/transcoder.cc | |
| parent | 3449bc0a6d6e77e851240a0953363f5a07ec6517 (diff) | |
Various Doxygen fixes.
Diffstat (limited to 'src/lib/transcoder.cc')
| -rw-r--r-- | src/lib/transcoder.cc | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/lib/transcoder.cc b/src/lib/transcoder.cc index de2fb1d33..21ef60b79 100644 --- a/src/lib/transcoder.cc +++ b/src/lib/transcoder.cc @@ -51,14 +51,14 @@ using boost::weak_ptr; using boost::dynamic_pointer_cast; /** Construct a transcoder. - * @param f Film that we are transcoding. - * @param j Job that this transcoder is being used in. + * @param film Film that we are transcoding. + * @param job Job that this transcoder is being used in. */ -Transcoder::Transcoder (shared_ptr<const Film> film, weak_ptr<Job> j) +Transcoder::Transcoder (shared_ptr<const Film> film, weak_ptr<Job> job) : _film (film) - , _job (j) + , _job (job) , _player (new Player (film, film->playlist ())) - , _writer (new Writer (film, j)) + , _writer (new Writer (film, job)) , _encoder (new Encoder (film, _writer)) , _finishing (false) , _non_burnt_subtitles (false) |
