diff options
| author | Carl Hetherington <cth@carlh.net> | 2016-08-04 21:56:14 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2016-08-04 21:56:14 +0100 |
| commit | ada96204dfa1456da77e2ea7469f492cfc0a5483 (patch) | |
| tree | 126df9fbef5cbe3fe6f31e3d062e29caa833a955 /src/lib/util.cc | |
| parent | 6543cce6266e2f8389cf1c3987252caf9e254a5a (diff) | |
Different configuration of filename format for assets / metadata (since CPL/PKL files don't refer to reels).
Diffstat (limited to 'src/lib/util.cc')
| -rw-r--r-- | src/lib/util.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/util.cc b/src/lib/util.cc index a0d6453ff..1cf71ba32 100644 --- a/src/lib/util.cc +++ b/src/lib/util.cc @@ -627,7 +627,7 @@ video_asset_filename (shared_ptr<dcp::PictureAsset> asset, int reel_index, int r if (summary) { values['c'] = summary.get(); } - return Config::instance()->dcp_filename_format().get(values) + ".mxf"; + return Config::instance()->dcp_asset_filename_format().get(values) + ".mxf"; } string @@ -641,7 +641,7 @@ audio_asset_filename (shared_ptr<dcp::SoundAsset> asset, int reel_index, int ree if (summary) { values['c'] = summary.get(); } - return Config::instance()->dcp_filename_format().get(values) + ".mxf"; + return Config::instance()->dcp_asset_filename_format().get(values) + ".mxf"; } float |
