diff options
| author | Carl Hetherington <cth@carlh.net> | 2016-06-14 15:51:03 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2016-06-14 15:51:03 +0100 |
| commit | a2111c9816c9597e6f121010e6f4f34797abb0c7 (patch) | |
| tree | 0dc35eb4805e17d09583d65bfd00292968633d6a /src/lib/film.h | |
| parent | 0b6f2d7b04819711228ed5fbc5d299b58cef997e (diff) | |
Basic guessing of audio channels from filenames (#393).
Diffstat (limited to 'src/lib/film.h')
| -rw-r--r-- | src/lib/film.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/lib/film.h b/src/lib/film.h index 3b33aa305..ca0855b5c 100644 --- a/src/lib/film.h +++ b/src/lib/film.h @@ -144,7 +144,11 @@ public: std::string subtitle_language () const; - void make_audio_mapping_default (AudioMapping & mapping) const; + void make_audio_mapping_default ( + AudioMapping & mapping, + boost::optional<boost::filesystem::path> filename = boost::optional<boost::filesystem::path> () + ) const; + std::vector<std::string> audio_output_names () const; void repeat_content (ContentList, int); |
