diff options
| author | Carl Hetherington <cth@carlh.net> | 2023-03-11 01:31:03 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2023-03-11 01:31:03 +0100 |
| commit | dacf46c8aa5b399a7d51c9d0808869af9b73791c (patch) | |
| tree | 60579c935f826994780108f1dcfaa0139142a73d /src/lib | |
| parent | 640e30afec63fe0ceab064c1082450a77c75f9d3 (diff) | |
Use IAB rather than ATMOS in ISDCF names (#2482).
Diffstat (limited to 'src/lib')
| -rw-r--r-- | src/lib/film.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/film.cc b/src/lib/film.cc index 25a135488..ace371ba7 100644 --- a/src/lib/film.cc +++ b/src/lib/film.cc @@ -1012,7 +1012,7 @@ Film::isdcf_name (bool if_created_now) const } if (find_if(content_list.begin(), content_list.end(), [](shared_ptr<Content> c) { return static_cast<bool>(c->atmos); }) != content_list.end()) { - isdcf_name += "-ATMOS"; + isdcf_name += "-IAB"; } isdcf_name += "_" + resolution_to_string (_resolution); |
