summaryrefslogtreecommitdiff
path: root/src/reel.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/reel.h')
-rw-r--r--src/reel.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/reel.h b/src/reel.h
index 238ec3e0..fa37c840 100644
--- a/src/reel.h
+++ b/src/reel.h
@@ -92,8 +92,8 @@ public:
return _main_subtitle;
}
- boost::shared_ptr<ReelClosedCaptionAsset> closed_caption () const {
- return _closed_caption;
+ std::list<boost::shared_ptr<ReelClosedCaptionAsset> > closed_captions () const {
+ return _closed_captions;
}
boost::shared_ptr<ReelAtmosAsset> atmos () const {
@@ -118,7 +118,7 @@ private:
boost::shared_ptr<ReelPictureAsset> _main_picture;
boost::shared_ptr<ReelSoundAsset> _main_sound;
boost::shared_ptr<ReelSubtitleAsset> _main_subtitle;
- boost::shared_ptr<ReelClosedCaptionAsset> _closed_caption;
+ std::list<boost::shared_ptr<ReelClosedCaptionAsset> > _closed_captions;
boost::shared_ptr<ReelAtmosAsset> _atmos;
};