summaryrefslogtreecommitdiff
path: root/src/cpl.cc
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2017-09-06 21:58:15 +0100
committerCarl Hetherington <cth@carlh.net>2017-09-06 21:58:15 +0100
commit0c82e61b2c6177c91a1a80caf6819e36728c004f (patch)
tree55bf5c71321bd465c8cfe524d27b11711fcf3b6a /src/cpl.cc
parent926aff7db1e5ad6c02743608e3792fdca39eea4a (diff)
CCAP fixes.
Diffstat (limited to 'src/cpl.cc')
-rw-r--r--src/cpl.cc4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/cpl.cc b/src/cpl.cc
index c53b8e95..f807bc61 100644
--- a/src/cpl.cc
+++ b/src/cpl.cc
@@ -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());
}