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/audio_examiner.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/audio_examiner.h')
| -rw-r--r-- | src/lib/audio_examiner.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/lib/audio_examiner.h b/src/lib/audio_examiner.h index a5f055984..c4b915c99 100644 --- a/src/lib/audio_examiner.h +++ b/src/lib/audio_examiner.h @@ -17,10 +17,15 @@ */ +#ifndef DCPOMATIC_AUDIO_EXAMINER_H +#define DCPOMATIC_AUDIO_EXAMINER_H + /** @file src/lib/audio_examiner.h * @brief AudioExaminer class. */ +#include "types.h" + /** @class AudioExaminer * @brief Parent for classes which examine AudioContent for their pertinent details. */ @@ -33,3 +38,5 @@ public: virtual Frame audio_length () const = 0; virtual int audio_frame_rate () const = 0; }; + +#endif |
