summaryrefslogtreecommitdiffstats
path: root/libhb/handbrake/encx264.h
diff options
context:
space:
mode:
authorJohn Stebbins <[email protected]>2019-09-11 11:35:50 -0700
committerJohn Stebbins <[email protected]>2019-09-12 10:25:54 -0700
commit8a354a757bafb792b5189367e29cbda9a193f2b6 (patch)
tree2fcc8222fa020443a6f671d12feb4a833e1fc2bd /libhb/handbrake/encx264.h
parent89dbcaf6c5d02169f1f9472dc64583a0b814fdc4 (diff)
libhb: avoid harfbuzz header barrier collisions
harfbuz prefixes header barriers with HB_* which conflicts with some of handbrakes header barriers. So use prefix HANDBRAKE_* for all of our headers.
Diffstat (limited to 'libhb/handbrake/encx264.h')
-rw-r--r--libhb/handbrake/encx264.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/libhb/handbrake/encx264.h b/libhb/handbrake/encx264.h
index 29085e50c..97bac979a 100644
--- a/libhb/handbrake/encx264.h
+++ b/libhb/handbrake/encx264.h
@@ -7,8 +7,8 @@
For full terms see the file COPYING file or visit http://www.gnu.org/licenses/gpl-2.0.html
*/
-#ifndef HB_ENCX264_H
-#define HB_ENCX264_H
+#ifndef HANDBRAKE_ENCX264_H
+#define HANDBRAKE_ENCX264_H
#include "x264.h"
#include "handbrake/h264_common.h"
@@ -62,4 +62,4 @@ typedef struct x264_api_s
void hb_x264_global_init(void);
const x264_api_t * hb_x264_api_get(int bit_depth);
-#endif // HB_ENCX264_H
+#endif // HANDBRAKE_ENCX264_H