summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2023-11-08 00:24:11 +0100
committerCarl Hetherington <cth@carlh.net>2023-11-20 07:34:23 +0100
commitd50173f9b40336201b1582426d1db609d88e3648 (patch)
treeab3738cdbc8cf4005fbff4971d849065ea2b73c9
parent4ae0193c125cc70176eb1660919d507fbf5378e4 (diff)
Add header guards.
-rw-r--r--src/lib/audio_filter_graph.h9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/lib/audio_filter_graph.h b/src/lib/audio_filter_graph.h
index e749d0ec9..e5c55fa27 100644
--- a/src/lib/audio_filter_graph.h
+++ b/src/lib/audio_filter_graph.h
@@ -18,6 +18,11 @@
*/
+
+#ifndef DCPOMATIC_AUDIO_FILTER_GRAPH_H
+#define DCPOMATIC_AUDIO_FILTER_GRAPH_H
+
+
#include "filter_graph.h"
extern "C" {
#include <libavfilter/buffersink.h>
@@ -45,3 +50,7 @@ private:
int64_t _channel_layout;
AVFrame* _in_frame;
};
+
+
+#endif
+