diff options
| author | Carl Hetherington <cth@carlh.net> | 2022-03-14 20:23:47 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2022-03-14 20:23:47 +0100 |
| commit | 2a7380f75fe82370dec39def1d59e82235861a89 (patch) | |
| tree | 1d03b0f167f39e4f40ceb250d93a41863047565e | |
| parent | d9338a75602429347e36e5b393728c10cda731b3 (diff) | |
Cleanup: tidy some comments.
| -rw-r--r-- | src/lib/audio_content.h | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/src/lib/audio_content.h b/src/lib/audio_content.h index 963f759e8..4dc45f114 100644 --- a/src/lib/audio_content.h +++ b/src/lib/audio_content.h @@ -61,10 +61,9 @@ public: int resampled_frame_rate (std::shared_ptr<const Film> film) const; std::vector<NamedChannel> channel_names () const; - /** Set gain in dB. - * @param double g New gain in dB. - */ - void set_gain (double g); + /** Set gain in dB */ + void set_gain (double); + /** Set delay in milliseconds (positive moves audio later) */ void set_delay (int); double gain () const { |
