diff options
| author | Carl Hetherington <cth@carlh.net> | 2024-06-28 17:46:42 +0200 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2024-06-28 17:46:42 +0200 |
| commit | 85eebdf558ca89ce53bb59a0127f1c804e82981b (patch) | |
| tree | bb7e6c654ed281ced61cece92452481a7f396288 /src/cpl.cc | |
| parent | 632fd6b46be907c044474a09ffffad6cccb14d08 (diff) | |
wip2801-cap
Diffstat (limited to 'src/cpl.cc')
| -rw-r--r-- | src/cpl.cc | 6 |
1 files changed, 6 insertions, 0 deletions
@@ -615,6 +615,12 @@ add_file_assets (vector<shared_ptr<T>>& assets, vector<shared_ptr<Reel>> reels) if (i->main_subtitle ()) { assets.push_back (i->main_subtitle()); } + if (i->main_caption()) { + assets.push_back(i->main_caption()); + } + for (auto j: i->closed_subtitles()) { + assets.push_back (j); + } for (auto j: i->closed_captions()) { assets.push_back (j); } |
