Attempt to fix Windows build.
[dcpomatic.git] / src / lib / audio_buffers.h
index 8cd67aaa729d52afc42a8ff5b11f3d42327de414..97646790f34b8b3ff8f161833a30c7a5e6b9b2b2 100644 (file)
@@ -25,6 +25,7 @@
 #define DCPOMATIC_AUDIO_BUFFERS_H
 
 #include <boost/shared_ptr.hpp>
+#include <stdint.h>
 
 /** @class AudioBuffers
  *  @brief A class to hold multi-channel audio data in float format.
@@ -47,7 +48,7 @@ public:
        float** data () const {
                return _data;
        }
-       
+
        float* data (int) const;
 
        int channels () const {
@@ -75,7 +76,7 @@ public:
 private:
        void allocate (int, int);
        void deallocate ();
-       
+
        /** Number of channels */
        int _channels;
        /** Number of frames (where a frame is one sample across all channels) */