diff options
| author | Carl Hetherington <cth@carlh.net> | 2015-05-27 20:55:51 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2015-06-02 13:38:21 +0100 |
| commit | 0a93237cb5e4642d3b698ff9b7d0cfae5401478c (patch) | |
| tree | b0d5255ae2b90d1c9ef489e78239c2f081ea0a9e /src/lib/content_audio.h | |
| parent | 608c146eb09fac2a8fc60e1a72591f6bb8364e1f (diff) | |
Handle multiple audio streams in a single piece of content
in a similar way to the V1 patch.
Diffstat (limited to 'src/lib/content_audio.h')
| -rw-r--r-- | src/lib/content_audio.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/lib/content_audio.h b/src/lib/content_audio.h index f704fac58..194e90e3f 100644 --- a/src/lib/content_audio.h +++ b/src/lib/content_audio.h @@ -17,11 +17,15 @@ */ +#ifndef DCPOMATIC_CONTENT_AUDIO_H +#define DCPOMATIC_CONTENT_AUDIO_H + /** @file src/lib/content_audio.h * @brief ContentAudio class. */ #include "audio_buffers.h" +#include "types.h" /** @class ContentAudio * @brief A block of audio from a piece of content, with a timestamp as a frame within that content. @@ -42,3 +46,5 @@ public: boost::shared_ptr<AudioBuffers> audio; Frame frame; }; + +#endif |
