diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/lib/film_state.cc | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/lib/film_state.cc b/src/lib/film_state.cc index 6f1c47fea..ca43790f2 100644 --- a/src/lib/film_state.cc +++ b/src/lib/film_state.cc @@ -367,6 +367,10 @@ FilmState::dci_name () const } } + if (fixed_name.length() > 14) { + fixed_name = fixed_name.substr (0, 14); + } + d << fixed_name << "_"; if (dcp_content_type) { |
