diff options
| author | Carl Hetherington <cth@carlh.net> | 2015-07-01 17:25:48 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2015-07-01 17:25:48 +0100 |
| commit | f9fcc34179a6f86425427741c60d8876099d3ed3 (patch) | |
| tree | 801737b5b7627ab553026b384150d2372ac46d0e /src/lib/film.cc | |
| parent | d6b7cc651e0918b903f1a66a8246ba86c7509a61 (diff) | |
Remove some unused methods.
Diffstat (limited to 'src/lib/film.cc')
| -rw-r--r-- | src/lib/film.cc | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/src/lib/film.cc b/src/lib/film.cc index 51f4c7156..dbb73303c 100644 --- a/src/lib/film.cc +++ b/src/lib/film.cc @@ -227,22 +227,6 @@ Film::internal_video_asset_filename () const return video_identifier() + ".mxf"; } -string -Film::filename_safe_name () const -{ - string const n = name (); - string o; - for (size_t i = 0; i < n.length(); ++i) { - if (isalnum (n[i])) { - o += n[i]; - } else { - o += "_"; - } - } - - return o; -} - boost::filesystem::path Film::audio_analysis_path () const { |
