Logging improvements to allow prettier displays in the server GUI.
[dcpomatic.git] / src / lib / content_audio.h
index 6ee702f2c6b47b0fe10cee10e67f4f4e4735025d..c343865e39fa1d586f2df2af03ee84ee5e6d6703 100644 (file)
 
 */
 
+#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.
+ */
 class ContentAudio
 {
 public:
@@ -26,12 +37,14 @@ public:
                : audio (new AudioBuffers (0, 0))
                , frame (0)
        {}
-               
-       ContentAudio (boost::shared_ptr<AudioBuffers> a, AudioFrame f)
+
+       ContentAudio (boost::shared_ptr<AudioBuffers> a, Frame f)
                : audio (a)
                , frame (f)
        {}
 
        boost::shared_ptr<AudioBuffers> audio;
-       AudioFrame frame;
+       Frame frame;
 };
+
+#endif