diff options
| author | Carl Hetherington <cth@carlh.net> | 2017-09-06 21:58:15 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2017-09-06 21:58:15 +0100 |
| commit | 0c82e61b2c6177c91a1a80caf6819e36728c004f (patch) | |
| tree | 55bf5c71321bd465c8cfe524d27b11711fcf3b6a /src/cpl.cc | |
| parent | 926aff7db1e5ad6c02743608e3792fdca39eea4a (diff) | |
CCAP fixes.
Diffstat (limited to 'src/cpl.cc')
| -rw-r--r-- | src/cpl.cc | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -40,6 +40,7 @@ #include "reel_picture_asset.h" #include "reel_sound_asset.h" #include "reel_subtitle_asset.h" +#include "reel_closed_caption_asset.h" #include "reel_atmos_asset.h" #include "local_time.h" #include "dcp_assert.h" @@ -188,6 +189,9 @@ CPL::reel_assets () const if (i->main_subtitle ()) { c.push_back (i->main_subtitle()); } + if (i->closed_caption ()) { + c.push_back (i->closed_caption()); + } if (i->atmos ()) { c.push_back (i->atmos()); } |
