diff options
author | John Stebbins <[email protected]> | 2019-09-11 11:35:50 -0700 |
---|---|---|
committer | John Stebbins <[email protected]> | 2019-09-12 10:25:54 -0700 |
commit | 8a354a757bafb792b5189367e29cbda9a193f2b6 (patch) | |
tree | 2fcc8222fa020443a6f671d12feb4a833e1fc2bd /libhb/handbrake/h264_common.h | |
parent | 89dbcaf6c5d02169f1f9472dc64583a0b814fdc4 (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/h264_common.h')
-rw-r--r-- | libhb/handbrake/h264_common.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libhb/handbrake/h264_common.h b/libhb/handbrake/h264_common.h index afe240113..3f1edc336 100644 --- a/libhb/handbrake/h264_common.h +++ b/libhb/handbrake/h264_common.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_H264_COMMON_H -#define HB_H264_COMMON_H +#ifndef HANDBRAKE_H264_COMMON_H +#define HANDBRAKE_H264_COMMON_H static const char * const hb_h264_profile_names_8bit[] = { "auto", "high", "main", "baseline", NULL, }; @@ -37,4 +37,4 @@ static const char * const hb_h264_colmatrix_names[] = { "GBR", "bt709", "undef", "", "fcc", "bt470bg", "smpte170m", "smpte240m", "YCgCo", "bt2020nc", "bt2020c", NULL, }; -#endif //HB_H264_COMMON_H +#endif // HANDBRAKE_H264_COMMON_H |