diff options
| author | Carl Hetherington <cth@carlh.net> | 2020-11-25 23:32:44 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2020-11-25 23:32:44 +0100 |
| commit | c9865a38f41e9bbf93498729b13087353c5d5d8a (patch) | |
| tree | 80acd7ddbbcc56616079d7a3fa33a5c722c94519 /src | |
| parent | e78b38be10cb39b38283d612352fd3c3800987c8 (diff) | |
Add set_hash() method to ReelMXF.
Diffstat (limited to 'src')
| -rw-r--r-- | src/reel_mxf.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/reel_mxf.h b/src/reel_mxf.h index 732cddbd..7b4d92aa 100644 --- a/src/reel_mxf.h +++ b/src/reel_mxf.h @@ -79,6 +79,10 @@ public: return _hash; } + void set_hash (std::string h) { + _hash = h; + } + /** @return true if a KeyId is specified for this asset, implying * that its content is encrypted. */ |
