diff options
| author | Carl Hetherington <cth@carlh.net> | 2015-11-17 10:33:18 +0000 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2015-11-17 10:33:18 +0000 |
| commit | ba6c93aab4cc43d62f6becc62485d982af7f4a3f (patch) | |
| tree | a648a7ad00de1ea1f6ad23e4b0dde1aa9a849e75 /src | |
| parent | 652f8a1a84b2893c2e4d58c76b0d308e4b785241 (diff) | |
Comments.
Diffstat (limited to 'src')
| -rw-r--r-- | src/lib/film.cc | 1 | ||||
| -rw-r--r-- | src/lib/film.h | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/src/lib/film.cc b/src/lib/film.cc index e14d3a488..b27a0b0e4 100644 --- a/src/lib/film.cc +++ b/src/lib/film.cc @@ -831,6 +831,7 @@ Film::set_reel_type (ReelType t) signal_changed (REEL_TYPE); } +/** @param r Desired reel length in bytes */ void Film::set_reel_length (int64_t r) { diff --git a/src/lib/film.h b/src/lib/film.h index faa7cf5ba..17bdd09eb 100644 --- a/src/lib/film.h +++ b/src/lib/film.h @@ -353,6 +353,7 @@ private: bool _interop; AudioProcessor const * _audio_processor; ReelType _reel_type; + /** Desired reel length in bytes, if _reel_type == REELTYPE_BY_LENGTH */ int64_t _reel_length; int _state_version; |
