diff options
author | John Stebbins <[email protected]> | 2019-09-11 09:56:06 -0700 |
---|---|---|
committer | John Stebbins <[email protected]> | 2019-09-12 10:22:07 -0700 |
commit | 1b7948495fcf4d511e62d7f9c3a0c1a3ccb59f80 (patch) | |
tree | c87c308f35d862678a4bca37637d24acb8de1c2c /libhb/ssautil.h | |
parent | a7f548861f9f0be309659e93eaccd1994a3a5cfe (diff) |
libhb: resolve header conflicts with pango/harfbuzz
Newest versions appear to have a "common.h" somewhere that is
interfering with libhb/common.h.
move headers into "handbrake" subdirectory
Diffstat (limited to 'libhb/ssautil.h')
-rw-r--r-- | libhb/ssautil.h | 34 |
1 files changed, 0 insertions, 34 deletions
diff --git a/libhb/ssautil.h b/libhb/ssautil.h deleted file mode 100644 index 319262b73..000000000 --- a/libhb/ssautil.h +++ /dev/null @@ -1,34 +0,0 @@ -/* ssautil.h - * - * Copyright (c) 2003-2019 HandBrake Team - * This file is part of the HandBrake source code - * Homepage: <http://handbrake.fr/>. - * It may be used under the terms of the GNU General Public License v2. - * For full terms see the file COPYING file or visit http://www.gnu.org/licenses/gpl-2.0.html - */ - -#ifndef __SSAUTIL_H__ -#define __SSAUTIL_H__ - -typedef struct hb_subtitle_style_s hb_subtitle_style_t; -typedef struct hb_subtitle_style_context_s hb_subtitle_style_context_t; - -typedef struct hb_tx3g_output_buf_s hb_tx3g_output_buf_t; -typedef struct hb_tx3g_style_context_s hb_tx3g_style_context_t; - -#define HB_STYLE_FLAG_ITALIC 0x0001 -#define HB_STYLE_FLAG_BOLD 0x0002 -#define HB_STYLE_FLAG_UNDERLINE 0x0004 - -hb_subtitle_style_context_t * hb_subtitle_style_init(const char * ssa_header); -hb_tx3g_style_context_t * hb_tx3g_style_init( - int height, const char * ssa_header); -void hb_subtitle_style_close(hb_subtitle_style_context_t ** ctx); -void hb_tx3g_style_close(hb_tx3g_style_context_t ** ctx); - -void hb_muxmp4_process_subtitle_style( - hb_tx3g_style_context_t * ctx, - uint8_t * input, uint8_t ** output, - uint8_t ** style, uint16_t * stylesize); - -#endif // __SSAUTIL_H__ |