diff options
| author | Carl Hetherington <cth@carlh.net> | 2013-05-20 17:18:35 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2013-05-20 17:18:35 +0100 |
| commit | 2de990b0155fcb5c3dac821ef8c2659e903d2f6e (patch) | |
| tree | 11cb6b7cc0f30c58dfd1e62f8a76f906d6b216b4 /src/lib/playlist.h | |
| parent | 0c66eaeac227d6aeb63a7a36e202ef87081dc222 (diff) | |
Various incomplete hacks on regions / audio mapping.
Diffstat (limited to 'src/lib/playlist.h')
| -rw-r--r-- | src/lib/playlist.h | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/src/lib/playlist.h b/src/lib/playlist.h index 5b9299795..f677f0ad7 100644 --- a/src/lib/playlist.h +++ b/src/lib/playlist.h @@ -1,3 +1,5 @@ +/* -*- c-basic-offset: 8; default-tab-width: 8; -*- */ + /* Copyright (C) 2013 Carl Hetherington <cth@carlh.net> @@ -77,10 +79,14 @@ public: boost::shared_ptr<Content> content; Time time; + /* XXX: obviously not used for video-only; there should + really by AudioRegion / VideoRegion etc. + */ + AudioMapping audio_mapping; boost::signals2::connection connection; }; - typedef std::vector<Region> RegionList; + typedef std::vector<boost::shared_ptr<Region> > RegionList; RegionList regions () const { return _regions; |
