diff options
| author | Carl Hetherington <cth@carlh.net> | 2018-08-17 01:39:45 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2018-08-17 01:39:45 +0100 |
| commit | 28ab65a9d625e03753cd40e22d9f991d59460a16 (patch) | |
| tree | 0e069ed40bb9b2c53edf45dcd10b05d1719e9519 /src/sound_asset.h | |
| parent | 5eb0ff8f094517ab6d82751288a69c8fcea74eb1 (diff) | |
Use PKL types rather than file extensions.
Diffstat (limited to 'src/sound_asset.h')
| -rw-r--r-- | src/sound_asset.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/sound_asset.h b/src/sound_asset.h index 77495152..509ae559 100644 --- a/src/sound_asset.h +++ b/src/sound_asset.h @@ -86,11 +86,14 @@ public: } static bool valid_mxf (boost::filesystem::path); + static std::string static_pkl_type (Standard standard); private: friend class SoundAssetWriter; - std::string pkl_type (Standard standard) const; + std::string pkl_type (Standard standard) const { + return static_pkl_type (standard); + } Fraction _edit_rate; /** The total length of this content in video frames. The amount of |
