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/qsv_libav.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/qsv_libav.h')
-rw-r--r-- | libhb/handbrake/qsv_libav.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libhb/handbrake/qsv_libav.h b/libhb/handbrake/qsv_libav.h index b74b50c2b..75b32db90 100644 --- a/libhb/handbrake/qsv_libav.h +++ b/libhb/handbrake/qsv_libav.h @@ -26,8 +26,8 @@ THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. \* ********************************************************************* */ -#ifndef HB_QSV_LIBAV_H -#define HB_QSV_LIBAV_H +#ifndef HANDBRAKE_QSV_LIBAV_H +#define HANDBRAKE_QSV_LIBAV_H /** * @file @@ -478,4 +478,4 @@ void *hb_qsv_list_item(hb_qsv_list *, int); /* @} */ -#endif // HB_QSV_LIBAV_H +#endif // HANDBRAKE_QSV_LIBAV_H |