diff options
| author | Carl Hetherington <cth@carlh.net> | 2013-09-24 23:19:08 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2013-09-24 23:19:08 +0100 |
| commit | f8005516a681b805ccc2d929f63312ac711fdc24 (patch) | |
| tree | 9785795f122a1be7fcae2498dd9c7ac80b219fcd /src/reel.cc | |
| parent | e9ab736ffa8088301edd658afcc98a9add517205 (diff) | |
Allow setting of a CPL's MXF keys.
Diffstat (limited to 'src/reel.cc')
| -rw-r--r-- | src/reel.cc | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/src/reel.cc b/src/reel.cc index ffb184ab..51aa560c 100644 --- a/src/reel.cc +++ b/src/reel.cc @@ -104,3 +104,14 @@ Reel::add_kdm (KDM const & kdm) } } } + +void +Reel::set_mxf_keys (Key key) +{ + _main_picture->set_key (key); + if (_main_sound) { + _main_sound->set_key (key); + } + + /* XXX: subtitle asset? */ +} |
