diff options
| author | Carl Hetherington <cth@carlh.net> | 2023-12-09 20:33:02 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2023-12-12 15:03:23 +0100 |
| commit | f5c1d56e9a15975f587a8d9c5255aea608d8abe9 (patch) | |
| tree | 5219e5f164271a5d3d0e8b66843ea9a63679fcc7 | |
| parent | 3c5bd6d80f4f7b535cfe4630136f1f561d6427e4 (diff) | |
Cleanup: use some better variable names.
| -rw-r--r-- | src/lib/filter.cc | 18 | ||||
| -rw-r--r-- | src/lib/filter.h | 2 |
2 files changed, 10 insertions, 10 deletions
diff --git a/src/lib/filter.cc b/src/lib/filter.cc index 7db329b00..18faa747a 100644 --- a/src/lib/filter.cc +++ b/src/lib/filter.cc @@ -44,16 +44,16 @@ using boost::optional; vector<Filter> Filter::_filters; -/** @param i Our id. - * @param n User-visible name. - * @param c User-visible category. - * @param f String for a FFmpeg filter descriptor. +/** @param id Our id. + * @param name User-visible name. + * @param category User-visible category. + * @param ffmpeg_string String for a FFmpeg filter descriptor. */ -Filter::Filter (string i, string n, string c, string f) - : _id (i) - , _name (n) - , _category (c) - , _ffmpeg (f) +Filter::Filter(string id, string name, string category, string ffmpeg_string) + : _id(id) + , _name(name) + , _category(category) + , _ffmpeg(ffmpeg_string) { } diff --git a/src/lib/filter.h b/src/lib/filter.h index 1144a2ca4..a24d0e0d6 100644 --- a/src/lib/filter.h +++ b/src/lib/filter.h @@ -43,7 +43,7 @@ class Filter { public: - Filter (std::string i, std::string n, std::string c, std::string f); + Filter(std::string id, std::string name, std::string category, std::string ffmpeg_string); /** @return our id */ std::string id () const { |
