diff options
| author | Carl Hetherington <cth@carlh.net> | 2024-05-17 15:52:39 +0200 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2024-05-19 23:07:52 +0200 |
| commit | a6a6d8a7a1c4c59bac9de6fa8f4cd879ebeef55d (patch) | |
| tree | ce23c7951554df079f09259dd1a33f1c0c210151 /src/lib/config.h | |
| parent | e9627c2ac61551e3598601805d12938479ad3dff (diff) | |
Generalise SMPTE Bv2.0 limitation to also support SMPTE A.smpte-a
Diffstat (limited to 'src/lib/config.h')
| -rw-r--r-- | src/lib/config.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/lib/config.h b/src/lib/config.h index f3d080b0b..1c1c6e061 100644 --- a/src/lib/config.h +++ b/src/lib/config.h @@ -95,7 +95,7 @@ public: SHOW_EXPERIMENTAL_AUDIO_PROCESSORS, AUDIO_MAPPING, AUTO_CROP_THRESHOLD, - ALLOW_SMPTE_BV20, + ALLOW_SMPTE_FLAVOURS, ISDCF_NAME_PART_LENGTH, OTHER }; @@ -617,8 +617,8 @@ public: return _default_add_file_location; } - bool allow_smpte_bv20() const { - return _allow_smpte_bv20; + bool allow_smpte_flavours() const { + return _allow_smpte_flavours; } int isdcf_name_part_length() const { @@ -1198,8 +1198,8 @@ public: maybe_set(_default_add_file_location, location); } - void set_allow_smpte_bv20(bool allow) { - maybe_set(_allow_smpte_bv20, allow, ALLOW_SMPTE_BV20); + void set_allow_smpte_flavours(bool allow) { + maybe_set(_allow_smpte_flavours, allow, ALLOW_SMPTE_FLAVOURS); } void set_isdcf_name_part_length(int length) { @@ -1444,7 +1444,7 @@ private: boost::optional<int> _main_divider_sash_position; boost::optional<int> _main_content_divider_sash_position; DefaultAddFileLocation _default_add_file_location; - bool _allow_smpte_bv20; + bool _allow_smpte_flavours; int _isdcf_name_part_length; ExportConfig _export; |
